:root {
  --bg-color: #0a0b10;
  --surface-color: rgba(22, 27, 34, 0.7);
  --primary-color: #b388ff;
  --secondary-color: #ff80ab;
  --text-main: #ffffff;
  --text-muted: #8b949e;
  --accent-glow: rgba(179, 136, 255, 0.3);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 16, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.cta-button {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 136, 255, 0.5);
}

/* Hero Section */
.hero {
  padding: 200px 0 100px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(179, 136, 255, 0.15) 0%, transparent 70%);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Pricing Grid */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--surface-color);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
}

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

.package-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

.buy-btn {
  display: block;
  background: #3b82f6;
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  margin: 2rem 0;
  font-weight: 600;
}

.features-list {
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.features-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-list li::before {
  content: "✦";
  color: var(--primary-color);
}

/* Node Status */
.node-status {
  padding: 80px 0;
  background: rgba(179, 136, 255, 0.03);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.status-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ping {
  font-family: monospace;
  font-weight: bold;
}

.ping.good { color: #10b981; }
.ping.fair { color: #f59e0b; }

/* Article List */
.blog {
  padding: 100px 0;
}

.article-card {
  background: var(--surface-color);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-card h4 {
  margin-bottom: 0.5rem;
}

.article-card a {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  background: #000;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-links h5 {
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

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

.footer-links li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bottom-bar {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}
