/* ==========================================================================
   SHYAMPLAY — RESPONSIVE & MOBILE FIRST
   Breakpoints: 1920 / 1600 / 1440 / 1366 / 1024 / 768 / 576 / 425 / 375 / 320
   ========================================================================== */

/* ---------- 1920px and above : large desktop ---------- */
@media (min-width: 1920px) {
  :root {
    --container-w: 1380px;
  }

  .hero-inner {
    gap: var(--space-8);
  }

  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .hero-title {
    font-size: clamp(4.2rem, 5.5vw, 6rem);
  }
}

/* ---------- 1600px and below : tighten container ---------- */
@media (max-width: 1600px) {
  :root {
    --container-w: 1200px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .games-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---------- 1440px and below ---------- */
@media (max-width: 1440px) {
  :root {
    --container-w: 1120px;
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
  }

  .hero-title {
    font-size: clamp(3.4rem, 4.8vw, 4.8rem);
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- 1366px and below ---------- */
@media (max-width: 1366px) {
  :root {
    --container-w: 1100px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 4.2vw, 4.6rem);
  }

  .hero-visual-card {
    width: 100%;
  }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- 1024px : tablet landscape — collapse nav, stack hero ---------- */
@media (max-width: 1024px) {
  :root {
    --container-w: 90%;
    --space-8: 5rem;
  }

  .main-nav {
    display: none;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    width: 140px;
    height: auto;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.98), rgba(10, 14, 21, 0.99));
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 255, 136, 0.15);
    padding: 10rem var(--space-5) var(--space-5);
    transform: translateX(100%);
    transition: transform var(--dur-med) var(--ease-out);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
  }

  .mobile-nav.open {
    transform: translateX(0);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }

  .mobile-nav .nav-link {
    font-size: 1.8rem;
    color: var(--color-white);
  }

  .mobile-nav .nav-link:hover {
    color: var(--color-green);
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding-top: var(--space-5);
  }

  .hero {
    min-height: auto;
    padding-top: 10rem;
    padding-bottom: var(--space-6);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }

  .hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
  }

  .hero-desc {
    margin-inline: auto;
    font-size: 1.5rem;
  }

  .hero-cta-group,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: var(--space-5);
    min-height: 380px;
  }

  .hero-visual-card {
    width: 100%;
    padding: var(--space-4);
  }

  .hero-badge-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .trust-card {
    padding: var(--space-4);
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }

  .game-body {
    padding: var(--space-2) var(--space-2) var(--space-3);
  }

  .game-body h3 {
    font-size: 1.4rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    min-height: 220px;
    padding: var(--space-5);
  }

  .promo-body h3 {
    font-size: 2rem;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-question {
    font-size: 1.6rem;
    padding: var(--space-3) var(--space-4);
  }

  .cta-inner h2 {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
  }
}

