@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #0c0f14, #05070a 60%);
  color: #e9edf2;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: #00ff9c;
  text-decoration: none;
  transition: all .3s ease;
}
a:hover { color: #ffe066; }

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: .5px;
}

h1 { font-size: 2.6rem; text-shadow: 0 0 18px rgba(0,255,156,.45); }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.45rem; margin-bottom: 14px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0a0f16, #05070a);
  box-shadow: 0 8px 28px rgba(0,0,0,.85);
}

.logo img {
  height: 58px;
  transition: transform .3s ease;
}
.logo img:hover { transform: scale(1.05); }

.nav-menu {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-menu a,
.nav-btn-menu a,
.btn-primary,
.btn-secondary {
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary,
.nav-menu a {
  background: linear-gradient(135deg, #00ff9c, #ffe066);
  color: #052018;
  box-shadow: 0 0 18px rgba(0,255,156,.45);
  animation: pulseGlow 3.2s ease-in-out infinite;
}

.btn-primary:hover,
.nav-menu a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 0 34px rgba(0,255,156,.9);
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 18px rgba(0,255,156,.35); }
  50% { box-shadow: 0 0 32px rgba(0,255,156,.75); }
}

.btn-secondary {
  background: linear-gradient(135deg, #0a0f16, #05070a);
  color: #ffffff;
  border: 2px solid #ffe066;
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 0 26px rgba(255,224,102,.6);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0a0f16, #05070a);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .16;
  filter: saturate(1.05) contrast(1.1);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 24px;
  animation: heroFadeUp 1s ease forwards;
}

.hero-text p {
  margin: 18px 0 26px;
  font-size: 1.05rem;
  color: #d9fff1;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1180px;
  margin: auto;
  padding: 70px 20px;
}

section {
  margin-bottom: 70px;
  padding: 36px;
  border-radius: 22px;
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.media {
  display: flex;
  align-items: center;
  gap: 40px;
}
.media.reverse { flex-direction: row-reverse; }

.media img {
  width: 50%;
  border-radius: 22px;
  box-shadow: 0 0 36px rgba(0,255,156,.35);
  transition: transform .6s ease, box-shadow .6s ease;
}
.media img:hover {
  transform: scale(1.04);
  box-shadow: 0 0 52px rgba(0,255,156,.6);
}
.media div { width: 50%; }

.checklist {
  list-style: none;
  margin-top: 18px;
}
.checklist li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.btn-link {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 22px;
  border-radius: 999px;
  border: 2px solid #00ff9c;
  color: #00ff9c;
  font-weight: 600;
}
.btn-link:hover {
  background: #00ff9c;
  color: #04130d;
  transform: scale(1.05);
}

div[style*="font-size:1.8rem"] {
  animation: dataPulse 2.8s ease-in-out infinite;
}
@keyframes dataPulse {
  0%,100% { text-shadow: 0 0 10px rgba(0,255,156,.4); }
  50% { text-shadow: 0 0 22px rgba(0,255,156,.9); }
}

.popular-games {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.popular-game-card {
  background: rgba(0,0,0,0.45);
  padding: 20px;
  border-radius: 18px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-game-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 30px rgba(0,255,156,0.6);
}

.popular-game-thumb { font-size: 2.8rem; margin-bottom: 12px; }
.popular-game-card h4 { color: #f0c159; margin-bottom: 10px; }
.popular-game-card p { color: #abb8c3; font-size: 0.9em; margin-bottom: 10px; }

.popular-game-card .btn {
  padding: 8px 20px;
  font-size: 0.9em;
  border-radius: 999px;
  background: linear-gradient(135deg, #00ff9c, #ffe066);
  color: #052018;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s ease;
}

.popular-game-card .btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 0 28px rgba(0,255,156,0.75);
}

.footer {
  background: linear-gradient(135deg, #05070a, #0a0f16);
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 -8px 28px rgba(0,0,0,.85);
}
.footer p { font-size: .9rem; color: #caffea; }

@media (max-width: 900px) {
  .media { flex-direction: column; }
  .media img, .media div { width: 100%; }
  .popular-games { justify-content: center; }
}

@media (max-width: 768px) {
  .nav { flex-direction: column; gap: 14px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn-primary { animation: none; }
}

@media (max-width: 500px) {
  .popular-game-card { width: 100%; }
}

.section-title {
  text-align: center; 
  color: #00ff9c;          
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;          
  margin-bottom: 24px;     
  text-shadow: 0 0 12px rgba(0,255,156,0.6); 
}

.popular-game-card {
  position: relative;
  background: rgba(0,0,0,0.45);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.popular-game-card:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 0 36px rgba(0,255,156,0.6);
}
.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg,#ffe066,#00ff9c);
  color: #04130d;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 999px;
  font-weight: 700;
}
.bar-bg {
  background: rgba(255,255,255,0.1);
  height: 12px;
  border-radius: 8px;
  margin-top: 6px;
}
.bar-fill {
  height: 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, #00ff9c, #ffe066);
  transition: width 0.6s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: #abb8c3;
}
.faq-item.active .faq-answer {
  max-height: 150px;
}
.text-center {
  text-align: center !important;

.checklist.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

main.container, section, .hero-text, .media div, .platform-card, .faq-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}

ul.checklist, ol {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  padding-left: 0;
}

section img, .media img, .popular-game-card img {
  display: block;
  margin: 0 auto;
}

a.btn, a.btn-primary, a.btn-secondary, a.btn-link {
  display: inline-block;
  margin: 10px auto;
  text-align: center !important;
}

h1, h2, h3, h4, h5, h6, p, span, li, strong, em {
  text-align: center !important;
}

.popular-games {
  justify-content: center !important;
}
.popular-game-card {
  margin: 0 auto;
}

.faq-question, .faq-answer {
  text-align: center !important;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.innovation-timeline {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.innovation-timeline h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: #f0c159;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 0 0 12px rgba(240, 193, 89, 0.6);
}

.innovation-timeline p {
    text-align: center;
    color: #abb8c3;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.timeline-item {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    margin-bottom: 24px;
    padding: 20px 30px;
    box-shadow: 0 0 18px rgba(0,255,156,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 32px rgba(0,255,156,0.3);
}

.timeline-date {
    font-weight: 700;
    font-size: 1.1em;
    color: #00ff9c;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 0 6px rgba(0,255,156,0.5);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    color: #ffe066;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(255,224,102,0.5);
}

.timeline-description {
    color: #abb8c3;
    line-height: 1.6;
    font-size: 1em;
}

@media (max-width: 768px) {
    .innovation-timeline {
        padding: 0 10px;
    }
    .timeline-item {
        padding: 18px 20px;
    }
    .timeline-title {
        font-size: 1.2em;
    }
}



* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.innovation-timeline {
    background: linear-gradient(180deg, #b84bff, #9d2cff);
    padding: 80px 20px;
}

.innovation-timeline h2 {
    text-align: center;
    color: #f0c159;
    font-size: 2.6em;
    margin-bottom: 20px;
}

.subtitle {
    text-align: center;
    color: #cfd3da;
    margin-bottom: 60px;
    font-size: 1.1em;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 190px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(#5ad1ff, #2f80ff);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-date {
    width: 150px;
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.4);
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid #2f80ff;
    border-radius: 50%;
    margin: 0 25px;
    z-index: 1;
    box-shadow: 0 0 12px rgba(79, 172, 254, 0.9);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 28px 35px;
    color: #fff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    color: #f0c159;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.timeline-content p {
    color: #eaeaea;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }

    .timeline-date {
        margin-bottom: 10px;
    }

    .timeline-dot {
        position: absolute;
        left: 12px;
        top: 18px;
    }
}

.auto-scale {
    animation: autoScalePromo 1.5s ease-in-out infinite;
}

@keyframes autoScalePromo {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}


.main h1 {
  font-size: 2.6rem;
  text-align: center;
  margin: 40px 0 20px;
  color: #00e676;
  letter-spacing: 0.5px;
}

.main > p {
  max-width: 900px;
  margin: 0 auto 35px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #cfe9e3;
}

.pix-authority,
.pix-benefits,
.pix-steps,
.pix-trust,
.pix-faq,
.pix-cta {
  max-width: 1100px;
  margin: 55px auto;
  padding: 48px 42px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.pix-authority h2,
.pix-benefits h2,
.pix-steps h2,
.pix-trust h2,
.pix-faq h2,
.pix-cta h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  color: #00e676;
}

.pix-authority p,
.pix-trust p,
.pix-faq p,
.pix-cta p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #d9f4ee;
}

.btn-pix {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 46px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: #053b22;
  background: linear-gradient(135deg, #00e676, #00c853);
  box-shadow: 0 12px 30px rgba(0, 230, 118, 0.35);
  transition: all 0.25s ease;
}

.btn-pix:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 230, 118, 0.5);
}

.pix-benefits ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.pix-benefits li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #eafff6;
}

.pix-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #00e676;
}

.pix-steps ol {
  padding-left: 22px;
  margin-top: 20px;
}

.pix-steps li {
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: #e1faf4;
}

.pix-faq h3 {
  margin-top: 26px;
  font-size: 1.15rem;
  color: #ffffff;
}

.pix-cta {
  text-align: center;
  background: linear-gradient(135deg, #00e676, #00bfa5);
  border: none;
}

.pix-cta h2,
.pix-cta p {
  color: #053b22;
}


@media (max-width: 768px) {
  .main h1 {
    font-size: 2.1rem;
  }

  .pix-authority,
  .pix-benefits,
  .pix-steps,
  .pix-trust,
  .pix-faq,
  .pix-cta {
    padding: 32px 22px;
    margin: 40px 15px;
  }

  .btn-pix {
    width: 100%;
    text-align: center;
  }
}


.pix-benefits-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 70px auto;
  padding: 56px 48px;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(0,255,156,0.08), transparent 60%),
    linear-gradient(180deg, #0c0f14, #05070a);
  border: 1px solid rgba(0,255,156,0.25);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 0 60px rgba(0,255,156,0.12);
}

.pix-image {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pix-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 22px;
  box-shadow:
    0 0 40px rgba(0,255,156,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  filter: saturate(1.1) contrast(1.05);
  transition: transform .6s ease, box-shadow .6s ease;
}

.pix-image img:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 70px rgba(0,255,156,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

.pix-benefits-content {
  flex: 1;
  text-align: center;
}

.pix-benefits-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.1rem;
  margin-bottom: 26px;
  color: #00ff9c;
  text-shadow: 0 0 16px rgba(0,255,156,0.55);
}

.pix-benefits-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pix-benefits-content li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 34px;
  font-size: 1.12rem;
  color: #eafff6;
}

.pix-benefits-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #00ff9c;
  text-shadow: 0 0 8px rgba(0,255,156,0.8);
}


@media (max-width: 900px) {
  .pix-benefits-visual {
    flex-direction: column;
    padding: 40px 26px;
    indicate: relative;
  }

  .pix-image img {
    max-width: 220px;
  }

  .pix-benefits-content h2 {
    font-size: 1.8rem;
  }
}


.pix-benefits-visual {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
}

.pix-benefits-visual .pix-image {
  flex: 0 0 260px;
  display: flex;
  justify-content: center;
}

.pix-benefits-visual .pix-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 22px;
  box-shadow: 0 0 36px rgba(0,255,156,.45);
}

.pix-benefits-content {
  flex: 1;
  text-align: center;
}

.pix-benefits-content h2 {
  margin-bottom: 22px;
}

.pix-benefits-content ul {
  list-style: none;
  padding: 0;
}

.pix-benefits-content li {
  margin-bottom: 14px;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .pix-benefits-visual {
    flex-direction: column !important;
  }

  .pix-benefits-visual .pix-image {
    margin-bottom: 20px;
  }
}

.pix-benefits-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
}

.pix-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pix-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,255,156,0.45);
  transition: transform 0.4s ease;
}

.pix-image img:hover {
  transform: scale(1.05);
}

.pix-steps-center {
  flex: 1.2;
  text-align: center;
}

.pix-steps-center h2 {
  color: #00ff9c;
  margin-bottom: 24px;
  text-shadow: 0 0 12px rgba(0,255,156,0.6);
}

.pix-steps-center ol {
  list-style: none;
  padding: 0;
}

.pix-steps-center li {
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #e9edf2;
  position: relative;
  padding-left: 28px;
}

.pix-steps-center li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ff9c;
  font-weight: bold;
}

@media (max-width: 900px) {
  .pix-benefits-visual {
    flex-direction: column;
    text-align: center;
  }

  .pix-image img {
    max-width: 260px;
  }
}

.bonus-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.bonus-full-image {
  width: 100%;
  max-width: 1280px;
  height: auto;
  border-radius: 26px;
  box-shadow:
    0 0 60px rgba(255, 215, 0, 0.35),
    0 0 120px rgba(0, 255, 156, 0.25);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}


.bonus-full-image:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 90px rgba(255, 215, 0, 0.6),
    0 0 160px rgba(0, 255, 156, 0.4);
}


