 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f1419;
            color: white;
        }

        .header {
            background: #0f1419;
            border-bottom: 1px solid #2a2a2a;
            padding: 0 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .left-section {
            display: flex;
            align-items: center;
            gap: 100px;
        }

        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
            
        }

        .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            align-items: right;
            gap: 35px;
        }

        .nav-item {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .nav-item:hover {
            color: white;
        }

        .nav-item.dropdown::after {
            content: '▼';
            margin-left: 6px;
            font-size: 10px;
            color: #a0a0a0;
            transition: transform 0.3s ease;
        }

        .nav-item.dropdown.active::after {
            transform: rotate(180deg);
        }

        .right-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .search-container {
            position: relative;
        }

        .search-box {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 20px;
            padding: 8px 16px 8px 40px;
            width: 300px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .search-box:focus {
            border-color: #555;
        }

        .search-box::placeholder {
            color: #999;
        }

        .search-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
        }

        .language-btn {
            background: none;
            border: none;
            color: #e0e0e0;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: background-color 0.2s ease;
        }

        .language-btn:hover {
            background: #333;
        }

        .language-icon {
            width: 20px;
            height: 20px;
            border: 2px solid currentColor;
            border-radius: 50%;
            position: relative;
        }

        .language-icon::before,
        .language-icon::after {
            content: '';
            position: absolute;
            border: 1px solid currentColor;
        }

        .language-icon::before {
            width: 100%;
            height: 50%;
            top: -1px;
            left: -1px;
            border-radius: 20px 20px 0 0;
        }

        .language-icon::after {
            width: 1px;
            height: 100%;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
        }

        .sign-in-btn {
            background: none;
            border: 1px solid #555;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .sign-in-btn:hover {
            border-color: #777;
            background: #1a1a1a;
        }

        .download-btn {
            background: #f3d23c;
            border: none;
            color: black;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.2s ease;
        }

        .download-btn:hover {
            background: #e6c235;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Dropdown Menus */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 10px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-item.dropdown {
            position: relative;
        }

        .nav-dropdown {
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
        }

        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown.active {
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: #e0e0e0;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s ease;
            border-bottom: 1px solid #333;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: #333;
            color: white;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            background: #0f1419;
            border-top: 1px solid #2a2a2a;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 999;
            max-height: calc(100vh - 60px);
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav {
            padding: 20px;
        }

        .mobile-nav-item {
            display: block;
            color: #e0e0e0;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 15px 0;
            border-bottom: 1px solid #333;
            transition: color 0.2s ease;
            position: relative;
            cursor: pointer;
        }

        .mobile-nav-item:hover {
            color: white;
        }

        .mobile-nav-item.dropdown::after {
            content: '▼';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #a0a0a0;
            transition: transform 0.3s ease;
        }

        .mobile-nav-item.dropdown.active::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #1a1a1a;
            margin: 10px 0;
            border-radius: 8px;
        }

        .mobile-dropdown.active {
            max-height: 300px;
        }

        .mobile-dropdown-item {
            display: block;
            color: #c0c0c0;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            padding: 12px 20px;
            border-bottom: 1px solid #333;
            transition: all 0.2s ease;
        }

        .mobile-dropdown-item:last-child {
            border-bottom: none;
        }

        .mobile-dropdown-item:hover {
            background: #333;
            color: white;
        }

        .mobile-search {
            margin: 20px 0;
        }

        .mobile-search .search-box {
            width: 100%;
        }

        .mobile-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .mobile-buttons .sign-in-btn,
        .mobile-buttons .download-btn {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }
            
            .search-container {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .language-btn,
            .sign-in-btn {
                display: none;
            }
            
            .right-section {
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .header {
                padding: 0 15px;
            }
            
            .left-section {
                gap: 15px;
            }
            
            .logo-img {
                height: 32px;
            }
            
            .sign-in-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
            
            .download-btn {
                padding: 8px 16px;
                font-size: 12px;
            }
        }

        /* Overlay for mobile menu */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
    /* Banner wrapper */
    .banner {
      position: relative;
      background: url('/img/bann.webp') no-repeat center center/cover;
      color: white;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      height: 500px;
      padding: 20px;
      overflow: hidden;
    }

    .banner-content {
      max-width: 550px;
      margin-left: 80px; /* Desktop margin */
    }

    .banner-heading {
      font-size: 40px;
      line-height: 1.2;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .banner-content p {
      font-size: 20px;
      margin-bottom: 10px;
      color: #fff;
      font-weight: bold;
    }

    .auth-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.login-btn,
.register-btn {
  padding: 18px 26px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
  width: 150px;
  text-align: center;
}

/* Login Button - Orange */
.login-btn {
   background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.1);
}
.login-btn:hover {
   background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Register Button - Red-pink */
.register-btn {
   background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1f2937;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
            border: 2px solid rgba(31, 41, 55, 0.1);
            font-weight: 700;
        }
.register-btn:hover {
   background: linear-gradient(135deg, #41b876 0%, #5ecf5b 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.2);
}



    /* Hide mobile image by default */
    .banner img {
      display: none;
    }

   /* MOBILE STYLING */
@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    height: auto;
    background: none;
    padding: 0;
  }

  .banner img {
    display: block;
    width: 100%;
    height: auto; /* maintain proper ratio */
  }

  .banner-content {
   
     background: linear-gradient( #ea4943,#1b1b1b);
    text-align: center;
    padding: 40px 50px;
    max-width: 100%;
    margin-left: 0; /* Remove desktop margin */
    color: #fff; /* Text color white on gradient */
  }

  .banner-heading {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .banner-content p {
    font-size: 16px;
    margin-bottom: 8px;
  }

   .auth-buttons {
    flex-direction: column;
    align-items: center;
  }

  .login-btn,
  .register-btn {
    width: 100%;
    max-width: 330px;
  }
}


      .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 20px;
            color: white;
            text-align: center;
        }

        .games-grid {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .game-card {
            min-width: 170px;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            margin-left: 10px;
            background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
        }

        .game-card:hover {
            transform: scale(1.05);
        }

       

        .game-image {
            width: 80%;
            height: 150px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

       

        .age-rating {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.8);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
            color: white;
        }

        .event-badge {
            position: absolute;
            bottom: 8px;
            left: 8px;
            background: #ff6b35;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: bold;
            color: white;
        }

        .game-info {
            padding: 12px;
            background: #2a2a2a;
        }

        .game-title {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: white;
        }

        .game-stats {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.85rem;
            color: #ccc;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .stat-icon {
            width: 12px;
            height: 12px;
            background: #666;
            border-radius: 2px;
        }

       .battle-royale {
  background-image: url('/img/lottery.webp');
  background-size: cover;
  background-position: center;
}

.fortnite-og {
  background-image: url('/img/txtwin.webp');
  background-size: cover;
  background-position: center;
}

.blitz-royale {
  background-image: url('/img/wingo.webp');
  background-size: cover;
  background-position: center;
}

.lego-fortnite {
  background-image: url('/img/5d.webp');
  background-size: cover;
  background-position: center;
}

.festival-stage {
  background-image: url('/img/k3.webp');
  background-size: cover;
  background-position: center;
}

.reload {
  background-image: url('/img/motorace.webp');
  background-size: cover;
  background-position: center;
}


        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .game-card {
                min-width: 180px;
            }
            
            .game-card.featured {
                min-width: 280px;
            }
        }

        /* footer */

         footer {
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 40px 0;
     
    }

    .footer-menu {
      margin-bottom: 10px;
    }

    .footer-menu a {
      color: #fff;
      text-decoration: none;
      margin: 0 12px;
      font-size: 14px;
    }

    .footer-menu a:hover {
      color: #f39c12;
    }

    .footer-line {
      width: 90%;
      height: 1px;
      background-color: #fff;
      margin: 10px auto;
    }

    .footer-copy {
      font-size: 13px;
      color: #ccc;
    }


         .okwin-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 30px;
     
    }

    .okwin-section {
         max-width: 1200px;
      margin: 0 auto;
      margin-bottom: 40px;
      padding: 30px;
      line-height: 1.8;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }


    
    .okwin-section h1 {
      font-size: 2.3em;
      color: #eccfc4;
      margin-bottom: 15px;
      text-align: center;
    }

    .okwin-section h2 {
      font-size: 1.8em;
      color: #eccfc4;
      margin-bottom: 20px;
    }

     .okwin-section h3 {
      font-size: 1.6em;
      color: #eccfc4;
      margin-bottom: 20px;
    }


      .okwin-section h4 {
      font-size: 1.2em;
      color: #eccfc4;
      margin-bottom: 20px;
    }

   
    p {
      font-size: 16px;
      color: #ccc;
      margin-bottom: 15px;
      line-height: 1.8rem;
    }

    .okwin-img {
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }

    .okwin-img img {
      max-width: 300px;
      height: auto;
      border-radius: 8px;
    }

    ul {
      padding-left: 20px;
      color: #ccc;
    }

    li {
      margin-bottom: 10px;
    }



    .okwin-footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 20px 10px;
    }

    @media (max-width: 768px) {
      .okwin-header h1 {
        font-size: 2em;
      }

      .okwin-container {
        padding: 20px 15px;
      }

      .okwin-section h2 {
        font-size: 1.5em;
      }
    }

     .okwin-wrapper {
      background-color: #111;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
      width: 100%;
      max-width: 1000px;
       text-align: center;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .okwin-wrapper h1 {
      color: #00e676;
      font-size: 24px;
      margin-bottom: 10px;
      text-align: center;
    }
    .okwin-wrapper p {
      text-align: center;
      margin-bottom: 20px;
    }
    .okwin-code-box {
      background: #222;
      border: 1px solid #444;
      padding: 15px;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      border-radius: 8px;
      margin-bottom: 20px;
      color: #ffeb3b;
      word-break: break-word;
    }
    .okwin-table {
      width: 90%;
      margin: 0 auto;
      border-collapse: collapse;
      background-color: #1a1a1a;
    }
    .okwin-table th, .okwin-table td {
      padding: 12px 15px;
      text-align: left;
      border-bottom: 1px solid #333;
    }
    .okwin-table th {
      color: #00e5ff;
    }
    .okwin-table td {
      color: #ccc;
    }

    /* button */
.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px auto; /* Add spacing if needed */
}

.button-group {
  display: flex;
  gap: 20px;
}

.btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.4s ease;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
}

