/* GameList - Gaming Server Tracking Template */

:root {
  /* Main Colors */
  --color-primary: #7e22ce; /* Primary purple */
  --color-primary-hover: #9333ea; /* Lighter purple for hover states */
  --color-secondary: #06b6d4; /* Cyan accent color */
  --color-tertiary: #db2777; /* Pink accent color */

  /* Background Colors */
  --color-dark-900: #0f172a; /* Main background (almost black) */
  --color-dark-800: #1e293b; /* Secondary background (dark blue-gray) */
  --color-dark-700: #334155; /* Lighter background for cards, etc. */

  /* Text Colors */
  --color-light-100: #f1f5f9; /* Main text color (off-white) */
  --color-light-200: #cbd5e1; /* Secondary text color (light gray) */
  --color-light-300: #94a3b8; /* Muted text color */

  /* Additional Colors */
  --color-vip-gold: #fbbf24; /* Gold color for VIP elements */
  --color-vip-glow: rgba(251, 191, 36, 0.3); /* Glow for VIP elements */
  --color-success: #10b981; /* Success/positive color */
}

/* Global Styles */
body {
  background-color: var(--color-dark-900);
  color: var(--color-light-100);
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

::selection {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Typography */
.text-gradient {
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-secondary) 50%,
    var(--color-tertiary) 100%
  );
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block !important;
  text-align: center !important;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background-color: var(--color-primary);
  color: var(--color-light-100);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary-hover),
    var(--color-secondary)
  );
  transition: width 0.5s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(126, 34, 206, 0.5);
  transform: translateY(-3px);
}

.btn-primary i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(-3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background-color: transparent;
  color: var(--color-light-100);
  font-weight: 600;
  border-radius: 0.5rem;
  border: 2px solid var(--color-secondary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-secondary);
  transition: width 0.5s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.3);
  transform: translateY(-3px);
}

.btn-secondary i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-secondary:hover i {
  transform: rotate(90deg);
}