@media (max-width: 768px) {
  .bonus-visual {
    padding: 50px 12px;
  }

  .bonus-full-image {
    border-radius: 18px;
  }
}

.media {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 80px 0;
}

.media img {
  width: 50%;
  max-width: 520px;
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(0, 255, 160, 0.35);
}

.media > div {
  width: 50%;
}

.media.reverse {
  flex-direction: row-reverse;
}
@media (min-width: 769px) {
  .media img {
    transition: transform 0.4s ease;
  }

  .media img:hover {
    transform: scale(1.03);
  }
}
@media (max-width: 768px) {
  .media {
    gap: 30px;
    margin: 60px 0;
  }
}
.media {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 80px 0;
}

.media img {
  width: 50%;
  max-width: 520px;
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(0, 255, 160, 0.35);
}

.media > div {
  width: 50%;
}

.media.reverse {
  flex-direction: row-reverse;
}


@media (max-width: 768px) {

  .nav {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 10px;
    gap: 6px; 
  }


  .nav-menu {
    display: flex;
    flex-direction: row;        
    flex-wrap: wrap;           
    justify-content: flex-start;
    gap: 6px;                  

  .nav-menu a {
    flex: 0 0 auto;             
    padding: 6px 14px;          
    font-size: 0.8rem;          
    border-radius: 999px;
    white-space: nowrap;        
    margin: 0;                  
  }

}

.media {
  display: flex;
  align-items: center;
  gap: 40px; 
}


.media img {
  width: 48%;             
  max-width: 520px;       
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  transition: transform .3s ease;
}


.media img:hover {
  transform: scale(1.03);
}


.media > div {
  width: 52%;
}
@media (max-width: 768px) {

  .media {
    flex-direction: column;
    gap: 20px;
  }

  .media img {
    width: 100%;        
    max-width: 100%;
  }

  .media > div {
    width: 100%;
  }

}
.nav {
  background: linear-gradient(
    135deg,
    var(--br-green) 0%,
    var(--br-yellow) 45%,
    var(--br-blue) 100%
  ) !important;
  box-shadow: 0 6px 25px rgba(0,0,0,.45);
}
.nav-btn-menu .btn-secondary {
  background: linear-gradient(135deg, #00ff99, #00cc77) !important;
  color: #003322 !important;
}
.nav {
  box-shadow: inset 0 -3px 0 rgba(255,255,255,.35);
}



#available-bonuses {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#available-bonuses img {
  width: 100%;
  max-width: 520px;   
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 16px;
}





/* 🔥 终极兜底：无视父级，直接布局内容 */
.pix-image,
.pix-benefits-content {
    box-sizing: border-box !important;
}

/* 强制父容器 grid */
.pix-benefits-visual {
    display: grid !important;
    grid-template-columns: 1fr 2fr 1fr !important;
    align-items: center !important;
    gap: 24px !important;
}

/* 防止被旧样式压 */
.pix-benefits-visual * {
    float: none !important;
    position: static !important;
}

/* 图片强制正常 */
.pix-benefits-visual img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* 手机端强制纵向 */
@media (max-width: 768px) {
    .pix-benefits-visual {
        grid-template-columns: 1fr !important;
    }
}