/* Register Button */
.btn-register {
  background: #ff2c75;
  color: white;
}
.btn-register:hover {
  background: transparent;
  color: #ff2c75;
  border-color: #ff2c75;
}

/* Login Button */
.btn-login {
  background: #00c8ff;
  color: white;
}
.btn-login:hover {
  background: transparent;
  color: #00c8ff;
  border-color: #00c8ff;
}

/* Download Button */
.btn-download {
  background: #00e68a;
  color: white;
}
.btn-download:hover {
  background: transparent;
  color: #00e68a;
  border-color: #00e68a;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .button-group {
    flex-direction: column; 
    gap: 15px;
  }

  .btn {
    width: 100%; 
    max-width: 300px;
    text-align: center;
  }
}

/* faq */

.faq-section {
  max-width: 1200px;
  margin: auto;
  background: #0f1419; /* Black background */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.9);
  padding: 30px;
}

.faq-section h2 {
  text-align: center;
  color: #ebe7e5; /* Orange heading */
  margin-bottom: 25px;
  font-size: 30px;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid #333; /* Darker border for black bg */
  padding: 15px 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(255,102,0,0.1); /* Subtle orange hover */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  color: #fff; /* White text */
  font-weight: bold;
  margin: 0;
}

.faq-question span {
  font-size: 22px;
  color: #ff6600;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #ccc; /* Light grey for answer text */
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 5px;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* large enough for content */
  padding: 10px 5px 5px;
}

/* about-us */

.wrapper {
      max-width: 1200px;
      margin: 40px auto;
      padding: 30px;
      background-color: rgba(255, 255, 255, 0.04);
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(255, 102, 0, 0.08);
      border: 3px solid #f95959;
    }

    .wrapper h1 {
      text-align: center;
      color: #f95959;
      font-size: 2.8rem;
      margin-bottom: 20px;
    }

    h2 {
      color: #f95959;
      border-left: 4px solid #f95959;
      padding-left: 10px;
      margin-top: 40px;
      font-size: 1.6rem;
    }

     .wrapper p {
      margin: 15px 0;
      font-size: 1.05rem;
      color: #ddd;
    }

    a {
      color: #00ffc8;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

     ul {
      padding-left: 20px;
      margin: 10px 0 20px;
    }

    ul li {
      margin-bottom: 8px;
      color: #ccc;
    }


    @media (max-width: 600px) {
      .about-wrapper {
        padding: 20px;
      }

      h1 {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.3rem;
      }
    }