:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --accent-black: #2a2a2a;
  --gold: #FFD700;
  --dark-gold: #B8860B;
  --silver: #C0C0C0;
  --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500);
  --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  --shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.3);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: var(--primary-black);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  z-index: 1001;
  text-decoration: none;
}

.nav-brand span {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 1px;
}

.vip-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger .bar {
  width: 24px;
  height: 3px;
  background: var(--gold);
  margin: 3px 0;
  transition: 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Contact Hero Section */
.contact-hero {
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  padding: 120px 0 80px;
  text-align: center;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--gold);
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s infinite alternate;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: var(--silver);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Contact Main Section */
.contact-main {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

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

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.info-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.info-card p {
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(42, 42, 42, 0.8);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--primary-black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: rgba(45, 45, 45, 0.3);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--silver);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 50px;
}

.faq-item {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gold);
  font-weight: 600;
  background: rgba(42, 42, 42, 0.5);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.1);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--silver);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 200px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Footer */
.footer {
  background: var(--secondary-black);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--gold);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 20px;
  text-align: center;
  color: var(--silver);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
      padding: 10px 0;
  }

  .nav-container {
      padding: 0 10px;
  }

  .nav-brand {
      font-size: 1.2rem;
      z-index: 1003;
  }

  .nav-brand span {
      font-size: 1.2rem;
  }

  .vip-icon {
      width: 28px;
      height: 28px;
  }

  .hamburger {
      display: flex;
      z-index: 1003;
      cursor: pointer;
  }

  .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(15px);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 80px 20px 30px;
      gap: 20px;
      transition: right 0.4s ease;
      border-left: 2px solid rgba(255, 215, 0, 0.3);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
      z-index: 1002;
      overflow-y: auto;
  }

  .nav-links.active {
      right: 0;
  }

  .nav-links a {
      font-size: 1.2rem;
      padding: 18px 25px;
      border-radius: 15px;
      width: 90%;
      max-width: 300px;
      text-align: center;
      background: rgba(26, 26, 26, 0.9);
      border: 2px solid rgba(255, 215, 0, 0.3);
      transition: all 0.3s ease;
      justify-content: center;
      color: #ffffff;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 5px 0;
  }

  .nav-links a:hover,
  .nav-links a.active {
      background: rgba(255, 215, 0, 0.2);
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
      color: var(--gold);
  }

  body.nav-open {
      overflow: hidden !important;
      position: fixed !important;
      width: 100% !important;
      height: 100% !important;
  }

  .contact-title {
      font-size: 2.5rem;
  }

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

  .info-card {
      padding: 25px 20px;
  }

  .social-links {
      flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .contact-title {
      font-size: 2rem;
  }

  .contact-subtitle {
      font-size: 1rem;
      padding: 0 15px;
  }

  .info-card {
      padding: 20px 15px;
      margin-bottom: 15px;
  }

  .social-links {
      gap: 10px;
  }

  .social-link {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
  }

  .faq-question {
      padding: 20px;
      font-size: 0.95rem;
  }

  .faq-answer {
      font-size: 0.9rem;
  }

  .nav-links a {
      width: 180px;
      font-size: 1rem;
      padding: 12px 25px;
  }
}

@keyframes glow {
  from {
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  to {
      text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

/* Particles Background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  z-index: -1;
}