        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* Hide scrollbar but keep scroll functionality */
html, body {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For IE and Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, Opera */
}

        body {
            margin: 0;
            padding: 0;
            background: #0f0f0f;
            font-family: 'Roboto', sans-serif;
            color: #fff;
            overflow-x: hidden;
            position: relative;
            background-image: url('../images/lock back.jpg');
            background-size: cover;
        }

        /* Background Animation */
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(270deg, #000000, #606060, #e7e7e7);
            background-size: 600% 600%;
            animation: gradientBG 20s ease infinite;
            z-index: -1;
            opacity: 0.07;
            
        }










        @keyframes gradientBG {
            0% {background-position: 0% 50%;}
            50% {background-position: 100% 50%;}
            100% {background-position: 0% 50%;}
        }
        /* Navbar */

/* Navbar */
.navbar {
  background-color: #161616;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  height: 25px;
  max-width: 100%;
  position: fixed;
  top: -100px; /* Hide initially for animation */
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.8s ease-out forwards;
}

/* Keyframe for slide-in */
@keyframes slideDown {
  from {
    top: -100px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* Logo */
.logo img {
  height: 30px;
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #aaa;
}

.arrow {
  margin-left: 4px;
  font-size: 14px;
}

/* Animated Button */
.login-btn {
  background-color: #d35400;
  color: white;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}



.dp-wrapper {
  position: relative;
  cursor: pointer;
}

.dp {
  width: 40px;
  height: 40px;
 
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  border-radius: 50%;
  
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  overflow: hidden;
}
.imgdp {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover; 
  display: block;
}



.dp-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 8px 12px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  min-width: 120px;
  z-index: 1000;
  padding: 5px 0;
}

.dp-dropdown button {
  background: none;
  border: none;
  padding: 10px 16px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}

.dp-dropdown button:hover {
  background-color: #333;
}







/* 🔸 Animated Background on Hover */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #3e3e3e, #b1b1b1, #000000);
  background-size: 100% 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.navbar:hover::before {
  animation: navSweep 3s ease-out forwards;
  opacity: 0.15;
}

/* Background Sweep Animation */
@keyframes navSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}





@media (max-width: 1024px) {
  .game-section, .hero, .pricing-container {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .game-section, .hero, .pricing-container {
    padding-top: 80px;
  }
}


/* Hamburger (Mobile Only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1101;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Slide-out Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 220px;
  background: #161616;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  gap: 20px;
  transition: right 0.4s ease-in-out;
  z-index: 1100;
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-menu a:hover {
  color: #f97316;
  padding-left: 8px;
}

/* Active states */
.mobile-menu.active {
  right: 0;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Responsive control */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}








            /* Logo */
            .logo2 {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 20px 15px 20px;
            margin-top: 50px;
            }

            .logo2 img {
            max-height: 80px;
            transition: transform 0.4s ease;
            cursor: pointer;
            width: auto;
            height: auto;
            max-width: 100%;
            }

            .logo2 img:hover {
            transform: scale(1.01);
            }

            /* Tabs */
            .tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
            border-bottom: 2px solid #444;
            }

            .tab {
            padding: 15px 30px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            margin: 10px 10px 0;
            font-size: 1.1rem;
            border-radius: 12px 12px 0 0;
            color: #ddd;
            }

            .tab::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #ff4e50, #f9d423);
            transition: width 0.4s ease;
            }

            .tab:hover::after {
            width: 100%;
            }

            .tab:hover {
            color: #fff;
            }

            .tab.active {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            transform: translateY(-5px);
            font-weight: bold;
            }

            /* Content Container */
            .tab-content-container {
            position: relative;
            max-width: 1000px;
            margin: 30px auto;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            min-height: 400px;
            overflow: hidden;
            }

            /* Tab Content */
            .tab-content {
            opacity: 0;
            transform: translateY(20px);
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            padding: 30px;
            transition: opacity 0.8s ease, transform 0.8s ease;
            }

            .tab-content.active {
            opacity: 1;
            transform: translateY(0);
            position: relative;
            }

            /* Scroll Reveal */
            .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
            }

            .reveal.active {
            opacity: 1;
            transform: translateY(0);
            }

            /* Loading Animation */
            .loading {
            text-align: center;
            font-size: 18px;
            color: #f9d423;
            padding: 20px;
            }

            h2 {
            color: #f9d423;
            margin-bottom: 20px;
            font-size: 1.8rem;
            text-align: center;
            }

            p {
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 1rem;
            color: #ddd;
            }

            /* Responsive Styles */
            @media (max-width: 1024px) {
            .tab {
                font-size: 1rem;
                padding: 12px 24px;
            }

            .tab-content-container {
                padding: 20px;
            }

            .tab-content {
                padding: 20px;
            }
            }

            @media (max-width: 768px) {
            .logo2 {
                margin-top: 30px;
            }

            .tab {
                padding: 10px 20px;
                font-size: 0.95rem;
                margin: 6px 5px 0;
            }

            h2 {
                font-size: 1.6rem;
            }

            p {
                font-size: 0.95rem;
            }
            }

            @media (max-width: 480px) {
            .logo img {
                max-height: 60px;
            }

            .tab {
                font-size: 0.9rem;
                padding: 8px 16px;
            }

            .tab-content-container {
                padding: 15px;
            }

            .tab-content {
                padding: 15px;
            }

            h2 {
                font-size: 1.4rem;
            }

            p {
                font-size: 0.9rem;
            }
            }
