/* font */
@font-face {
  font-family: 'Barriecito';
  src: url('../fonts/Barriecito-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'DMSans';
  src: url('../fonts/DMSans-VariableFont_opsz\,wght.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

      /* Reset and Base Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      a{
        text-decoration: none;
      }

      body {
        background: linear-gradient(
          135deg,
          #2d1b69 0%,
          #8b0000 50%,
          #4a0e4e 100%
        );
        color: white;
        overflow-x: hidden;
         font-family: "DMSans-VariableFont_opsz,wght", sans-serif;
        line-height: 1.6;
      }

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

      /* Header Styles */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .navbar {
        padding: 1rem 0;
      }

      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      /* Logo Styles */
      .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        font-size: 1.2rem;
      }
      .logo img {
        width: 13rem;
      }

      /* Navigation Styles */
      .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
      }

      .nav-link {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-link:hover,
      .nav-link.active {
        color: #ff6b35;
      }

      .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        right: 0;
        height: 2px;
        background: #ff6b35;
      }

      .dropdown-icon {
        font-size: 0.7rem;
        margin-left: 5px;
      }

      /* Button Styles */
      .btn-primary {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        color: white;
        border: none;
        padding: 12px 24px;
         border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
      }

      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
      }

      .btn-cta {
        background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
        color: white;
        border: none;
        padding: 16px 32px;
         border-radius: 6px;
        font-weight: 700;
        font-size: 1rem;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        margin-top: 2rem;
      }

      .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
      }

      /* Mobile Menu */
      .mobile-menu-btn {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
      }

      .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
      }

      .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }

      .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
      }

      .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }

      .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        text-align: center;
      }

      .mobile-menu.active {
        display: block;
      }

      .mobile-nav-menu {
        list-style: none;
        margin-bottom: 2rem;
      }

      .mobile-nav-menu li {
        margin: 1rem 0;
      }

      .mobile-nav-link {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
      }

      .mobile-cta {
        width: 100%;
        max-width: 200px;
      }

      /* Hero Section */
      .hero {
        /* position: relative;
            min-height: 100vh; */
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        /* overflow: hidden; */
      }

     .hero-background {
  position: relative;
  height: 100vh;
  background: url('../images/bg.webp') no-repeat center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:linear-gradient(90deg, #341206c7 0%, #420065 100%);
  opacity: 0.8;
  z-index: 1;
}

.hero-background > * {
  position: relative;
  z-index: 2;
}

      /* Hero Content */
      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        /* max-width: 900px; */
        /* margin: 0 auto; */
        /* padding: 0 20px; */
      }

      .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
         font-family: 'Barriecito', sans-serif;
      }

      .hero-description {
        font-size: clamp(0.8rem, 1vw, 1rem);
        line-height: 1.6;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .nav-menu,
        .nav-cta {
          display: none;
        }

        .mobile-menu-btn {
          display: flex;
        }

        .hero {
          padding-top: 100px;
          min-height: 100vh;
        }

  
        .hero-content {
          padding: 0 15px;
        }

        .btn-cta {
          padding: 14px 28px;
          font-size: 0.9rem;
        }
      }

      @media (max-width: 480px) {
        .hero-title {
          font-size: 3rem;
        }

        .hero-description {
          font-size: 0.95rem;
        }

      }


       /* About Us Section */
        .about-us {
            padding: 100px 0;
            background: #000000;
            position: relative;
            overflow: hidden;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 500px;
        }

        /* Left Content - Text */
        .about-text {
            max-width: 500px;
        }

        .about-title {
            font-size: clamp(3rem, 4vw, 4.5rem);
            font-weight: 800;
            color: #E74C3C;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(231, 76, 60, 0.3);
            position: relative;
            font-family: 'Barriecito', sans-serif;
        }

    

        .about-description {
            margin-bottom: 2.5rem;
        }

        .about-description p {
            font-size: clamp(1rem, 1.2vw, 1.1rem);
            line-height: 1.8;
            color: #CCCCCC;
            text-align: justify;
        }

        /* Button Styles */
        .btn-play-games {
            background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .btn-play-games::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-play-games:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
        }

        .btn-play-games:hover::before {
            left: 100%;
        }

        /* Right Content - Character */
        .about-character {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .character-container {
            position: relative;
            width: 400px;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }


        /* Character Animations */
        @keyframes characterFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(1deg);
            }
        }

        @keyframes glowPulse {
            0% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(0.8);
            }
            100% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

       

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-content {
                gap: 60px;
            }

            .character-container {
                width: 350px;
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .about-us {
                padding: 80px 0;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .about-text {
                max-width: 100%;
                order: 2;
            }

            .about-character {
                order: 1;
            }

            .character-container {
                width: 300px;
                height: 380px;
            }

            .about-description p {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .about-us {
                padding: 60px 0;
            }

            .container {
                padding: 0 15px;
            }

            .about-content {
                gap: 40px;
            }

            .character-container {
                width: 250px;
                height: 320px;
            }

            .btn-play-games {
                padding: 14px 28px;
                font-size: 0.9rem;
            }

            .about-description p {
                font-size: 0.95rem;
                line-height: 1.7;
            }
        }

         /* Exclusive Games Section */
        .exclusive-games {
            padding: 100px 0;
            background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
            position: relative;
            overflow: hidden;
        }

        .exclusive-games::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
             font-size: clamp(3rem, 4vw, 4.5rem);
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
            line-height: 1.2;
            font-family: 'Barriecito', sans-serif;
        }

        /* Games Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Game Card */
        .game-card {
            background: #000;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 3px solid #333;
        }

        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
            border-color: #FFD700;
        }

        .game-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .game-bg {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .game-bg img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        /* Solar King Background */
        .solar-king-bg {
            background: linear-gradient(135deg, #4169E1 0%, #FFD700 50%, #FF6B35 100%);
        }


        /* Fruits & Jokers Background */
        .fruits-jokers-bg {
            background: linear-gradient(135deg, #FF4500 0%, #FFD700 100%);
        }


      

        /* Luxor Gold Background */
        .luxor-gold-bg {
            background: linear-gradient(135deg, #4169E1 0%, #FFD700 50%, #FFA500 100%);
        }


        /* Secrets of the Pixies Background */
        .secrets-pixies-bg {
            background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #90EE90 100%);
        }





        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1); }
        }

        /* Sevens & Fruits Background */
        .sevens-fruits-bg {
            background: linear-gradient(135deg, #8B0000 0%, #FF4500 50%, #FFD700 100%);
        }



        /* Burning Wins Background */
        .burning-wins-bg {
            background: linear-gradient(135deg, #000 0%, #8B0000 50%, #FF4500 100%);
        }




        @keyframes burning {
            0% { text-shadow: 0 0 10px #FF4500; }
            100% { text-shadow: 0 0 20px #FF4500, 0 0 30px #FFD700; }
        }


        @keyframes fireFlicker {
            0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
            50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
        }



        /* Lucky Sevens Background */
        .lucky-sevens-bg {
            background: linear-gradient(135deg, #8B0000 0%, #FF6B35 100%);
        }




        /* Crystal Saga Background */
        .crystal-saga-bg {
            background: linear-gradient(135deg, #4169E1 0%, #00CED1 50%, #7FFFD4 100%);
        }



        @keyframes twinkle {
            0%, 100% { opacity: 0.5; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Joker's Wild Background */
        .jokers-wild-bg {
            background: linear-gradient(135deg, #8B0000 0%, #FF4500 50%, #FFD700 100%);
        }


        /* Game Title Overlays */
        .game-title-overlay {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            font-size: clamp(14px, 2vw, 18px);
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            text-align: center;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 12px;
            opacity: 0.9;
        }

        /* Special Badges */
        .hold-win-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 215, 0, 0.9);
            color: #000;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: bold;
        }

        .line-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.8);
            color: #FFD700;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
            border: 1px solid #FFD700;
        }

        /* Game Name */
        .game-name {
            padding: 15px;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            color: #FFD700;
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            letter-spacing: 0.5px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .games-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .exclusive-games {
                padding: 80px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .games-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .game-image {
                height: 180px;
            }

            .game-card:hover {
                transform: translateY(-5px) scale(1.01);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .games-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .game-image {
                height: 160px;
            }

            .game-name {
                padding: 12px;
                font-size: 13px;
            }
        }

        /* Performance Optimizations */
        .game-card {
            will-change: transform;
        }

        @media (prefers-reduced-motion: reduce) {
            .game-card,
          
           
       
            .game-card:hover {
                transform: none;
            }
        }

         /* Happy Gamers Section */
        .happy-gamers {
            padding: 100px 0;
            background: #1a1a1a;
            position: relative;
        }

        .happy-gamers .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .happy-gamers .section-title {
             font-size: clamp(3rem, 4vw, 4.5rem);
            font-weight: 800;
            color: #E74C3C;
            text-shadow: 2px 2px 8px rgba(231, 76, 60, 0.3);
            letter-spacing: 2px;
            position: relative;
        }



        /* Testimonials Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 3fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: #ffffff;
            color: #333;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #E74C3C 0%, #FF6B35 100%);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Stars Rating */
        .stars-rating {
            margin-bottom: 20px;
            display: flex;
            gap: 5px;
        }

        .star {
            color: #8B4513;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .star {
            color: #FFD700;
            transform: scale(1.1);
        }

        .star:nth-child(1) { transition-delay: 0.1s; }
        .star:nth-child(2) { transition-delay: 0.2s; }
        .star:nth-child(3) { transition-delay: 0.3s; }
        .star:nth-child(4) { transition-delay: 0.4s; }
        .star:nth-child(5) { transition-delay: 0.5s; }

        /* Testimonial Text */
        .testimonial-text {
            margin-bottom: 20px;
        }

        .testimonial-text p {
            font-size: 16px;
            line-height: 1.7;
            color: #444;
            text-align: justify;
        }

        /* Testimonial Author */
        .testimonial-author {
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .testimonial-author h4 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        /* Recent Gamers Section */
        .recent-gamers {
            padding: 100px 0;
            background: #0f0f0f;
            position: relative;
        }

        .recent-gamers .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .recent-gamers .section-title {
              font-size: clamp(3rem, 4vw, 4.5rem);
            font-weight: 800;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.2);
            letter-spacing: 2px;
            position: relative;
        }



        /* Recent Gamers Grid */
        .recent-gamers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .recent-gamer-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border: 2px solid #FFD700;
            border-radius: 15px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            justify-content: center;
        }

        .recent-gamer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.6s;
        }

        .recent-gamer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
            border-color: #FFA500;
        }

        .recent-gamer-card:hover::before {
            left: 100%;
        }

        /* Gamer Avatar */
        .gamer-avatar {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
            position: relative;
        }

        .gamer-avatar::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .recent-gamer-card:hover .gamer-avatar::before {
            opacity: 0.5;
        }

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

        .trophy-icon img {
            width: 100%;
            height: 100%;
        }


        /* Gamer Info */
        .gamer-info {
            flex: 1;
        }

        .gamer-name {
            font-size: 22px;
            font-weight: 700;
            color: #FFD700;
            margin-bottom: 8px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .game-played {
            font-size: 16px;
            color: #cccccc;
            font-weight: 400;
            text-align: center;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            transform: translateY(20px);
        }

        .scroll-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
        }

        .scroll-to-top svg {
            width: 24px;
            height: 24px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .testimonials-grid,
            .recent-gamers-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .happy-gamers,
            .recent-gamers {
                padding: 80px 0;
            }

            .happy-gamers .section-header,
            .recent-gamers .section-header {
                margin-bottom: 40px;
            }

            .testimonials-grid,
            .recent-gamers-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card,
            .recent-gamer-card {
                padding: 25px;
            }

            .recent-gamer-card {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .gamer-avatar {
                width: 70px;
                height: 70px;
            }

            .trophy-icon {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .testimonial-card,
            .recent-gamer-card {
                padding: 20px;
            }

            .testimonial-text p {
                font-size: 15px;
            }

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

            .game-played {
                font-size: 15px;
            }

            .scroll-to-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
        }

        /* Performance Optimizations */
        .testimonial-card,
        .recent-gamer-card,
        .scroll-to-top {
            will-change: transform;
        }

        @media (prefers-reduced-motion: reduce) {
            .testimonial-card,
            .recent-gamer-card,
            .trophy-icon,
            .star,
            .scroll-to-top {
                animation: none;
                transition: none;
            }
            
            .testimonial-card:hover,
            .recent-gamer-card:hover,
            .scroll-to-top:hover {
                transform: none;
            }
        }

        /* Additional Visual Effects */
        .happy-gamers::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .recent-gamers::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }



        /* Footer Styles */
.footer {
  position: relative;
  background-image: url('../images/bg.webp');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( #0f0806 50%, #1a0f08 100%);
  opacity: 0.8; /* You can adjust this */
  z-index: 1;
}

.footer > * {
  position: relative;
  z-index: 2;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Age Restriction Badge */
.age-restriction {
    margin-bottom: 2rem;
}

.age-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.age-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Navigation Styles */
.footer-nav {
    margin-bottom: 2.5rem;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-list li {
    position: relative;
}

.nav-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.3);
}

footer .nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

 footer .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

footer .nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

/* Disclaimer Styles */
.disclaimer {
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

/* Copyright Styles */
.copyright {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}
.copyright a{
  color:#ff6b35
}
.copyright a:hover{
  color: #ffffff;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 1rem 1.5rem;
    }
    
    .age-badge {
        font-size: 2rem;
        padding: 0.4rem 0.8rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
    
    .nav-list li:not(:last-child)::after {
        display: none;
    }
    
    footer .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .disclaimer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .copyright p {
        font-size: 0.75rem;
    }
    
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1.5rem 0.8rem 1rem;
    }
    
    .age-badge {
        font-size: 1.8rem;
        padding: 0.3rem 0.7rem;
    }
    
    footer .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .disclaimer p {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .copyright p {
        font-size: 0.7rem;
        padding: 0 0.5rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer {
        background: #000000;
    }
    
    .age-badge {
        background: #ffffff;
        color: #000000;
    }
    
   footer .nav-link {
        color: #ffffff;
    }
    
    footer.nav-link:hover {
        color: #ffff00;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .age-badge,
    .nav-link,
    .scroll-top {
        transition: none;
    }
    
    .scroll-top {
        transform: none;
    }
}
     


/* game page style */

.game-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.game-header {
  width: 100%;
  text-align: center;
  padding: 100px 50px 50px 50px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.game-header h1 {
  font-size: 3.5rem;
  font-weight: bold;
   font-family: 'Barriecito', sans-serif;
}
.game-section-bg{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
    width: 100%;
    height: 100%;
}

.game-container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
background: linear-gradient(135deg, #2c1810 0%, #1a0f08 100%);
  margin: 4rem 0;
}

.game-frame {
  width: 100%;
  height: 600px;
  background-color: #ddd;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .game-frame {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .game-header h1 {
    font-size: 2.7rem;
  }

  .game-frame {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .game-frame {
    height: 300px;
  }
}

/* policy page */

      .policy-content {
        /* background: #fff;
        padding: 2rem;
        margin: 2rem auto;
        max-width: 800px; */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        color:#f4f4f4 ;
      }
      .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;
      }


      /* contact us */
      .contact-form-container {
        max-width: 800px;
        width: 100%;
        margin: 2rem auto;
        padding: 3rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        border-radius: 20px;
        border: 2px solid #ffd700;
        box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
        position: relative;
        overflow: hidden;
      }
      .contact-form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 215, 0, 0.1),
          transparent
        );
        /* transition: left 0.8s ease; */
      }
      .contact-form-container:hover::before {
        left: 100%;
      }
      .form-title {
        text-align: center;
        font-family: 'Barriecito', sans-serif;
        font-size: 2.5rem;
        color: #ffd700;
        margin-bottom: 2rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      }
      .form-group {
        margin-bottom: 1.5rem;
        position: relative;
      }
      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #ff6b35;
        font-weight: bold;
        font-size: 1rem;
        text-transform: uppercase;
      }
      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 1rem;
        background-color: #1a1a1a;
        border: 1px solid #555;
        border-radius: 8px;
        color: #ffffff;
        font-family: 'DMSans', sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s, box-shadow 0.3s;
      }
      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: #ff6b35;
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }
      .btn-submit {
        display: block;
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1.2rem;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
      }
      .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
      }
      #successMessage {
        display: none;
        margin-top: 1.5rem;
        padding: 1rem;
        background: rgba(46, 204, 113, 0.1);
        color: #2ecc71;
        border: 1px solid #2ecc71;
        border-radius: 8px;
        text-align: center;
        font-weight: bold;
      }
  