/* Auth Buttons */
.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background-color: transparent;
  color: var(--color-light-100);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0.375rem;
  border: 1.5px solid var(--color-light-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

.btn-login::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(126, 34, 206, 0.15);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-login:hover::before {
  width: 100%;
}

.btn-login:hover {
  color: var(--color-light-100);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(126, 34, 206, 0.3);
  transform: translateY(-2px);
}

.btn-login i {
  margin-right: 0.4rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-login:hover i {
  transform: translateX(-2px);
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-light-100);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 0.375rem;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
}

.btn-register::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-register:hover::before {
  width: 100%;
}

.btn-register:hover {
  box-shadow: 0 6px 25px rgba(126, 34, 206, 0.5);
  transform: translateY(-2px);
}

.btn-register i {
  margin-right: 0.4rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-register:hover i {
  transform: translateX(2px);
}

/* Navbar Content Layout */
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 3rem;
}

.navbar-logo {
  flex-shrink: 0;
  min-width: fit-content;
}

.navbar-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar-auth {
  flex-shrink: 0;
  min-width: fit-content;
}

/* Navbar Profile (Logged-in user) */
.nav-profile {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.nav-profile-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: radial-gradient(circle at 30% 30%, #e9d5ff, #7e22ce);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(126, 34, 206, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #f9fafb;
}

.nav-profile-name {
  color: var(--color-light-100);
  font-weight: 600;
  font-size: 0.9rem;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-profile-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 11rem;
  border-radius: 0.5rem;
  background-color: #020617;
  border: 1px solid #1e293b;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.8);
  padding: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--color-light-100);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 200;
}
.nav-profile.is-open .nav-profile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-profile-menu-item {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  color: var(--color-light-200);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-profile-menu-item i {
  font-size: 1rem;
  margin-right: 0.4rem;
}

.nav-profile-menu-item:hover {
  background-color: #1f2937;
  color: var(--color-light-100);
}

/* Logo */
.logo-text {
  color: var(--color-light-100);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.25rem 0;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.logo-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition: width 0.3s ease;
}

.logo-text:hover::after {
  width: 100%;
}

.logo-text:hover {
  transform: translateY(-2px);
}

.logo-image {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(126, 34, 206, 0.4));
  transition: all 0.3s ease;
}

.logo-text:hover .logo-image {
  filter: drop-shadow(0 0 12px rgba(126, 34, 206, 0.6));
  transform: scale(1.05);
}

.logo-text i {
  color: var(--color-primary);
  margin-right: 0.5rem;
  font-size: 1.25rem;
  background: rgba(126, 34, 206, 0.1);
  padding: 0.4rem;
  border-radius: 0.375rem;
  box-shadow: 0 0 10px rgba(126, 34, 206, 0.3);
}

.logo-text span {
  background: linear-gradient(
    90deg,
    var(--color-light-100) 0%,
    rgba(241, 245, 249, 0.8) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Navbar */
.navbar-container {
  background-color: rgba(30, 41, 59, 0.4);
  height: 90px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: fixed;
}

/* Initial state - slightly transparent */
.navbar-container {
  background-color: rgba(30, 41, 59, 0.4);
  height: 90px;
}

/* Scrolled state - more opaque and compact */
.navbar-container.navbar-scrolled {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  height: 64px;
}

/* Hidden state when scrolling down */
.navbar-container.navbar-hidden {
  transform: translateY(-100%);
}

/* Logo size adjustment on scroll */
.navbar-scrolled .logo-text {
  font-size: 1.4rem;
  transform: scale(0.95);
}

/* Nav links adjustment on scroll */
.navbar-scrolled .nav-link {
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
}

/* Add gradient border with animation */
.navbar-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary),
    var(--color-tertiary),
    var(--color-secondary),
    var(--color-primary)
  );
  background-size: 200% 100%;
  animation: gradientMove 8s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  color: var(--color-light-200);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.nav-link i {
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: translateY(-2px);
}

.nav-link:hover {
  color: var(--color-light-100);
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link.active {
  color: var(--color-light-100);
  background-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(126, 34, 206, 0.5);
}

.nav-link.active::after {
  width: 0;
}

/* Mobile Menu */
.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--color-light-200);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-button:hover {
  color: var(--color-light-100);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.mobile-menu {
  background-color: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform-origin: top center;
  animation: slideDown 0.3s ease-out forwards;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 0.75rem 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link-mobile {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--color-light-200);
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin-bottom: 0.5rem;
}

.nav-link-mobile i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.nav-link-mobile:hover {
  color: var(--color-light-100);
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--color-secondary);
}

.nav-link-mobile:hover i {
  transform: translateX(3px);
}

.nav-link-mobile.active {
  color: var(--color-light-100);
  background-color: rgba(126, 34, 206, 0.15);
  border-left: 3px solid var(--color-primary);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.95)
    ),
    url("../images/hero.webp") no-repeat center center;
  background-size: cover;
  padding: 15.5rem 0 15rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(126, 34, 206, 0.15),
    transparent 70%
  );
  pointer-events: none; /* Allow clicks to pass through */
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237e22ce' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: animatePattern 60s linear infinite;
  pointer-events: none;
}

@keyframes animatePattern {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-light-200);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-section .flex {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-link {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

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

/* Section Headings */
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--color-light-200);
  max-width: 600px;
  margin: 0 auto;
}

/* Why Us Section */
.why-us-section {
  background-color: var(--color-dark-800);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    var(--color-secondary),
    var(--color-tertiary),
    var(--color-secondary),
    var(--color-primary),
    transparent
  );
}

/* Feature Cards */
.feature-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(126, 34, 206, 0.3);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(126, 34, 206, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.feature-icon-wrapper::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper::after {
  opacity: 1;
}

.feature-icon-wrapper i {
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
  transform: scale(1.2);
  color: #fff;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-light-100);
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
}

.feature-description {
  color: var(--color-light-200);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* VIP Banner */
.vip-banner {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.05),
    rgba(219, 39, 119, 0.05)
  );
  border-radius: 1rem;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.vip-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(251, 191, 36, 0.1),
    transparent 60%
  );
  opacity: 0.5;
}

.vip-content {
  position: relative;
  z-index: 1;
}