/* ---------- 768px : tablet portrait ---------- */
@media (max-width: 768px) {
  :root {
    --container-w: 100%;
    --space-8: 4.8rem;
    --space-7: 3.4rem;
    --space-6: 2.8rem;
  }

  .site-header {
    padding-block: var(--space-3);
  }

  .site-header.scrolled {
    padding-block: var(--space-2);
  }

  .container {
    padding-inline: var(--space-4);
  }

  .logo {
    width: 130px;
    height: auto;
  }

  .hero {
    min-height: 95vh;
    padding-top: 10rem;
    padding-bottom: var(--space-6);
  }

  .hero-title {
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  }

  .hero-badge-item {
    padding: var(--space-3);
  }

  .hero-visual-card {
    width: 100%;
    padding: var(--space-4);
  }

  .hero-visual-body {
    gap: var(--space-4);
  }

  .hero-visual-figure {
    min-height: 280px;
  }

  .section-title {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  }

  .section-sub {
    font-size: 1.4rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    min-height: 240px;
    padding: var(--space-5);
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  .game-card {
    border-radius: var(--radius-md);
  }

  .game-media {
    height: 130px;
  }

  .game-icon {
    font-size: 3rem;
  }

  .game-body h3 {
    font-size: 1.35rem;
  }

  .game-tag {
    font-size: 0.95rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: var(--space-4);
  }

  .rewards-strip {
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
  }

  .reward-item {
    gap: var(--space-2);
    font-size: 1.2rem;
  }

  .reward-item i {
    font-size: 2.4rem;
  }

  .faq-question {
    font-size: 1.5rem;
    padding: var(--space-3) var(--space-4);
  }

  .faq-answer {
    padding: 0 var(--space-4);
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-4) var(--space-4);
  }

  .cta-inner h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  }

  .cta-inner p {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-col h4 {
    font-size: 1.4rem;
  }

  .footer-col a {
    font-size: 1.3rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer p {
    font-size: 1.2rem;
  }

  .newsletter-form {
    border-radius: var(--radius-pill);
  }

  .newsletter-form input {
    font-size: 1.2rem;
  }
}

/* ---------- 576px : large mobile ---------- */
@media (max-width: 576px) {
  html {
    font-size: 56%;
  }

  :root {
    --space-7: 2.8rem;
    --space-6: 2.2rem;
    --space-5: 1.8rem;
  }

  .site-header {
    padding-block: var(--space-2);
  }

  .header-inner {
    gap: var(--space-2);
  }

  .logo {
    width: 120px;
  }

  .container {
    padding-inline: var(--space-3);
  }

  .hero {
    min-height: auto;
    padding-top: 9rem;
    padding-bottom: var(--space-5);
  }

  .hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    margin-bottom: var(--space-3);
  }

  .hero-desc {
    font-size: 1.4rem;
    margin-bottom: var(--space-4);
  }

  .hero-eyebrow {
    font-size: 1.2rem;
    margin-bottom: var(--space-2);
  }

  .hero-badge-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
    max-width: 100%;
  }

  .hero-badge-item {
    padding: var(--space-2);
    gap: var(--space-2);
  }

  .hero-badge-item i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .hero-badge-item strong {
    font-size: 1.3rem;
  }

  .hero-badge-item span {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .hero-visual {
    min-height: 320px;
    margin-bottom: var(--space-4);
  }

  .hero-visual-card {
    padding: var(--space-3);
    gap: var(--space-3);
  }

  .hero-visual-label {
    font-size: 1.2rem;
  }

  .hero-visual-value strong {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
  }

  .hero-visual-figure {
    min-height: 220px;
  }

  .section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: var(--space-2);
  }

  .section-sub {
    font-size: 1.3rem;
    margin-bottom: var(--space-4);
  }

  .eyebrow {
    font-size: 1.2rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .trust-card {
    padding: var(--space-3);
  }

  .trust-icon {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
  }

  .trust-card p {
    font-size: 1.3rem;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }

  .game-card {
    border-radius: var(--radius-md);
  }

  .game-media {
    height: 110px;
  }

  .game-icon {
    font-size: 2.6rem;
  }

  .game-body {
    padding: var(--space-2) var(--space-2) var(--space-2);
  }

  .game-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.1rem;
  }

  .game-tag {
    font-size: 0.9rem;
    padding: 0.2rem 0.7rem;
    margin-bottom: var(--space-1);
  }

  .game-sub {
    font-size: 1.15rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    min-height: 200px;
    padding: var(--space-4);
  }

  .promo-eyebrow {
    font-size: 1.1rem;
  }

  .promo-body h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-2);
  }

  .promo-body p {
    font-size: 1.3rem;
  }

  .ticker-wrap {
    padding-block: var(--space-2);
  }

  .win-card {
    padding: var(--space-2) var(--space-3);
  }

  .win-avatar {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .win-name {
    font-size: 1.25rem;
  }

  .win-amount {
    font-size: 1.2rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: var(--space-3);
  }

  .testimonial-stars {
    font-size: 1.2rem;
  }

  .testimonial-quote {
    font-size: 1.4rem;
    margin-bottom: var(--space-3);
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .testimonial-author strong {
    font-size: 1.35rem;
  }

  .testimonial-author span {
    font-size: 1.1rem;
  }

  .faq-list {
    max-width: 100%;
    gap: var(--space-2);
  }

  .faq-item {
    border-radius: var(--radius-md);
  }

  .faq-question {
    font-size: 1.4rem;
    padding: var(--space-2) var(--space-3);
  }

  .faq-question i {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }

  .faq-answer {
    padding: 0 var(--space-3);
  }

  .faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 var(--space-3) var(--space-3);
  }

  .faq-answer p {
    font-size: 1.35rem;
  }

  .rewards-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
  }

  .reward-item {
    gap: var(--space-1);
    font-size: 1.1rem;
  }

  .reward-item i {
    font-size: 2.2rem;
  }

  .cta-section {
    padding-block: var(--space-6);
  }

  .cta-inner h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: var(--space-2);
  }

  .cta-inner p {
    font-size: 1.4rem;
    margin-bottom: var(--space-4);
  }

  .cta-fineprint {
    font-size: 1.15rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .footer-tagline {
    font-size: 1.3rem;
  }

  .social-icons {
    gap: var(--space-1);
  }

  .social-icons a {
    width: 32px;
    height: 32px;
  }

  .footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: var(--space-2);
  }

  .footer-col a {
    font-size: 1.25rem;
  }

  .footer-col ul {
    gap: var(--space-1);
  }

  .footer-newsletter p {
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
  }

  .newsletter-form {
    padding-left: var(--space-2);
  }

  .newsletter-form input {
    font-size: 1.15rem;
  }

  .footer-disclaimer {
    padding-block: var(--space-3);
  }

  .footer-disclaimer p {
    font-size: 1.15rem;
  }

  .footer-bottom {
    padding-block: var(--space-3);
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- 425px : mobile ---------- */
@media (max-width: 425px) {
  html {
    font-size: 54%;
  }

  .site-header {
    padding-block: var(--space-2);
  }

  .logo {
    width: 110px;
  }

  .hero {
    padding-top: 8.5rem;
    padding-bottom: var(--space-4);
  }

  .hero-title {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    line-height: 1;
  }

  .hero-desc {
    font-size: 1.35rem;
    margin-bottom: var(--space-3);
  }

  .hero-badge-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
  }

  .hero-badge-item {
    padding: var(--space-2);
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-visual-card {
    padding: var(--space-2);
  }

  .hero-visual-top {
    gap: var(--space-2);
  }

  .hero-visual-label {
    font-size: 1.1rem;
  }

  .hero-visual-value strong {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .hero-visual-figure {
    min-height: 180px;
    border-radius: var(--radius-md);
  }

  .hero-visual-meta {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: var(--space-2);
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.4rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }

  .section-sub {
    font-size: 1.25rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .trust-card {
    padding: var(--space-2);
  }

  .trust-icon {
    width: 40px;
    height: 40px;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-1);
  }

  .game-card {
    border-radius: var(--radius-sm);
  }

  .game-media {
    height: 100px;
  }

  .game-icon {
    font-size: 2.4rem;
  }

  .game-body {
    padding: var(--space-1) var(--space-1) var(--space-2);
  }

  .game-body h3 {
    font-size: 1.2rem;
  }

  .game-sub {
    font-size: 1.1rem;
  }

  .game-tag {
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    min-height: 180px;
    padding: var(--space-3);
  }

  .promo-body h3 {
    font-size: 1.6rem;
  }

  .promo-body p {
    font-size: 1.25rem;
  }

  .win-card {
    padding: var(--space-2) var(--space-2);
    gap: var(--space-2);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: var(--space-2);
  }

  .testimonial-quote {
    font-size: 1.3rem;
  }

  .faq-question {
    font-size: 1.3rem;
    padding: var(--space-2) var(--space-2);
  }

  .faq-answer {
    padding: 0 var(--space-2);
  }

  .faq-item.active .faq-answer {
    max-height: 220px;
    padding: 0 var(--space-2) var(--space-2);
  }

  .faq-answer p {
    font-size: 1.3rem;
    padding-top: var(--space-2);
  }

  .cta-inner h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  }

  .cta-inner p {
    font-size: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .footer-tagline {
    font-size: 1.25rem;
  }

  .footer-col h4 {
    font-size: 1.2rem;
  }

  .footer-col a {
    font-size: 1.2rem;
  }

  .newsletter-form input {
    font-size: 1.1rem;
  }

  .footer-disclaimer p {
    font-size: 1.1rem;
  }
}

/* ---------- 375px : small mobile ---------- */
@media (max-width: 375px) {
  html {
    font-size: 52%;
  }

  .container {
    padding-inline: var(--space-2);
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  }

  .hero-badge-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .hero-badge-item {
    padding: var(--space-2);
    gap: var(--space-2);
  }

  .hero-badge-item strong {
    font-size: 1.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
    font-size: 1.3rem;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-1);
  }

  .game-media {
    height: 95px;
  }

  .game-body h3 {
    font-size: 1.15rem;
  }

  .promo-banner {
    min-height: 160px;
    padding: var(--space-3);
  }

  .promo-body h3 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  }

  .cta-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
  }

  .footer-col h4 {
    font-size: 1.15rem;
  }

  .footer-col a {
    font-size: 1.15rem;
  }
}

