* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #005fdb;
  --primary-purple: #7223f2;
  --dark-bg: #0a0a0f;
  --card-bg: rgba(15, 15, 25, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #b8b8d1;
  --success: #00ff88;
  --shadow-glow: 0 0 40px rgba(0, 95, 219, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Minecraft-themed background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="%23ffffff" opacity="0.02"/><rect x="20" width="20" height="20" fill="%23000000" opacity="0.02"/><rect x="40" width="20" height="20" fill="%23ffffff" opacity="0.02"/><rect x="60" width="20" height="20" fill="%23000000" opacity="0.02"/><rect x="80" width="20" height="20" fill="%23ffffff" opacity="0.02"/><rect y="20" width="20" height="20" fill="%23000000" opacity="0.02"/><rect x="20" y="20" width="20" height="20" fill="%23ffffff" opacity="0.02"/><rect x="40" y="20" width="20" height="20" fill="%23000000" opacity="0.02"/><rect x="60" y="20" width="20" height="20" fill="%23ffffff" opacity="0.02"/><rect x="80" y="20" width="20" height="20" fill="%23000000" opacity="0.02"/></svg>');
  background-blend-mode: overlay;
  opacity: 0.15;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(0, 95, 219, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(114, 35, 242, 0.15) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo-text {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 95, 219, 0.5);
}

/* Added logo image styling */
.logo-img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 95, 219, 0.3));
  animation: logoFloat 3s ease-in-out infinite;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
  transition: width 0.3s ease;
}

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

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.glow-text {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 95, 219, 0.6));
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: drop_shadow(0 0 30px rgba(0, 95, 219, 0.6));
  }
  50% {
    filter: drop_shadow(0 0 50px rgba(114, 35, 242, 0.8));
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* Server Info - Glassmorphism */
.server-info {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-glow);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
  }
}

.ip-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ip-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ip-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ip-address {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(0, 95, 219, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 95, 219, 0.6);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 95, 219, 0.5);
  box-shadow: 0 10px 30px rgba(0, 95, 219, 0.3);
}

.stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
}

/* VIP Cards */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vip-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.vip-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 95, 219, 0.5);
  box-shadow: 0 20px 50px rgba(0, 95, 219, 0.3);
}

.vip-card.featured {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 0 40px rgba(0, 95, 219, 0.4);
}

.vip-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 95, 219, 0.3), rgba(114, 35, 242, 0.3));
  border: 1px solid var(--primary-blue);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.vip-badge.premium {
  background: linear-gradient(135deg, rgba(0, 95, 219, 0.5), rgba(114, 35, 242, 0.5));
  border-color: var(--primary-purple);
}

.vip-badge.elite {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 140, 0, 0.3));
  border-color: #ffd700;
}

.popular-tag {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 95, 219, 0.5);
}

.vip-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.vip-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-price span {
  font-size: 1rem;
  color: var(--text-secondary);
}

.vip-features {
  list-style: none;
  margin-bottom: 2rem;
}

.vip-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Purchase Info Section */
.purchase-info {
  max-width: 700px;
  margin: 4rem auto 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}

.purchase-info h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purchase-info ol {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  line-height: 2;
}

.purchase-info ol li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.purchase-info ol li::marker {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Rules */
.rules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.rule-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.rule-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 95, 219, 0.5);
  box-shadow: 0 10px 30px rgba(0, 95, 219, 0.2);
}

.rule-number {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.rule-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.rule-description {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Map */
.map-container {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  color: var(--text-secondary);
  text-align: center;
  padding: 2rem;
}

.map-placeholder svg {
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.map-placeholder h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.map-placeholder code {
  background: rgba(0, 95, 219, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: "Courier New", monospace;
  margin-top: 1rem;
}

.map-container iframe {
  width: 100%;
  height: 600px;
  border: none;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 95, 219, 0.3);
}

.contact-card.discord:hover {
  border-color: #5865f2;
  box-shadow: 0 20px 50px rgba(88, 101, 242, 0.4);
}

.contact-card.email:hover {
  border-color: var(--primary-blue);
}

.contact-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 95, 219, 0.5);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Contact Form */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem;
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(0, 95, 219, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 1rem;
  border-radius: 12px;
  color: var(--success);
  font-weight: 600;
  margin-top: 1rem;
}

.form-success.show {
  display: flex;
}

/* Footer */
.footer {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    width: 100%;
    padding: 2rem;
    gap: 1rem;
    transition: left 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .vip-grid {
    grid-template-columns: 1fr;
  }

  .rules-container {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .contact-form-container {
    padding: 2rem;
  }
}

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

  .ip-container {
    flex-direction: column;
  }

  .server-info {
    padding: 1.5rem;
  }
}

/* AdminTeam Section */
.admin-sections {
  margin-top: 3rem;
}

.admin-subsection {
  margin-bottom: 4rem;
}

.admin-subsection-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.owners-title {
  /* Owners section title styled in red */
  background: linear-gradient(135deg, #ff4444, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.admin-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 95, 219, 0.5);
  box-shadow: 0 20px 50px rgba(0, 95, 219, 0.3);
}

.owner-card {
  /* Owner cards have a red accent border on hover */
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.owner-card:hover {
  border-color: #ff4444;
  box-shadow: 0 20px 50px rgba(255, 68, 68, 0.3);
}

.admin-avatar {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.admin-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 2px solid var(--glass-border);
  transition: all 0.3s ease;
}

.admin-card:hover .admin-avatar img {
  border-color: rgba(0, 95, 219, 0.5);
  box-shadow: 0 0 20px rgba(0, 95, 219, 0.3);
}

.owner-card:hover .admin-avatar img {
  border-color: #ff4444;
  box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.admin-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.admin-role {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.owner-card .admin-role {
  /* Owner role text styled in red */
  color: #ff4444;
}

/* Responsive */
@media (max-width: 768px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}