.vip-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(
    135deg,
    var(--color-vip-gold),
    var(--color-tertiary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.vip-description {
  color: var(--color-light-200);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

.btn-vip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--color-vip-gold), #f59e0b);
  color: var(--color-dark-900);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--color-vip-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.btn-vip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--color-vip-glow);
}

.btn-vip i {
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.btn-vip:hover i {
  transform: rotate(20deg);
}

/* Plans Section */
.plans-section {
  background-color: var(--color-dark-900);
  position: relative;
  overflow: hidden;
}

.plans-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    var(--color-secondary),
    var(--color-tertiary),
    var(--color-secondary),
    var(--color-primary),
    transparent
  );
}

/* Pricing Cards */
.pricing-card {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.8),
    rgba(15, 23, 42, 0.8)
  );
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(126, 34, 206, 0.3);
}

.pricing-card.recommended {
  border: 1px solid var(--color-vip-gold);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(251, 191, 36, 0.1);
  z-index: 1;
}

.pricing-card.recommended:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 15px 60px rgba(251, 191, 36, 0.2);
}

.recommended-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--color-vip-gold),
    var(--color-tertiary)
  );
  color: var(--color-dark-900);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 0.75rem;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(251, 191, 36, 0.2);
}

.vip-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-vip-gold), #f59e0b);
  color: var(--color-dark-900);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(251, 191, 36, 0.2);
}

.pricing-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.1);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-light-100);
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
}

.pricing-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 0.25rem;
  color: var(--color-light-100);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.pricing-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--color-light-100),
    var(--color-light-300)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--color-light-300);
}

.pricing-features {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: var(--color-light-200);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--color-success);
  font-size: 1.1rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.pricing-action {
  padding: 0 2rem 2rem;
  text-align: center;
}

.btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.75rem;
  background-color: var(--color-dark-800);
  color: var(--color-light-100);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-pricing:hover::before {
  width: 100%;
}

.btn-pricing:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(126, 34, 206, 0.2);
}

.btn-pricing-recommended {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(
    135deg,
    var(--color-vip-gold),
    var(--color-tertiary)
  );
  color: var(--color-dark-900);
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
}

.btn-pricing-recommended:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.3);
}

.plan-note {
  color: var(--color-light-300);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
}

.highlight {
  color: var(--color-light-100);
  font-weight: 600;
}

.contact-link {
  color: var(--color-secondary);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.contact-link:hover::after {
  width: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
  .pricing-card.recommended {
    transform: scale(1);
  }

  .pricing-card.recommended:hover {
    transform: translateY(-10px);
  }

  .pricing-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .pricing-features,
  .pricing-action {
    padding: 1.5rem;
  }

  .pricing-number {
    font-size: 3rem;
  }
}

/* Statistics Section */
.stats-section {
  position: relative;
  padding: 100px 0;
  background-color: #0f1923;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/stats-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.stats-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.stats-section .section-title h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.stats-section .section-title p {
  color: #a3b1c2;
  font-size: 18px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  font-size: 28px;
  color: var(--color-primary);
  margin-right: 20px;
  background: rgba(126, 34, 206, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
}

.stat-number span {
  margin-right: 5px;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a3b1c2;
  margin-bottom: 10px;
}

.stat-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  width: 0;
  transition: width 1.5s ease-in-out;
}

.stat-time {
  font-size: 13px;
  color: #63b3ed;
  margin-top: 5px;
}

.stat-dot {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  margin-top: 10px;
  position: relative;
}

.stat-dot:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #10b981;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .stat-box {
    padding: 20px;
  }

  .stat-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
  }

  .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* Supported Games Section */
.game-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-icon-wrapper:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(126, 34, 206, 0.3);
}

.game-icon {
  width: 100%;
  max-width: 80px;
  height: auto;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(126, 34, 206, 0.3));
}

.game-icon-wrapper:hover .game-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(126, 34, 206, 0.5));
}

.game-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-light-100);
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .game-icon {
    max-width: 70px;
  }

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

@media (max-width: 576px) {
  .game-icon {
    max-width: 60px;
  }
}