/* ---------- 320px : smallest supported (iPhone SE, etc.) ---------- */
@media (max-width: 320px) {
  html {
    font-size: 50%;
  }

  :root {
    --space-5: 1.4rem;
    --space-4: 1.2rem;
    --space-3: 0.9rem;
  }

  .container {
    padding-inline: var(--space-2);
  }

  .site-header {
    padding-block: var(--space-2);
  }

  .logo {
    width: 100px;
  }

  .header-inner {
    gap: var(--space-2);
  }

  .hamburger {
    width: 24px;
  }

  .hamburger span {
    height: 1.5px;
  }

  .mobile-nav {
    width: 75vw;
    padding: 8rem var(--space-3) var(--space-3);
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
    padding-bottom: var(--space-3);
  }

  .hero-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    letter-spacing: -0.03em;
  }

  .hero-desc {
    font-size: 1.3rem;
    margin-bottom: var(--space-2);
  }

  .hero-eyebrow {
    font-size: 1rem;
    margin-bottom: var(--space-1);
  }

  .hero-badge-row {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .hero-badge-item {
    padding: var(--space-1);
    border-radius: var(--radius-sm);
  }

  .hero-badge-item i {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .hero-badge-item strong {
    font-size: 1.2rem;
  }

  .hero-badge-item span {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 260px;
    margin-bottom: var(--space-3);
  }

  .hero-visual-card {
    padding: var(--space-2);
    gap: var(--space-2);
  }

  .hero-visual-top {
    gap: var(--space-1);
  }

  .hero-visual-figure {
    min-height: 160px;
  }

  .hero-visual-meta {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .hero-cta-group {
    gap: var(--space-1);
  }

  .hero-cta-group .btn {
    padding: 1rem 1.6rem;
    font-size: 1.2rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
  }

  .section-sub {
    font-size: 1.2rem;
  }

  .eyebrow {
    font-size: 1rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .trust-card {
    padding: var(--space-2);
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .trust-card h3 {
    font-size: 1.4rem;
  }

  .trust-card p {
    font-size: 1.2rem;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-1);
  }

  .game-card {
    border-radius: var(--radius-sm);
  }

  .game-media {
    height: 90px;
  }

  .game-icon {
    font-size: 2.2rem;
  }

  .game-body {
    padding: var(--space-1);
  }

  .game-body h3 {
    font-size: 1.1rem;
  }

  .game-sub {
    font-size: 1rem;
  }

  .game-tag {
    font-size: 0.8rem;
    padding: 0.15rem 0.5rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .promo-banner {
    min-height: 140px;
    padding: var(--space-2);
  }

  .promo-float {
    font-size: 2rem;
  }

  .promo-body h3 {
    font-size: 1.4rem;
  }

  .promo-body p {
    font-size: 1.2rem;
  }

  .ticker-wrap {
    padding-block: var(--space-1);
  }

  .win-card {
    padding: var(--space-1) var(--space-2);
    gap: var(--space-1);
  }

  .win-avatar {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .win-name {
    font-size: 1.1rem;
  }

  .win-amount {
    font-size: 1.1rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: var(--space-2);
  }

  .testimonial-stars {
    font-size: 1rem;
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
  }

  .faq-list {
    gap: var(--space-1);
  }

  .faq-item {
    border-radius: var(--radius-sm);
  }

  .faq-question {
    font-size: 1.25rem;
    padding: var(--space-2);
  }

  .faq-question i {
    width: 24px;
    height: 24px;
  }

  .faq-answer {
    padding: 0 var(--space-2);
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 var(--space-2) var(--space-2);
  }

  .faq-answer p {
    font-size: 1.25rem;
    padding-top: var(--space-1);
  }

  .rewards-strip {
    gap: var(--space-2);
    padding: var(--space-2) var(--space-2);
  }

  .reward-item {
    gap: var(--space-1);
    font-size: 1rem;
  }

  .reward-item i {
    font-size: 2rem;
  }

  .cta-section {
    padding-block: var(--space-5);
  }

  .cta-inner h2 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
  }

  .cta-inner p {
    font-size: 1.2rem;
  }

  .cta-fineprint {
    font-size: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .footer-tagline {
    font-size: 1.2rem;
  }

  .social-icons {
    gap: var(--space-1);
  }

  .social-icons a {
    width: 28px;
    height: 28px;
  }

  .footer-col h4 {
    font-size: 1.1rem;
  }

  .footer-col a {
    font-size: 1.1rem;
  }

  .footer-col ul {
    gap: var(--space-1);
  }

  .footer-newsletter p {
    font-size: 1.15rem;
  }

  .newsletter-form input {
    font-size: 1.1rem;
  }

  .footer-disclaimer {
    padding-block: var(--space-2);
  }

  .footer-disclaimer p {
    font-size: 1.05rem;
  }

  .footer-bottom {
    padding-block: var(--space-2);
  }
}
