:root {
  --primary-bg: #0f0a1a;
  --secondary-bg: #1a1530;
  --accent-gold: #ffd700;
  --accent-purple: #9d4edd;
  --accent-blue: #3a86ff;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --border-color: rgba(157, 78, 221, 0.3);
  --glow-color: rgba(255, 215, 0, 0.2);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background: rgba(26, 21, 48, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.star-icon {
  font-size: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-gold);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 21, 48, 1) 0%, rgba(157, 78, 221, 0.1) 100%);
  border-bottom: 1px solid var(--border-color);
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.stars::before,
.stars::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 50px 50px 0 var(--accent-gold), 100px 100px 0 var(--accent-blue), 150px 50px 0 var(--accent-purple),
    200px 150px 0 var(--accent-gold), 250px 100px 0 var(--accent-blue), 300px 200px 0 var(--accent-purple);
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
  50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple));
  color: var(--primary-bg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
}

.btn-secondary:hover {
  background: var(--accent-blue);
  color: var(--primary-bg);
  transform: translateY(-3px);
}

/* Server Info */
.server-info {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(26, 21, 48, 0.5) 0%, rgba(157, 78, 221, 0.05) 100%);
  border-bottom: 1px solid var(--border-color);
}

.server-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--accent-gold);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: rgba(157, 78, 221, 0.1);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(157, 78, 221, 0.2);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.info-card h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Owner Messages */
.owner-messages {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.owner-messages h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--accent-gold);
}

.messages-grid {
  display: grid;
  gap: 2rem;
}

.message-card {
  background: rgba(26, 21, 48, 0.6);
  border-left: 4px solid var(--accent-gold);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.message-card:hover {
  background: rgba(26, 21, 48, 0.8);
  border-left-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.message-author {
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.message-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Features */
.features {
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(157, 78, 221, 0.05) 0%, rgba(26, 21, 48, 0.5) 100%);
  border-bottom: 1px solid var(--border-color);
}

.features h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--accent-gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(157, 78, 221, 0.1);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(157, 78, 221, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(58, 134, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
}

/* Rules Section */
.rules-section {
  padding: 4rem 0;
}

.rules-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.intro-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.rules-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.rule-card {
  background: rgba(26, 21, 48, 0.6);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.rule-card:hover {
  background: rgba(26, 21, 48, 0.8);
  border-color: var(--accent-purple);
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.rule-card h2 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.rule-items {
  display: grid;
  gap: 1rem;
}

.rule-item {
  display: flex;
  gap: 1rem;
  color: var(--text-secondary);
}

.rule-item .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.discord-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.discord-links a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.discord-links a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.punishments {
  background: rgba(157, 78, 221, 0.1);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
}

.punishments h2 {
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

.punishment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.punishment-item {
  background: rgba(26, 21, 48, 0.6);
  border-left: 4px solid var(--accent-purple);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.punishment-level {
  color: var(--accent-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.warning-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

.services-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.services-intro {
  background: rgba(157, 78, 221, 0.1);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.services-intro h2 {
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.intro-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.intro-content p {
  margin-bottom: 0.8rem;
}

.restrictions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.restrictions h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.restrictions ul {
  list-style: none;
  color: var(--text-secondary);
}

.restrictions li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.restrictions li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ff4444;
}

/* Service Categories */
.services-categories {
  display: grid;
  gap: 3rem;
}

.service-category {
  margin-bottom: 2rem;
  background: rgba(26, 21, 48, 0.4);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-category:hover {
  background: rgba(26, 21, 48, 0.6);
  border-color: var(--accent-purple);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.2);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 1rem;
}

.category-icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
}

.category-header h2 {
  color: var(--accent-gold);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
}

.service-category .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-category .service-card {
  background: rgba(157, 78, 221, 0.1);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.service-category .service-card:hover {
  background: rgba(157, 78, 221, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(58, 134, 255, 0.2);
}

.service-category .service-card h3 {
  color: var(--accent-blue);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.service-category .service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Survey Section */
.survey-section {
  padding: 4rem 0;
}

.survey-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.survey-intro {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.survey-container {
  background: rgba(26, 21, 48, 0.6);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  overflow: hidden;
}

.survey-placeholder {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.survey-placeholder p:first-child {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Perks Section */
.perks-section {
  padding: 4rem 0;
}

.perks-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.perks-intro {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.perk-tier {
  background: rgba(26, 21, 48, 0.6);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.perk-tier:hover {
  background: rgba(26, 21, 48, 0.8);
  border-color: var(--accent-purple);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.2);
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1rem;
}

.tier-icon {
  font-size: 2rem;
}

.tier-header h2 {
  color: var(--accent-gold);
  font-family: 'Orbitron', sans-serif;
}

.tier-perks {
  display: grid;
  gap: 1.5rem;
}

.perk-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.perk-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.perk-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Servers Section */
.servers-section {
  padding: 4rem 0;
}

.servers-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.servers-intro {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.server-card {
  background: rgba(26, 21, 48, 0.6);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.server-card:hover {
  background: rgba(26, 21, 48, 0.8);
  border-color: var(--accent-blue);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(58, 134, 255, 0.2);
}

.server-card h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

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

.server-card a {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: var(--primary-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.server-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(58, 134, 255, 0.4);
}

/* Footer */
.footer {
  background: rgba(26, 21, 48, 0.9);
  border-top: 2px solid var(--border-color);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-secondary);
}

.footer p {
  margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .info-grid,
  .features-grid,
  .services-grid,
  .servers-grid {
    grid-template-columns: 1fr;
  }

  .service-category .services-grid {
    grid-template-columns: 1fr;
  }
}

/* About section heading should match Server Information */
.about-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  text-align: center;
}

/* Hide inner author/title if present */
.about-section .message-author {
  display: none !important;
}

/* Ensure the message text uses primary/white color */
.about-section .message-content {
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1.05rem;
}
/* Force About Us heading to match Server Information and hide inner blue label */
.about-section > .container > h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold) !important;   /* yellow */
  text-align: center;
}

.about-section .message-author {
  display: none !important;               /* hide inner blue title if present */
}

.about-section .message-content {
  color: var(--text-primary) !important;  /* white text */
  line-height: 1.8;
  font-size: 1.05rem;
}