/* Footer Section */
.footer-section {
  position: relative;
  background-color: #0a101e;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    var(--color-secondary),
    var(--color-tertiary),
    var(--color-secondary),
    var(--color-primary),
    transparent
  );
  opacity: 0.7;
  z-index: 2;
}

.footer-main {
  position: relative;
  z-index: 1;
}

.footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23333' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.footer-col {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-light-100);
  text-transform: uppercase;
}

.footer-logo i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: var(--color-primary);
  background: rgba(126, 34, 206, 0.1);
  padding: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(126, 34, 206, 0.3);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-light-100);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-light-200);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 0.5rem;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-light-100);
  transform: translateX(5px);
}

.footer-links a:hover i {
  color: var(--color-primary);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-light-200);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(126, 34, 206, 0.3);
}

.newsletter-form {
  margin-top: 1.25rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: var(--color-light-100);
  outline: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding-right: 3rem;
}

.newsletter-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(126, 34, 206, 0.2);
}

.newsletter-input::placeholder {
  color: var(--color-light-300);
}

.newsletter-button {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  color: var(--color-secondary);
  transform: translateY(-50%) scale(1.1);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  color: var(--color-light-300);
  font-size: 0.95rem;
}

.developer-credit {
  color: var(--color-light-300);
  font-size: 0.95rem;
  text-align: center;
}

.dev-link {
  color: var(--color-secondary);
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.dev-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.dev-link:hover {
  color: var(--color-primary);
}

.dev-link:hover::after {
  width: 100%;
  background-color: var(--color-primary);
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-links a {
  color: var(--color-light-300);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--color-light-100);
}

.separator {
  color: var(--color-light-300);
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-col {
    margin-bottom: 2.5rem;
  }

  .copyright,
  .developer-credit {
    text-align: center;
    margin-bottom: 1rem;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }
}

/* Media queries for navbar adjustments */
@media (max-width: 768px) {
  .navbar-container {
    height: 70px;
  }

  .navbar-container .max-w-7xl {
    padding: 0 1.5rem;
  }

  .logo-text {
    font-size: 1.6rem;
  }

  .logo-text i {
    margin-right: 0.75rem;
    font-size: 1.4rem;
  }

  .mobile-menu-button {
    margin-left: 1rem;
    padding: 0.75rem;
    font-size: 1.25rem;
  }

  .mobile-menu {
    margin: 0.75rem;
    width: calc(100% - 1.5rem);
  }

  .mobile-menu .px-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-link-mobile {
    padding: 0.9rem 1rem;
    margin-bottom: 0.25rem;
  }

  .nav-link-mobile:last-child {
    margin-bottom: 0;
  }
}

/* VIP Advertising Section */
.vip-advertising-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  position: relative;
  overflow: hidden;
}

.vip-advertising-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
}

.vip-advertising-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(126, 34, 206, 0.3);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(126, 34, 206, 0.15);
}

.vip-advertising-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(126, 34, 206, 0.1), transparent 70%);
  pointer-events: none;
}

.vip-card-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.vip-crown-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(126, 34, 206, 0.4);
}

.vip-card-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-light-100);
  margin-bottom: 0.5rem;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
}

.vip-card-subtitle {
  font-size: 1.1rem;
  color: var(--color-light-300);
}

.vip-card-content {
  position: relative;
  z-index: 1;
}

.vip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vip-benefit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 34, 206, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-benefit-item:hover {
  background: rgba(126, 34, 206, 0.1);
  border-color: rgba(126, 34, 206, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(126, 34, 206, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.2), rgba(6, 182, 212, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.vip-benefit-item:hover .benefit-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  transform: scale(1.1);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-light-100);
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 0.95rem;
  color: var(--color-light-300);
  line-height: 1.6;
}

.vip-pricing-section {
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(126, 34, 206, 0.2);
}

.pricing-box {
  margin-bottom: 2rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-light-100);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Rajdhani", "Inter", "Segoe UI", sans-serif;
}

.price-period {
  font-size: 1.1rem;
  color: var(--color-light-300);
}

.price-description {
  color: var(--color-light-300);
  font-size: 1rem;
}

.payment-info {
  margin-bottom: 2rem;
}

.payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-light-100);
  margin-bottom: 0.75rem;
}

.payment-method i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

.payment-description {
  color: var(--color-light-300);
  font-size: 0.95rem;
}

.btn-vip-advertising {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(126, 34, 206, 0.4);
}

.btn-vip-advertising::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-vip-advertising:hover::before {
  width: 100%;
}

.btn-vip-advertising:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(126, 34, 206, 0.6);
}

.btn-vip-advertising i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-vip-advertising:hover i {
  transform: scale(1.2);
}

.vip-card-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(126, 34, 206, 0.2);
  position: relative;
  z-index: 1;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-light-200);
  font-weight: 500;
}

.footer-info-item i {
  color: var(--color-success);
  font-size: 1.25rem;
}

.vip-faq-section {
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(126, 34, 206, 0.2);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(126, 34, 206, 0.08);
  border-color: rgba(126, 34, 206, 0.4);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-light-100);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--color-light-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* VIP badge hover tooltip (for VIP SERVER label in servers.php) */
.vip-hover-tooltip {
  position: relative;
  cursor: help;
}

.vip-hover-tooltip-content {
  position: absolute;
  top: 115%;
  right: 0;
  background-color: #0f172a;
  color: #e2e8f0;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  border: 1px solid #334155;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.12s ease-out, visibility 0.12s ease-out, transform 0.12s ease-out;
  pointer-events: none;
}

.vip-hover-tooltip-content::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 12px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #0f172a transparent;
}

.vip-hover-tooltip:hover .vip-hover-tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Profile Dropdown Styles */
.nav-profile-dropdown {
  position: relative;
}

.nav-profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(126, 34, 206, 0.3);
  border-radius: 0.75rem;
  color: #f1f5f9;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-profile-trigger:hover {
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.2), rgba(6, 182, 212, 0.1));
  border-color: rgba(126, 34, 206, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(126, 34, 206, 0.2);
}

.nav-profile-trigger.active {
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.25), rgba(6, 182, 212, 0.15));
  border-color: rgba(126, 34, 206, 0.6);
}

.nav-profile-avatar-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #7e22ce, #06b6d4);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.3);
}

.nav-profile-username {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f1f5f9;
}

.nav-profile-chevron {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: #94a3b8;
}

.nav-profile-trigger.active .nav-profile-chevron {
  transform: rotate(180deg);
  color: #7e22ce;
}

.nav-profile-menu-container {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 320px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(126, 34, 206, 0.3);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(126, 34, 206, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-profile-menu-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(126, 34, 206, 0.2);
}

.nav-profile-avatar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #7e22ce, #06b6d4);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 8px 16px rgba(126, 34, 206, 0.4);
}

.nav-profile-info {
  flex: 1;
}

.nav-profile-username-header {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.25rem;
}

.nav-profile-status {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-profile-status::before {
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.nav-profile-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 34, 206, 0.3), transparent);
}

.nav-profile-items {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-profile-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.nav-profile-item:hover {
  background: rgba(126, 34, 206, 0.15);
  border-color: rgba(126, 34, 206, 0.3);
  color: #f1f5f9;
  transform: translateX(4px);
}

.nav-profile-item.nav-profile-item-logout:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
}

.nav-profile-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(126, 34, 206, 0.1);
  color: #7e22ce;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.nav-profile-item:hover .nav-profile-item-icon {
  background: rgba(126, 34, 206, 0.25);
  transform: scale(1.1);
}

.nav-profile-item.nav-profile-item-logout:hover .nav-profile-item-icon {
  background: rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

.nav-profile-item-content {
  flex: 1;
}

.nav-profile-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.25rem;
}

.nav-profile-item-desc {
  font-size: 0.8rem;
  color: #94a3b8;
}

.nav-profile-item-arrow {
  font-size: 0.9rem;
  color: #7e22ce;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s ease;
}

.nav-profile-item:hover .nav-profile-item-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #7e22ce;
}

.nav-profile-item.nav-profile-item-logout:hover .nav-profile-item-arrow {
  color: #ef4444;
}

/* ============================================
   ADD SERVER PAGE - PROFESSIONAL STYLING
   ============================================ */

