a {
  text-decoration: none;
}

/* Global Colors */
:root {
  --primary: #00bf63;
  --primary-dark: #009e52;
  --primary-light: #00d470;
  --accent: #00ff88;
  --dark: #0a0e1a;
  --dark-secondary: #151922;
  --dark-tertiary: #1e2328;
  --light: #ffffff;
  --gray: #8b949e;
  --gray-light: #f0f6fc;
  --gray-dark: #21262d;
  --text-primary: #ffffff;
  --text-secondary: #c9d1d9;
  --text-muted: #8b949e;
  --border: rgba(48, 54, 61, 0.5);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  --gradient-bg: linear-gradient(135deg, #0a0e1a 0%, #151922 50%, #1e2328 100%);
  --blur-bg: rgba(10, 14, 26, 0.8);
}

/* Container for centering */
.container {
  width: 70%;
  margin: 0 auto;
}

/* Wrap the entire header in a wrapper */
.header-wrapper {
  position: relative;
  width: 100%;
}

/* Container for the blurred effect */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: backdrop-filter 0.3s ease;
  border-bottom: var(--primary) 1px solid;
}

.header-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: var(--text-primary);
}

/* Top banner */
.top-banner-wrapper {
  color: var(--text-primary);
  width: 100%;
}

.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  background-color: transparent;
}

.top-banner a {
  color: var(--primary);
}

.top-banner .btn {
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  transition: background-color 0.2s ease;
}

.top-banner .btn:hover {
  background-color: var(--dark-tertiary);
}

.top-banner-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-tag {
  background-color: var(--primary);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.top-banner-right {
  display: flex;
  gap: 10px;
}

/* Navigation section */
.nav-wrapper {
  width: 100%;
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 14px 0;
  color: var(--text-primary);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-right: 40px;
}

.brand .logo-text {
  font-size: 25px;
  font-weight: bold;
    font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation links */
.navigation-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navigation-links a {
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.navigation-links a:hover {
  background-color: var(--dark-tertiary);
}

.navigation-links a.active {
  background-color: var(--dark-tertiary);
  color: var(--primary-light);
}

.dropdown-toggle .dropdown-icon {
  margin-left: 6px;
  font-size: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.dropdown-icon.rotated {
  transform: rotate(180deg);
}

/* Game Name & Description */
.game-name {
  font-size: 16px;
  color: var(--text-primary);
}

.game-description {
  color: var(--text-muted);
  font-size: 12px;
}

/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown a {
  cursor: pointer;
}

/* Dropdown content for games (grid) with glassmorphism */
.dropdown-content {
  display: none;
  position: fixed;
  padding: 16px;
  border-radius: 12px;
  min-width: 200px;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background-color: var(--blur-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 25px;
}

.dropdown-games .dropdown-content {
  width: 700px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dropdown-games .dropdown-content a {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  gap: 10px;
  color: var(--text-primary);
}

.dropdown-games .dropdown-content a:hover {
  background-color: var(--dark-tertiary);
}

.dropdown-games .dropdown-content a img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

/* More dropdown list */
.dropdown-more .dropdown-content {
  width: 200px;
  padding: 10px 0;
}

.dropdown-more .dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text-primary);
}

.dropdown-more .dropdown-content a:hover {
  background-color: var(--dark-tertiary);
}

.dropdown-more .dropdown-content a i {
  width: 16px;
}

/* Show dropdown when active */
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-games.show-games .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 700px;
}

.dropdown-more.show-more .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block;
  width: 200px;
}

.top-banner-right .btn i {
  margin-right: 6px;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1200;
  margin-left: auto;
  padding: 0;
  margin-right: 10px;
}

.hamburger div {
  width: 100%;
  height: 4px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

/* Hamburger animation */
.hamburger.active div:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
  transform: translateX(30px);
}

.hamburger.active div:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Enhanced Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(21, 25, 34, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0, 191, 99, 0.3);
  z-index: 1100;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-xl);
}

.mobile-nav.show {
  right: 0;
}

