/* index.css for elvariscope.com */
:root {
  
  --bg: #070913;
  --bg-alt: #0d1122;
  --surface: #12182e;
  --surface-soft: #1a2340;
  --border: rgba(0, 245, 255, 0.2);
  --border-hover: rgba(168, 85, 247, 0.45);
  --text: #eef5f7;
  --muted: #8c9cb6;
  --primary: #00f5ff;      /* Cyan */
  --primary-strong: #ffffff;
  --success: #a855f7;      /* Purple */
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 20px rgba(0, 245, 255, 0.35);
  --shadow-mint: 0 0 20px rgba(168, 85, 247, 0.25);
  --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.95);
  --gradient-gold: linear-gradient(135deg, #00f5ff 0%, #a855f7 100%);
  --gradient-mint: linear-gradient(160deg, #a855f7 0%, #00f5ff 100%);
    
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background-color: var(--bg);
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  background-attachment: fixed;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 245, 255, 0.12) 0%, transparent 65%),
    linear-gradient(var(--bg), var(--bg));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(0, 245, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 245, 255, 0.02) 1px, transparent 1px);
  z-index: -1;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.25);
}

.muted {
  color: var(--muted);
}

/* Utilities */
.glass {
  background: rgba(13, 17, 31, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


/* Classic Sticky Top Header */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(7, 9, 19, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: #fff;
}
.logo-brand-text {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
}
.desktop-nav {
  display: flex;
  gap: 20px;
}
.nav-link {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  transition: all 0.2s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  text-shadow: 0 0 8px var(--primary);
}
.btn-action-glow {
  background: var(--gradient-gold);
  color: #000;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-glow);
}
.btn-action-glow:hover {
  transform: translateY(-1px);
}
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
}
.hamburger-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: rgba(7, 9, 19, 0.98);
  border-left: 1px solid var(--border);
  z-index: 1000;
  padding: 30px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open {
  right: 0;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.close-drawer {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer-links a {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .desktop-nav,
  .btn-action-glow {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
}
    

/* Main Content */
.main-content {
  min-height: 80vh;
  padding-bottom: 120px;
}

/* Footer */
.footer-main {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 100px;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand .footer-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary);
}

.footer-brand .footer-disclaimer {
  color: var(--muted);
  margin-top: 10px;
}

.footer-links-grid {
  display: contents;
}

.footer-group h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-group a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.badge-18 {
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
}

.pgf-warning {
  flex: 1;
  font-size: 0.8rem;
  color: var(--muted);
}

.pgf-warning a {
  color: var(--primary);
  text-decoration: underline;
}

.copyright {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Age Verification Overlay */
#age-verification-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.age-dialog {
  width: min(500px, 100% - 40px);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
}

.age-dialog h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
}

.age-dialog h3 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
}

.age-dialog p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Cookie Consent Overlay */
#cookie-consent-overlay {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 9999;
  display: none;
}

.cookie-banner {
  padding: 20px;
  max-width: 400px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}
