/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --bg-color: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --gold-primary: #d4af37;
  --gold-secondary: #f3e5ab;
  --gold-dark: #aa8a29;
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --transition: all 0.3s ease;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-color);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--bg-color);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-weight: 600;
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--gold-primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-color) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.3"/></svg>') repeat;
  background-size: 50px 50px;
  animation: floatBg 20s linear infinite;
  opacity: 0.5;
}

@keyframes floatBg {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Sections General */
section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

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

.card {
  background: var(--bg-secondary);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* Status Section */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.status-item {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #4caf50;
}

.latency {
  color: #4caf50;
  font-weight: 700;
}

/* Pricing Section */
.pricing-card {
  background: var(--bg-secondary);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
}

.pricing-card.popular {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--bg-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price {
  font-size: 3rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin: 20px 0;
}

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

.pricing-features {
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.pricing-features li i {
  color: var(--gold-primary);
  margin-right: 10px;
}

/* Reviews */
.review-card {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 15px;
  font-style: italic;
  position: relative;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  font-style: normal;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-color);
  font-weight: 700;
  font-size: 1.2rem;
}

/* FAQ */
.faq-item {
  background: var(--bg-secondary);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 500px;
}

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

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 50px 20px 20px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

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

/* Responsive */
@media (max-width: 768px) {
  header { padding: 15px 20px; }
  nav { display: none; } /* Add a hamburger menu for full implementation */
  .hero h1 { font-size: 2.5rem; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-10px); }
}