/* Menu header with brand */
.mobile-nav-header {
  border-bottom: 1px solid rgba(0, 191, 99, 0.2);
  background: linear-gradient(135deg, rgba(0, 191, 99, 0.1) 0%, transparent 100%);
  margin-bottom: 10px;
  position: relative;
  padding: 20px;
}

.mobile-nav-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-nav-header .brand .logo-text {
  font-size: 1.4rem;
  font-weight: bold;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Client Access Section - Premium Style */
.client-access-section {
  padding: 0 20px 20px;
  margin-bottom: 20px;
}

.client-access-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  padding-left: 5px;
  position: relative;
}

.client-access-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.client-access-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.client-access-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 191, 99, 0.3);
  position: relative;
  overflow: hidden;
}

.client-access-btn::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 ease;
}

.client-access-btn:hover::before {
  left: 100%;
}

.client-access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 191, 99, 0.4);
}

.client-access-btn i {
  font-size: 1.2rem;
}

/* Navigation Sections */
.mobile-nav-section {
  margin-bottom: 30px;
  padding: 0 20px;
}

.mobile-nav-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding-left: 5px;
  margin-bottom: 10px;
  position: relative;
}

.mobile-nav-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 25px;
  background: var(--text-muted);
  opacity: 0.5;
}

/* Navigation Links */
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(0, 191, 99, 0.1), rgba(0, 191, 99, 0.05));
  transition: width 0.3s ease;
}

.mobile-nav a:hover::before {
  width: 100%;
}

.mobile-nav a:hover {
  color: var(--primary-light);
  transform: translateX(8px);
  background: rgba(0, 191, 99, 0.05);
}

.mobile-nav a i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover i {
  opacity: 1;
  color: var(--primary);
  transform: scale(1.1);
}

/* Menu Footer */
.eclipse-mobile-nav-footer {
  padding: 25px 20px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 191, 99, 0.2);
  text-align: center;
}

.eclipse-mobile-nav-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.eclipse-mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.eclipse-mobile-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 191, 99, 0.1);
  border: 1px solid rgba(0, 191, 99, 0.3);
  color: var(--text-primary);
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  gap: 0;
}

.eclipse-mobile-social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 191, 99, 0.3);
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Entrance animations */
.mobile-nav.show .mobile-nav-section {
  animation: slideInUp 0.6s ease forwards;
}

.mobile-nav.show .mobile-nav-section:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav.show .mobile-nav-section:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav.show .mobile-nav-section:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav.show .mobile-nav-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media queries */
@media (max-width: 1300px) {
  .container {
    width: 90%;
  }

  .navigation-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }

  .dropdown-content {
    display: none !important;
  }
}

@media (max-width: 1300px) {
  .top-banner {
    display: none;
  }

  .top-banner-right {
    display: none;
  }

  .nav-container {
    display: flex;
    justify-content: flex-start;
  }

  .nav-wrapper .container {
    position: relative;
  }

  .hamburger {
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 1200;
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .mobile-nav {
    max-width: 100%;
  }
}

@media (max-width: 350px) {
  .client-access-buttons {
    gap: 10px;
  }
  
  .client-access-btn {
    padding: 14px 16px;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Logo Container */
.logo-container {
  margin-bottom: clamp(25px, 5vw, 40px);
  animation: pulse 2s ease-in-out infinite;
}

.logo-placeholder {
  width: auto;
  height: clamp(60px, 12vw, 80px);
  border-radius: clamp(10px, 2vw, 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: bold;
  color: white;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(0, 191, 99, 0.6));
  max-width: 90vw;
}

.logo-placeholder::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(0, 191, 99, 0.4) 0%,
    rgba(0, 191, 99, 0.2) 40%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .loading-progress-container {
    width: 280px;
  }

  .logo-placeholder {
    height: 70px;
    font-size: 18px;
  }
}

/* Enhanced banner animation styles */
.top-banner-left {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  height: auto;
}

.banner-message {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-message.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.banner-message.fade-out {
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.6s cubic-bezier(0.6, 0, 0.4, 1);
}

.banner-message.slide-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bannerProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .banner-message {
    font-size: 0.9rem;
  }

  .new-tag {
    font-size: 0.8rem;
  }

  .top-banner-left {
    min-height: 35px;
  }
}