/* Reset & Theme */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #5489FF;
  --bg-main: #000c24;
  --bg-card: #0a1a38;
  --bg-card-hover: #0E294F;
  --text-primary: #FFFFFF;
  --text-secondary: #8EA2C2;
  --border-color: rgba(84, 137, 255, 0.2);
  --font-main: 'Barlow', sans-serif;
}

html {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

body {
  font-family: var(--font-main);
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  padding-top: 80px;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-blue {
  color: var(--primary);
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── HEADER ── */
.header {
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 12, 36, 0.15);
  backdrop-filter: blur(8px);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
}

.header.menu-active {
  backdrop-filter: none !important;
  background: transparent !important;
  border-bottom: none !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

@media (min-width: 826px) {
  .header-container>.nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-svg {
  height: 28px;
  width: auto;
  pointer-events: auto;
}

.desktop-only {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.close-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile-head {
  display: none;
}

.nav-mobile-actions {
  display: none;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  justify-content: center;
}

.nav-list a {
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.active,
.nav-list a.text-blue {
  color: #527EFF;
}

.btn {
  padding: 9px 24px 11px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #3a6de8;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: #527EFF;
  border-color: #527EFF;
}

/* ── HERO ── */
.hero {
  padding: 150px 0 180px;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background: url('assets/back.jpg') no-repeat center top / 100% 900px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 70%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 70%);
}

body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 900px;
  background: url('assets/back.jpg') no-repeat center bottom / 100% 900px;
  opacity: 0.075;
  pointer-events: none;
  z-index: 0;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 70%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 70%);
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1.2;
}

.hero-title {
  color: #FFF;
  font-family: 'Barlow', sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: bold;
  line-height: 130%;
  margin-bottom: 20px;
}

@media (min-width: 1440px) {
  .title-break {
    display: none;
  }

  .hero-title {
    white-space: nowrap;
  }
}

.hero-info-grid {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.info-label {
  color: #FFF;
  font-family: 'Barlow', sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.hero-description {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  max-width: 550px;
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero-visual {
  position: absolute;
  right: clamp(-80px, calc(50vw - 530px), 110px);
  top: -170px;
  bottom: 0;
  width: 50%;
  z-index: 0;
}

.brad-full-portrait {
  width: clamp(638px, calc(440px + 19.8vw), 820px);
  max-width: none;
  transform: translateY(20px);
  transform-origin: bottom center;
  filter: drop-shadow(0 0 40px rgba(47, 105, 255, 0.2));
  z-index: 2;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ripple-icon {
  position: absolute;
}

.icon-1 {
  top: 0;
  left: 10%;
  width: 40px;
  opacity: 0.5;
}

.icon-2 {
  top: 40%;
  right: 0;
  width: 60px;
}

.icon-3 {
  bottom: 20%;
  left: -5%;
  width: 80px;
}

/* Partner */
.partner-section {
  text-align: center;
  background: rgba(10, 26, 56, 0.50);
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 214px;
  overflow: hidden;
  height: 160px;
}

.partner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  gap: 22px;
  padding-top: 34px;
}

.partner-text {
  color: #ADB9D2;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.partner-img {
  width: 200px;
  height: 38px;
}

/* ── SECTIONS ── */
section {
  padding: 50px 0;
}

/* ── RULES ── */
.rules-layout {
  display: flex;
  gap: 30px;
}

.rules-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rule-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--bg-card);
  height: 100%;
}

.rules-column.left .rule-card {
  height: auto;
}

.rules-column.left .rule-card:last-child {
  flex: 1;
}

.rule-card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 13px;
  color: #fff;
}

.rule-card-text {
  font-size: 18px;
  color: #fff;
  line-height: normal;
  font-weight: 500;
}

.bonus-list {
  list-style: none;
  margin-top: -16px;
}

.bonus-list li {
  font-size: 18px;
  color: #fff;
  padding: 13px 0;
  font-weight: 500;
}

.bonus-list li:last-child {
  border-bottom: none;
}

/* ── INSTRUCTION ── */
.instruction-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 13px;
}

.instruction-card {
  flex: 1;
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.step-icon-box {
  background: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.step-icon-box svg {
  width: 46px;
  height: 46px;
}

.step-name {
  color: #FFF;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 4px;
}

.step-info {
  color: #ADB9D2;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.step-arrow {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;

}

/* ── PARTICIPATE GRID (generated by script.js) ── */
.participate-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.participate-card {
  display: flex;
  gap: 15px;
  align-items: stretch;
  transition: border-color 0.3s;
}

.participate-card:hover {
  border-color: rgba(84, 137, 255, 0.5);
}

.qr-wrapper {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  background: white;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code {
  width: 100%;
  height: 100%;
}

.qr-code img {
  width: 100%;
  height: 100%;
  display: block;
}

.participate-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.participate-title {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
}

.text-accent {
  color: #527EFF;
}

.participate-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.field-label {
  color: var(--text-secondary);
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.field-value {
  font-family: monospace;
  font-size: 18px;
  color: #fff;
  word-break: break-all;
}

.participate-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-participate {
  padding: 10px 24px 14px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  border: none;
  color: white;
  background: #527EFF;
  font-family: 'Barlow', sans-serif;
  transition: background 0.2s;
}

.btn-participate:hover {
  background: #3a6de8;
}

.copy-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
  pointer-events: none;
}

.copy-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── TRANSACTIONS ── */
.tx-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.dot-live {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: glow-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 6px var(--primary);
  }

  50% {
    box-shadow: 0 0 18px var(--primary), 0 0 30px rgba(84, 137, 255, 0.4);
  }
}

.transactions-table-wrapper-v2 {
  margin-top: 40px;
  overflow-x: auto;
}

.transactions-table-v2 {
  width: 100%;
  min-width: 970px;
  border-spacing: 0 10px;
  border-collapse: separate;
  table-layout: fixed;
}

.transactions-table-v2 col.col-status {
  width: 150px;
}

.transactions-table-v2 col.col-date {
  width: 120px;
}

.transactions-table-v2 col.col-value {
  width: 170px;
}

.transactions-table-v2 th {
  background: transparent;
  padding-bottom: 4px;
  font-weight: 600;
  text-align: left;
  padding-left: 20px;
  white-space: nowrap;
  color: var(--text-secondary);
  font-size: 22px;
}

.transactions-table-v2 th:last-child {
  text-align: right;
  padding-right: 20px;
}

.tx-row {
  background: var(--bg-card);
}

.tx-row td {
  padding: 20px;
  border: none;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: #fff;
}

.tx-row td:first-child {
  border-radius: 10px 0 0 10px;
}

.tx-row td:last-child {
  border-radius: 0 10px 10px 0;
  text-align: right;
}

.tx-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.date-cell {
  white-space: nowrap;
}

.addr-cell {
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
}

.val-cell {
  font-weight: 500 !important;
  white-space: nowrap;
}

.val-cell .xrp-highlight {
  color: var(--primary);
}

/* ── FOOTER ── */
.footer.v2 {
  padding: 40px 0;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.footer-container>.footer-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-nav-list a {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav-list a:hover,
.footer-nav-list a.active {
  color: var(--primary);
}

/* ── TX CARDS (hidden on desktop, shown on tablet/phone) ── */
.tx-cards-container {
  display: none;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.tx-cards-header {
  display: grid;
  grid-template-columns: 150px 60px 150px 50px 150px 80px 130px 60px;
  align-items: center;
  gap: 20px;
  padding: 0 20px 10px;
  min-width: 1005px;
}

.tx-cards-header span {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}

.tx-card {
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  min-width: 1005px;
}

.tx-card-inner {
  display: grid;
  grid-template-columns: 150px 60px 150px 50px 150px 80px 130px 60px;
  grid-template-rows: auto 1px auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 1050px;
}

.tx-card-inner>span {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tx-card-line {
  background: rgba(255, 255, 255, 0.06);
  height: 1px;
  width: 100%;
}

.tx-card-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
}

.tx-card-dir {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
}

.tx-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 5px 0;
}


/* FIXED COLUMN WIDTHS */
.col-hash {
  width: 150px;
}

.col-block {
  width: 60px;
}

.col-from {
  width: 150px;
}

.col-to {
  width: 150px;
}

.col-age {
  width: 80px;
}

.col-val {
  width: 130px;
}

.col-fee {
  width: 60px;
}

/* ── RESPONSIVE ── */

@media (max-width: 1100px) {
  .hero-content {
    position: relative;
    z-index: 5;
  }

  .hero-description {
    max-width: 457px;
  }

  .hero-visual {
    right: 15vw;
  }
}

@media (max-width: 1000px) {

  /* Navigation */
  .nav-list a {
    font-size: 16px;
  }

  /* Buttons */
  .btn {
    font-size: 16px;
  }

  /* Rules */
  .rule-card-title {
    font-size: 20px;
  }

  .rule-card-text {
    font-size: 16px;
  }

  .bonus-list li {
    font-size: 16px;
  }

  /* Instruction */
  .instruction-card {
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 16px;
    padding: 16px;
  }

  .step-name {
    font-size: 20px;
  }

  .step-info {
    font-size: 16px;
  }

  .step-icon-box {
    width: 60px;
    height: 60px;
  }

  .step-icon-box svg {
    width: 33px;
    height: 33px;
  }

  /* Footer */
  .footer-nav-list a {
    font-size: 16px;
  }
}



@media (max-width: 825px) {

  /* Kill backdrop-filter on header so position:fixed nav works */
  .hero {
    padding: 0 40px 40px 40px;
  }

  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 12, 36, 0.95);
  }

  .desktop-only {
    display: none;
  }

  .header-container {
    position: relative;
    justify-content: center;
  }

  .header-actions {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-main);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 625px;
    /* mobile bg height */
    background: url('assets/back.jpg') no-repeat center top / 100% 625px;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 70%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 70%);
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-mobile-head {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 20px;
    margin-bottom: 60px;
    background: rgba(0, 12, 36, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
  }

  .close-menu {
    display: flex;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-list a {
    font-size: 20px;
    color: white;
  }

  .nav-mobile-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
    margin-bottom: 70px;
    padding: 0 20px;
  }

  .nav-mobile-actions .btn {
    padding: 12px 24px;
    text-align: center;
  }

  .hero-container {
    flex-direction: column-reverse;
    gap: 0;

  }

  .instruction-row {
    flex-direction: column;
  }

  .instruction-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    gap: 22px;
    padding: 22px;
    flex-direction: row;
  }

  .step-icon-box {
    width: 70px;
    height: 70px;
  }

  .step-icon-box svg {
    width: 40px;
    height: 40px;
  }

  .hero-visual {
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    display: block;
    text-align: center;
    z-index: 0;
    pointer-events: none;
  }

  .brad-full-portrait {
    width: 464px;
    max-width: none;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-top: 220px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-description {
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-info-grid {
    justify-content: center;
  }

  .coindesk-img {
    transform: scale(1.1);
  }

  section {
    padding: 30px 0;
  }

  .rules-layout {
    flex-direction: column;
    gap: 15px;
  }

  .rules-column {
    gap: 15px;
  }

  .step-arrow {
    display: none;
  }

  .participate-card {
    flex-direction: column;
    align-items: center;
  }

  .participate-right {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 5px;
    min-height: auto;
    justify-content: flex-start;
  }

  .participate-field {
    align-items: center;
  }

  .participate-buttons {
    justify-content: center;
    margin-top: 5px;
  }

  .footer-container {
    justify-content: center;
    text-align: center;
  }

  .footer-nav,
  .footer-actions {
    display: none;
  }

  /* ── BG IMAGE TABLET ── */
  body::before {
    height: 625px;
    background-size: 100% 625px;
  }


}

@media (max-width: 480px) {

  .hero-visual {
    left: 51%;
  }

  /* ── HEADER 360px ── */
  .header {
    height: 70px;
  }

  .menu-toggle {
    padding: 0;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
  }

  .nav-mobile-head {
    height: 70px;
  }

  /* ── HERO 360px ── */
  .hero {
    padding: 0 20px 30px 20px;
  }

  .hero-container {
    gap: 0;
  }

  .hero-title {
    font-size: 34px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .hero-info-grid {
    gap: 20px;
    margin-bottom: 20px;
  }

  .info-label {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .hero-btns {
    gap: 12px;
  }

  .hero-btns .btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
  }

  /* ── PARTNER 360px ── */
  .partner-section {
    margin-top: 160px;
    height: 140px;
  }

  .partner-content {
    padding-top: 28px;
    gap: 18px;
  }

  .partner-text {
    font-size: 16px;
  }

  .partner-img {
    width: 160px;
    height: 30px;
  }

  /* ── SECTIONS 360px ── */


  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  /* ── RULES 360px ── */
  .rules-column {
    gap: 15px;
  }

  .rule-card {
    padding: 20px;
    border-radius: 10px;
  }

  .rule-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .rule-card-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .bonus-list li {
    font-size: 16px;
    padding: 10px 0;
    line-height: 1.5;
  }


  /* ── PARTICIPATION 360px ── */
  .participate-card {
    border-radius: 10px;
    gap: 20px;
  }

  .qr-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 10px;
    padding: 10px;
  }

  .participate-info p {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
  }

  .participate-info strong {
    font-weight: 600;
  }

  .address-text {
    font-size: 14px;
    word-break: break-all;
  }

  .memo-text {
    font-size: 18px;
    text-align: center;
  }

  .participate-buttons {
    gap: 10px;
  }

  .btn-crypto,
  .btn-secondary {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
  }

  .waiting-status {
    justify-content: center;
    font-size: 14px;
  }

  /* ── BG IMAGE PHONE ── */
  body::before {
    height: 500px;
    background-size: 100% 500px;
  }

  /* ── TRANSACTIONS 360px ── */
  .transactions {
    padding: 30px 0;
  }

  .tx-title {
    font-size: 24px;
    gap: 10px;
  }

  .dot-live {
    width: 25px;
    height: 25px;
  }

  /* ── FOOTER 360px ── */
  .footer.v2 {
    padding: 30px 0;
    margin-top: 40px;
  }

  .footer-nav {
    display: none;
  }

  .footer-actions {
    display: none;
  }

  .footer-logo {
    justify-content: center;
    width: 100%;
  }
}