
    /* ========= Root / Reset ========= */
    :root {
      --primary: #e63946;       /* vibrant red */
      --primary-light: #f28482; /* soft coral */
      --primary-extra-light: #f8edeb;
      --secondary: #ff9e00;     /* saffron orange */
      --secondary-light: #ffd166; /* light saffron */
      --dark: #14213d;          /* deep blue */
      --dark-80: #1d3557;
      --dark-60: #457b9d;
      --dark-40: #a8dadc;
      --muted: #a5acba;
      --light: #f1faee;
      --white: #ffffff;
      --black: #000000;
      --success: #2a9d8f;
      --warning: #e9c46a;
      --danger: #e63946;
      --info: #457b9d;
      --accent: #7209b7;        /* royal purple */
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
      --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
      --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
      --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-full: 999px;
      --transition: all 0.3s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      color: var(--dark);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 0.5em;
    }

    p {
      margin-bottom: 1em;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ul, ol {
      list-style: none;
    }

    /* ====== Utilities ====== */
    .container {
      width: min(1200px, 92vw);
      margin-inline: auto;
    }

    .section-pad {
      padding: 80px 0;
    }

    .dark-bg {
      background-color: var(--dark);
      color: var(--white);
    }

    .accent-bg {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--white);
    }

    .section-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--secondary);
      margin-bottom: 10px;
    }

    .section-head {
      margin-bottom: 40px;
      text-align: center;
    }

    .section-head h2 {
       font-size: clamp(2.5rem, 4vw, 3rem);
      margin-bottom: 15px;
    }

    .section-head p {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto;
    }

    .highlight {
      color: var(--secondary);
      position: relative;
      display: inline;
    }



    .lead {
      font-size: 1.2rem;
      color: var(--dark-60);
    }

    /* ====== Buttons ====== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: var(--radius-full);
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      gap: 8px;
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: var(--white);
      box-shadow: var(--shadow-md);
    }

    .btn.primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn.ghost {
      background-color: transparent;
      border-color: var(--dark-60);
      color: var(--dark-60);
    }

    .btn.ghost:hover {
      border-color: var(--dark);
      color: var(--dark);
      background-color: rgba(255, 255, 255, 0.1);
    }

    .btn.outline {
      background-color: transparent;
      border-color: var(--secondary);
      color: var(--secondary);
    }

    .btn.outline:hover {
      background-color: var(--secondary);
      color: var(--white);
    }

    .btn.small {
      padding: 8px 16px;
      font-size: 0.9rem;
    }

    .btn.pulse {
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 158, 0, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(255, 158, 0, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 158, 0, 0);
      }
    }

    /* ====== Header/Nav ====== */
    .site-header {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background-color: var(--white);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .site-header.scrolled {
      box-shadow: var(--shadow-lg);
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(5px);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.125rem;
      font-weight: 800;
      font-size: 1.4rem;
    }

    .brand .brand-mark {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: 0.5px;
    }

    .brand .brand-sub {
      color: var(--dark-60);
      font-weight: 700;
    }

    .brand.invert .brand-mark {
      color: var(--white);
      background: transparent;
      -webkit-background-clip: initial;
      background-clip: initial;
    }

    .brand.invert .brand-sub {
      color: rgba(255, 255, 255, 0.8);
    }

    .main-nav ul {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .main-nav a {
      color: var(--dark-60);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }

    .main-nav a:hover {
      color: var(--dark);
    }

    .main-nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: var(--transition);
    }

    .main-nav a:hover::after {
      width: 100%;
    }

    .nav-cta {
      margin-left: 15px;
    }

    /* Mobile menu */
    .nav-toggle {
      display: none;
      width: 30px;
      height: 24px;
      position: relative;
      cursor: pointer;
      z-index: 1001;
      background: none;
      border: none;
    }

    .hamburger-line {
      position: absolute;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--dark);
      border-radius: 3px;
      transition: var(--transition);
    }

    .hamburger-line:nth-child(1) {
      top: 0;
    }

    .hamburger-line:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
    }

    .hamburger-line:nth-child(3) {
      bottom: 0;
    }

    .nav-toggle.active .hamburger-line:nth-child(1) {
      top: 50%;
      transform: translateY(-50%) rotate(45deg);
    }

    .nav-toggle.active .hamburger-line:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active .hamburger-line:nth-child(3) {
      bottom: 50%;
      transform: translateY(50%) rotate(-45deg);
    }

    @media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    padding: 100px 30px 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
  }

  .main-nav.active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

    /* ====== Hero ====== */
    .hero {
      position: relative;
      /* padding: 160px 0 80px; */
      overflow: hidden;
      background: linear-gradient(135deg, rgba(241, 250, 238, 0.9), rgba(248, 237, 235, 0.8));
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="none" stroke="%23ff9e00" stroke-width="0.5" opacity="0.1"/></svg>');
      background-size: 150px 150px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 70% 30%, rgba(255, 158, 0, 0.1), transparent 60%),
                  radial-gradient(circle at 30% 70%, rgba(230, 57, 70, 0.1), transparent 60%);
      z-index: -1;
    }

    .hero-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero-copy h1 {
      font-size: clamp(4rem, 4vw, 3.2rem);
      margin-bottom: 20px;
      line-height: 1;
      font-weight: 800;
    }

    .hero-copy p.lead {
      margin-bottom: 30px;
      font-size: 1.2rem;
      color: var(--dark-60);
    }
    .hero-art{
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .hero-cta {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
    }

    .trust-row {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 30px;
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 500;
      box-shadow: var(--shadow-sm);
    }

    .badge i {
      color: var(--secondary);
    }

    /* Slot Machine Animation */
    .slot-machine {
      position: relative;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      perspective: 1000px;
    }

    .slot-screen {
      position: relative;
      width: 100%;
      height: 200px;
      background: linear-gradient(145deg, #ffffff, #f0f0f0);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      padding: 15px;
      transform-style: preserve-3d;
      transform: rotateX(10deg);
    }

    .reel-container {
      display: flex;
      justify-content: space-between;
      height: 100%;
    }

    .reel {
      width: 30%;
      height: 100%;
      background-color: var(--white);
      border-radius: var(--radius-sm);
      overflow: hidden;
      position: relative;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .symbol {
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
    }

    .slot-buttons {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }

    .spin-btn {
      padding: 12px 30px;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: var(--white);
      border: none;
      border-radius: var(--radius-full);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
    }

    .spin-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .spin-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    .slot-base {
      position: absolute;
      bottom: -20px;
      left: 20px;
      right: 20px;
      height: 40px;
      background: linear-gradient(145deg, #d1d1d1, #e0e0e0);
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      z-index: -1;
    }

    .slot-shadow {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 20px;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 70%);
      filter: blur(5px);
      z-index: -2;
    }
    .hero-art img{
      border-radius: 20px;
    }

    @media (max-width: 992px) {
      .hero {
        padding: 80px 20px;
      }
      
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .hero-copy {
        text-align: center;
      }
      
      .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
      }
      
      .trust-row {
        justify-content: center;
      }
      .hero-copy h1 {
          font-size: 3rem!important;
      }
      .trust-badges {
          justify-content: center;
      }
    }

    /* ====== About ====== */
    .about-text h2{
      font-size: clamp(2.5rem, 4vw, 3rem);
      
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .feature {
      padding: 20px;
      background-color: var(--white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .feature:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary-extra-light);
      border-radius: var(--radius-full);
      margin-bottom: 15px;
      color: var(--secondary);
      font-size: 1.2rem;
    }

    .feature h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .feature p {
      font-size: 0.95rem;
      color: var(--dark-60);
      margin-bottom: 0;
    }

    .floating-elements {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .floating-elements img{
        height: 600px;
        border-radius: 20px;
        box-shadow: var(--shadow-xl);
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    .nordic-pattern {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 300px;
      height: 300px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="none" stroke="%23ff9e00" stroke-width="0.5" opacity="0.2"/></svg>');
      background-size: 50px 50px;
      opacity: 0.3;
      z-index: -1;
    }

    @media (max-width: 992px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .floating-elements {
        height:100%;
        order: -1;
      }
      .about-text{
        text-align: center;
      }
      .feature{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
      }
      .floating-elements img {
        height: auto;
      }

    }

    @media (max-width: 768px) {
      .features-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ====== Game Cards ====== */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 25px;
    }

    .game-card {
      background-color: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
    }

    .game-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .game-thumb {
      height:auto;
      position: relative;
      overflow: hidden;
    }

    .game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .game-card:hover .game-image {
      transform: scale(1.05);
    }

    .game-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      padding: 5px 10px;
      background-color: var(--secondary);
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      z-index: 2;
    }

    .game-badge.bestseller {
      background-color: var(--danger);
    }

    .game-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition);
      z-index: 1;
    }

    .game-card:hover .game-overlay {
      opacity: 1;
    }

    .play-btn {
      padding: 10px 20px;
      background-color: var(--white);
      color: var(--dark);
      border: none;
      border-radius: var(--radius-full);
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .play-btn:hover {
      background-color: var(--secondary);
      color: var(--white);
    }

    .play-btn i {
      font-size: 0.9rem;
    }

    .game-meta {
      padding: 20px;
    }

    .game-meta h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: var(--danger);
      display: flex;
      justify-content: center;
    }

    .game-meta p {
      font-size: 0.95rem;
      color: var(--dark-60);
      margin-bottom: 15px;
    }

    .meta-row {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .progress-container {
      width: 100%;
    }

    .progress-bar {
      height: 6px;
      background: linear-gradient(90deg, var(--secondary), var(--primary));
      border-radius: var(--radius-full);
      margin-bottom: 5px;
    }

    .progress-container span {
      font-size: 0.8rem;
      color: var(--dark-40);
    }

    .meta-info {
      display: flex;
      gap: 8px;
    }

    .pill {
      font-size: 0.8rem;
      padding: 5px 10px;
      background-color: var(--primary-extra-light);
      border-radius: var(--radius-full);
      color: var(--dark);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .pill i {
      font-size: 0.7rem;
    }

    .section-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* Gradient backgrounds */
    .gradient-lilac {
      background: linear-gradient(135deg, #ffd6ff, #bbadff);
    }

    .gradient-lime {
      background: linear-gradient(135deg, #fdffb6, #caffbf);
    }

    .gradient-mint {
      background: linear-gradient(135deg, #caffbf, #9bf6ff);
    }

    /* ====== Popular Games Slider ====== */
    .popular-slider {
      position: relative;
      margin: 0 auto;
      max-width: 1200px;
      overflow: hidden;
    }

    .slider-container {
      display: flex;
      width: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .slide {
      flex: 0 0 calc(33.333% - 14px);
      min-width: calc(33.333% - 14px);
      scroll-snap-align: start;
      margin-right: 20px;
    }


    @media (max-width: 1200px) {
      .slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
      }
    }

    @media (max-width: 768px) {
      .slide {
        flex: 0 0 100%;
        min-width: 100%;
      }
      
      .slider-nav {
        width: 30px;
        height: 30px;
      }
      
      .slider-nav.prev {
        left: 10px;
      }
      
      .slider-nav.next {
        right: 10px;
      }
    }

    .popular-game {
      background-color: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .popular-game:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .popular-thumb {
      height: 350px;
      position: relative;
      overflow: hidden;
    }

    .popular-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .popular-game:hover .popular-thumb img {
      transform: scale(1.05);
    }

    .popular-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      opacity: 0;
      transition: var(--transition);
    }

    .popular-game:hover .popular-overlay {
      opacity: 1;
    }

    .popular-meta {
      transform: translateY(20px);
      transition: var(--transition);
      display: flex;
      justify-content: center;
    }

    .popular-game:hover .popular-meta {
      transform: translateY(0);
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--warning);
      margin-bottom: 15px;
    }

    .rating span {
      color: var(--white);
      font-weight: 600;
      margin-left: 5px;
    }

    .popular-info {
      padding: 20px;
      background-color: var(--white);
    }

    .popular-info h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: var(--dark);
      display: flex;
      justify-content: center;
    }

    .popular-stats {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: var(--dark-60);
    }

    .popular-stats span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .popular-stats i {
      font-size: 0.8rem;
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background-color: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-md);
      z-index: 10;
      transition: var(--transition);
    }

    .slider-nav:hover {
      background-color: var(--secondary);
      color: var(--white);
    }

    .slider-nav.prev {
      left: -20px;
    }

    .slider-nav.next {
      right: -20px;
    }

    @media (max-width: 1200px) {
      .slide {
        flex: 0 0 calc(50% - 10px);
      }
    }

    @media (max-width: 768px) {
      .slide {
        flex: 0 0 100%;
      }
    }

    /* ====== Recently Played ====== */
    .recent-games {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 25px;
    }

    .recent-game {
      background-color: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .recent-game:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .recent-thumb {
      height: 150px;
      width: 150px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      border-radius: 50%;
    }

    .recent-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .recent-info{
      color: var(--dark);
    }

    .recent-info h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      text-align: center;
      margin-top: 10px;
    }
    .recent-info p {
      font-size: 0.8rem;
      margin-bottom: 10px;
      text-align: center;
    }

    .recent-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: var(--dark-60);
      margin-bottom: 15px;
    }

    .recent-meta span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .recent-meta i {
      font-size: 0.8rem;
    }

    .recent-info .btn {
      align-self: flex-start;
      margin-top: auto;
    }

    /* ====== CTA Section ====== */
    .cta-section {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2), transparent 60%),
                  radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2), transparent 60%);
      z-index: 0;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 15px;
    }

    .cta-content p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .cta-buttons .btn.primary {
      background: var(--white);
      color: var(--dark);
    }

    .cta-buttons .btn.outline {
      border-color: var(--white);
      color: var(--white);
    }

    .cta-buttons .btn.outline:hover {
      background-color: var(--white);
      color: var(--dark);
    }

    @media (max-width: 768px) {
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
    }

    /* ====== Footer ====== */
    .site-footer {
      background-color: var(--dark);
      color: var(--white);
      position: relative;
      padding: 5rem 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .footer-about {
      display: flex;
      flex-direction: column;
      grid-column: span 2; /* Make the first column span 2 */
    }

    .foot-col {
      grid-column: span 1; /* Other columns default span 1 */
    }

    .footer-description {
      color: var(--muted);
      margin: 15px 0 20px;
      font-size: 0.95rem;
    }
    .footer-description a{
      color: var(--secondary-light);
    }

    .foot-col h4 {
      font-size: 1.1rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .foot-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--secondary);
    }

    .foot-links li {
      margin-bottom: 12px;
    }

    .foot-links a {
      color: var(--muted);
      font-size: 0.95rem;
      transition: var(--transition);
      display: inline-block;
    }

    .foot-links a:hover {
      color: var(--secondary-light);
      transform: translateX(5px);
    }

    .footer-bottom {
      margin-top: 30px;
      padding: 20px 0;
      border-top: 1px solid var(--dark-80);
    }

    .footer-bottom .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copyright p {
      font-size: 0.9rem;
      color: var(--muted);
      margin: 0;
    }

    .payment-methods {
      display: flex;
      gap: 10px;
    }

    .payment-methods img {
      height: 35px;
      width: auto;
      opacity: 0.7;
      transition: var(--transition);
    }

    .payment-methods img:hover {
      opacity: 1;
    }

    @media (max-width: 992px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
      
      .payment-methods {
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ====== Back to Top Button ====== */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: var(--secondary);
      color: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
      box-shadow: var(--shadow-md);
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background-color: var(--primary);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    /* ====== Indian Pattern Overlay ====== */
    .indian-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="none" stroke="%23ff9e00" stroke-width="0.5" opacity="0.05"/></svg>');
      background-size: 80px 80px;
      z-index: -1;
    }

    /* ====== Indian Theme Elements ====== */
    .rangoli-pattern {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 30px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="30" viewBox="0 0 200 30"><path d="M0,15 Q25,0 50,15 T100,15 T150,15 T200,15" fill="none" stroke="%23ff9e00" stroke-width="2" opacity="0.3"/></svg>');
      background-repeat: repeat-x;
    }

    .diwali-lights {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 20px;
      background: repeating-linear-gradient(90deg, 
        var(--secondary) 0px, var(--secondary) 10px, 
        var(--primary) 10px, var(--primary) 20px,
        var(--accent) 20px, var(--accent) 30px);
      opacity: 0.7;
    }





/* game style */

    .game-section {
      /* background: linear-gradient(to bottom, #1a1a1a, #000000); */
       background: linear-gradient(135deg, rgba(241, 250, 238, 0.9), rgba(248, 237, 235, 0.8));
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="none" stroke="%23ff9e00" stroke-width="0.5" opacity="0.1"/></svg>');
      background-size: 150px 150px;
      padding: 4rem 0;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }

    .game-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .game-frame-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 50.25%; /* 16:9 aspect ratio */
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.2);
      border: 2px solid var(--accent);
    }

    .game-iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .game-info {
      text-align: center;
    }

    .game-title {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: var(--dark);
      margin: 2rem 0;
      text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    }

    .game-description {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      line-height: 1.8;
      color: #ccc;
    }

    @media (max-width: 768px) {
      .game-title {
        font-size: 2.5rem;
      }
      .game-description {
        font-size: 1rem;
      }
    }


    /* policy page */
.policy-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: var(--dark-80);
  padding: 2rem;
}

.policy-content h3 {
  /* color: #e6dede; */

  padding-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.policy-content p {
  margin-bottom: 1rem;
  text-align: justify;
}
.policy-content ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.policy-content ul li {
  margin-bottom: 0.5rem;
}