:root {
  --bg-primary: #04060f;
  --bg-card: rgba(14, 22, 46, 0.85);
  --accent-cyan: #00f0ff;
  --accent-magenta: #ff007f;
  --accent-gold: #ffc700;
  --accent-green: #00ff88;
  --text-main: #f0f6ff;
  --text-muted: #8a9bc0;
  --border-neon: rgba(0, 240, 255, 0.3);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(ellipse at 10% 10%, rgba(0, 240, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(255, 0, 127, 0.12) 0%, transparent 50%);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.page-container {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header Navbar */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
  position: sticky;
  top: 16px;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-group h1 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 10px;
  font-family: var(--font-heading);
  color: var(--accent-cyan);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

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

.nav-links .nav-privacy {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Hero Section */
.hero-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-neon);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  align-items: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.6);
}

.badge-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-magenta);
  background: rgba(255, 0, 127, 0.12);
  border: 1px solid var(--accent-magenta);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 14px;
}

.glow-text {
  color: var(--accent-cyan);
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), #0072ff);
  color: #04060f;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
}

.hero-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-frame {
  background: rgba(4, 6, 15, 0.8);
  border: 1px solid var(--accent-cyan);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.preview-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-top: 8px;
  letter-spacing: 1.5px;
}

/* Sections */
.section-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  color: #fff;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--text-muted);
  padding: 10px 14px;
  text-align: center;
}

/* Controls Section */
.controls-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: 16px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.control-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.key-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--accent-cyan);
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
}

.key-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Content Box (Privacy Page) */
.content-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-neon);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.5);
}

.doc-header h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.doc-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.doc-meta strong {
  color: #fff;
}

.divider {
  border: none;
  border-top: 1px solid var(--border-neon);
  opacity: 0.4;
}

.policy-section h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.policy-section p {
  color: var(--text-main);
  margin-bottom: 10px;
}

.highlight-box {
  background: rgba(0, 240, 255, 0.08);
  border-left: 4px solid var(--accent-cyan);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  margin: 12px 0;
}

.policy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-section li {
  position: relative;
  padding-left: 20px;
  color: var(--text-main);
}

.policy-section li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 18px;
  line-height: 1;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.data-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: 12px;
}

.data-card h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}

.data-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.link-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-cyan), #0072ff);
  color: #04060f;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.footer-right {
  display: flex;
  gap: 16px;
}

.footer-right a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 11px;
}

@media (max-width: 768px) {
  .hero-card {
    grid-template-columns: 1fr;
  }
  .features-grid, .gallery-grid, .controls-card, .data-grid {
    grid-template-columns: 1fr;
  }
}