/* Add Server Section */
.add-server-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.add-server-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(126, 34, 206, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Add Server Card */
.add-server-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #1e293b 0%, #1a1f35 100%);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.add-server-card:hover {
  border-color: rgba(126, 34, 206, 0.3);
  box-shadow: 0 20px 60px rgba(126, 34, 206, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Add Server Header */
.add-server-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.add-server-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  border: 2px solid rgba(126, 34, 206, 0.3);
  border-radius: 50%;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.add-server-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, #7e22ce 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.add-server-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.add-server-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 400;
}

/* Form Styles */
.add-server-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label i {
  margin-right: 0.5rem;
  color: #7e22ce;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1a1f35 100%);
  border: 1px solid rgba(51, 65, 85, 0.6);
  color: #f1f5f9;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #7e22ce;
  box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.1),
              inset 0 1px 2px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #1a1f35 0%, #0f172a 100%);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #64748b;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(126, 34, 206, 0.4);
  background: linear-gradient(135deg, #1a1f35 0%, #0f172a 100%);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Monaco', 'Courier New', monospace;
}

.form-help {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Select Dropdown */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: #1e293b;
  color: #f1f5f9;
  padding: 0.5rem;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(126, 34, 206, 0.05) 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
}

.info-box-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #7e22ce;
  margin-top: 0.125rem;
}

.info-box-content {
  flex: 1;
}

