/* index.css for solviancrest.com */
:root {
  --bg: #07090c;
  --bg-alt: #0e1116;
  --surface: #151a22;
  --surface-soft: #202733;
  --border: rgba(0, 242, 254, 0.2);
  --border-hover: rgba(255, 0, 127, 0.45);
  --text: #eef2f7;
  --muted: #8b9cb4;
  --primary: #00f2fe;      /* Neon Cyan */
  --primary-strong: #ffffff;
  --success: #ff007f;      /* Neon Pink */
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 20px rgba(0, 242, 254, 0.35);
  --shadow-mint: 0 0 20px rgba(255, 0, 127, 0.25);
  --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.95);
  
  --gradient-gold: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --gradient-mint: linear-gradient(160deg, #ff007f 0%, #00f2fe 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, 242, 254, 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, 242, 254, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 242, 254, 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, 242, 254, 0.25);
}

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

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

/* Header */
.top-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.logo-brand-text .accent {
  color: var(--primary);
}

/* Navigation Dock */
.steampunk-dock-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.steampunk-dock-shell {
  display: flex;
  gap: 8px;
  background: rgba(14, 16, 22, 0.95);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.65rem;
  transition: all 0.3s ease;
  position: relative;
}

.dock-item:hover,
.dock-item.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.03);
}

.dock-item.active .gear-svg {
  /* No rotation for active icons */
}

.gear-container {
  position: relative;
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

.gear-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-label {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/* 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(7, 9, 12, 0.95);
  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: 2rem;
  color: var(--primary);
  margin: 0 0 10px;
}

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

.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;
  }
}