.info-box-title {
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.info-box-list {
  list-style: disc;
  list-style-position: inside;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
}

.info-box-list li {
  margin-bottom: 0.25rem;
}

/* Alert Messages */
.alert {
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #86efac;
}

.alert-success i {
  color: #10b981;
  font-size: 1.25rem;
}

.alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-error i {
  color: #ef4444;
  font-size: 1.25rem;
}

.alert-error ul {
  list-style: disc;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.alert-error li {
  margin-bottom: 0.25rem;
}

/* Button Group */
.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-add-server {
  flex: 1;
  background: linear-gradient(135deg, #7e22ce 0%, #9333ea 100%);
  color: #ffffff;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
}

.btn-add-server:hover {
  background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
  box-shadow: 0 8px 25px rgba(126, 34, 206, 0.4);
  transform: translateY(-2px);
}

.btn-add-server:active {
  transform: translateY(0);
}

.btn-cancel {
  flex: 1;
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
  color: #f1f5f9;
  border: 1px solid rgba(51, 65, 85, 0.5);
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-cancel:hover {
  background: linear-gradient(135deg, #475569 0%, #64748b 100%);
  border-color: rgba(51, 65, 85, 0.7);
  transform: translateY(-2px);
}

/* Footer Info */
.add-server-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
  text-align: center;
}

.add-server-footer-text {
  font-size: 0.875rem;
  color: #64748b;
}

.add-server-footer-link {
  color: #7e22ce;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.add-server-footer-link:hover {
  color: #06b6d4;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .add-server-title {
    font-size: 1.875rem;
  }

  .add-server-subtitle {
    font-size: 0.95rem;
  }

  .button-group {
    flex-direction: column;
  }

  .btn-add-server,
  .btn-cancel {
    width: 100%;
  }

  .add-server-card {
    border-radius: 12px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .info-box {
    flex-direction: column;
  }

  .info-box-icon {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .add-server-section {
    padding: 1rem;
  }

  .add-server-card {
    padding: 1.5rem;
  }

  .add-server-title {
    font-size: 1.5rem;
  }

  .add-server-icon {
    width: 56px;
    height: 56px;
  }

  .add-server-icon i {
    font-size: 1.75rem;
  }

  .form-group {
    gap: 0.375rem;
  }

  .form-label {
    font-size: 0.8rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.75rem 0.875rem;
    font-size: 16px;
  }

  .button-group {
    gap: 0.5rem;
  }

  .info-box {
    padding: 0.875rem;
  }

  .info-box-title {
    font-size: 0.875rem;
  }

  .info-box-list {
    font-size: 0.8rem;
  }
}

/* ============================================
   My Servers Page - Unique Classes
   ============================================ */

.my-servers-table {
  border-collapse: collapse;
}

.my-servers-header {
  border-bottom: 2px solid #334155;
  background: linear-gradient(135deg, #0f172a 0%, #1a2332 100%);
}

.my-servers-th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.my-servers-th.text-right {
  text-align: right;
}

.my-servers-row {
  border-bottom: 1px solid #334155;
  transition: all 0.3s ease;
  background-color: #1e293b;
}

.my-servers-row:hover {
  background-color: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.my-servers-row-vip {
  border-bottom: 1px solid #334155;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #1e293b 0%, rgba(217, 119, 6, 0.1) 100%);
  border-left: 4px solid #d97706;
}

.my-servers-row-vip:hover {
  background: linear-gradient(90deg, #0f172a 0%, rgba(217, 119, 6, 0.15) 100%);
  box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.2);
}

.my-servers-td {
  padding: 1.25rem 1.5rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
  vertical-align: middle;
}

.my-servers-ip-link {
  color: #3b82f6;
  font-weight: 500;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.my-servers-ip-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.my-servers-vip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
  height: fit-content;
  line-height: 1;
}

.my-servers-game-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.my-servers-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.my-servers-btn-edit,
.my-servers-btn-delete {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.my-servers-btn-edit {
  background-color: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  color: #60a5fa;
}

.my-servers-btn-edit:hover {
  background-color: rgba(59, 130, 246, 0.25);
  color: #93c5fd;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}

.my-servers-btn-delete {
  background-color: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #f87171;
}

.my-servers-btn-delete:hover {
  background-color: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .my-servers-th,
  .my-servers-td {
    padding: 0.875rem 0.75rem;
    font-size: 0.8125rem;
  }

  .my-servers-th {
    font-size: 0.75rem;
  }

  .my-servers-actions {
    gap: 0.5rem;
  }

  .my-servers-btn-edit,
  .my-servers-btn-delete {
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
  }

  .my-servers-ip-link {
    font-size: 0.75rem;
  }

  .my-servers-game-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.625rem;
  }

  .my-servers-vip-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ============================================
   Server Info Page - VIP Styling
   ============================================ */

.serverinfo-section {
  background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.serverinfo-section-vip {
  background: 
    linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(245, 158, 11, 0.04) 25%, transparent 50%, rgba(217, 119, 6, 0.04) 75%, rgba(217, 119, 6, 0.08) 100%),
    linear-gradient(to bottom, #0f172a, #1e293b);
  position: relative;
}

.serverinfo-header {
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.serverinfo-header-vip {
  background: linear-gradient(135deg, #1e293b 0%, rgba(217, 119, 6, 0.15) 100%);
  border: 2px solid #d97706;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(217, 119, 6, 0.2), 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.serverinfo-header-vip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.serverinfo-vip-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #ffffff;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.serverinfo-vip-badge-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.625rem;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #ffffff;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
  height: fit-content;
  line-height: 1;
}

/* VIP Section Styling */
.serverinfo-vip-section {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.1);
}

.serverinfo-vip-section h2 {
  color: #f59e0b;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.serverinfo-vip-section i {
  color: #ffc787;
}

/* Discord Contact Link in Footer */
.discord-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5865f2;
  transition: all 0.3s ease;
  font-weight: 500;
}

.discord-contact-link:hover {
  color: #7289da;
  transform: translateX(4px);
}

.discord-badge {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.05) 100%);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.discord-badge-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #5865f2;
  font-weight: 600;
  font-size: 0.95rem;
}

.discord-badge-content i {
  font-size: 1.2rem;
}

/* VIP Page Styles */
.server-item {
  transition: all 0.3s ease;
}

.server-item:hover {
  background-color: #1a2744 !important;
  border-color: #f59e0b;
}

.plan-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  transition: left 0.5s ease;
}

.plan-card:hover {
  border-color: #f59e0b !important;
  background-color: rgba(15, 23, 42, 0.8) !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

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

.plan-card.selected {
  border-color: #f59e0b !important;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

/* Loading Spinner Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .serverinfo-header,
  .serverinfo-header-vip {
    padding: 1rem;
  }

  .serverinfo-vip-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.625rem;
  }
}
