/* 
 * 2026 Future-Minimalist Avant-Garde iGaming Theme
 * speel-nu.sbs - Standard of Elite Compliance & Premium Aesthetics
 * Color Palette: Deep Obsidian (#050505), Electric Cyan (#00f2ff), Muted Slate (#1a1a2e)
 */

@import url('https://fonts.googleapis.com/css2%2FPlus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;950&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --obsidian: #050505;
  --cyan: #00f2ff;
  --magenta: #f000ff;
  --cyan-glow: rgba(0, 242, 255, 0.4);
  --slate-muted: #1a1a2e;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(0, 242, 255, 0.2);
  --glass-bg: rgba(26, 26, 46, 0.45);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--obsidian);
}
::-webkit-scrollbar-thumb {
  background: var(--slate-muted);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

/* Living Background - Space Cyber Lounge */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--obsidian);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: -15%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.12) 0%, transparent 70%);
  z-index: -10;
  pointer-events: none;
  animation: floatSphere1 25s infinite alternate ease-in-out;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(240, 0, 255, 0.08) 0%, transparent 70%);
  z-index: -10;
  pointer-events: none;
  animation: floatSphere2 30s infinite alternate ease-in-out;
}

@keyframes floatSphere1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(12%, 8%) scale(1.15) rotate(180deg); }
  100% { transform: translate(-8%, -12%) scale(0.9) rotate(360deg); }
}

@keyframes floatSphere2 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(-15%, -10%) scale(1.1) rotate(-180deg); }
  100% { transform: translate(10%, 15%) scale(0.95) rotate(-360deg); }
}

/* Custom Typography & Typography Classes */
h1, h2, h3, h4, .font-heading {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
  font-weight: 700;
}

/* Neon Text Accents */
.text-cyan-neon {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.text-magenta-neon {
  color: var(--magenta);
  text-shadow: 0 0 10px rgba(240, 0, 255, 0.5);
}

/* Classy Frosted Glass elements */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass:hover {
  border-color: rgba(0, 242, 255, 0.15);
  box-shadow: 0 20px 48px 0 rgba(0, 242, 255, 0.05);
}

.glass-premium {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(5, 5, 8, 0.85) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

/* Custom interactive buttons - Cybernetic aesthetic */
.btn-cyber {
  background: linear-gradient(90deg, #00f2ff 0%, #00a2ff 100%);
  color: #050505;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 242, 255, 0.25);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-cyber::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-cyber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 255, 0.45);
}

.btn-cyber:hover::after {
  left: 100%;
}

.btn-cyber:active {
  transform: translateY(0);
}

.btn-cyber-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.btn-cyber-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 242, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

/* Compliance Warnin Banner (Asymmetrical stylish structure) */
.compliance-banner {
  background: #fff;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #ef4444;
}

/* Navigation items layout */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.5rem;
}

.nav-link-cyber {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link-cyber:hover, .nav-link-cyber.active {
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 242, 255, 0.35);
}

.nav-link-cyber::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--cyan);
}

.nav-link-cyber:hover::after, .nav-link-cyber.active::after {
  width: 100%;
}

/* Cybernetic Balance display block */
.balance-badge-cyber {
  background: rgba(0, 242, 255, 0.05);
  border: 1px solid rgba(0, 242, 255, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.1);
  font-family: 'Space Grotesk', sans-serif;
}

/* High Fidelity Asymmetrical Geometric Slot Cabin */
.slot-cabin-asym {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(5, 5, 8, 0.95) 100%);
  border-left: 2px solid var(--cyan);
  border-top: 1px solid rgba(0, 242, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid rgba(0, 242, 255, 0.15);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 242, 255, 0.1);
}

.reel-window {
  border-radius: 8px;
  background: rgba(5, 5, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 10px 20px rgba(0,0,0,0.8);
}

/* Neon geometric shape definitions inside slot */
.geometric-symbol {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.symbol-svg {
  width: 55px;
  height: 55px;
  filter: drop-shadow(0 0 8px currentColor);
}

/* Grid & Layout System */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

/* Micro-Interaction Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Interactive Card Gallery Vibe Collection */
.vibe-card {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vibe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 8, 0.95) 90%);
  z-index: 1;
}

.vibe-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 15px 30px rgba(0, 242, 255, 0.08);
}

.vibe-card-thumb {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.vibe-card:hover .vibe-card-thumb {
  transform: scale(1.05);
}

.vibe-card-body {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding: 1.5rem;
}

/* Age Gate Overlay glass-premium style */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  display: none; /* Flex via JS */
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 99999;
}

.cookie-bar-cyber {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  max-width: 440px;
  width: calc(100% - 4rem);
  border: 1px solid rgba(0, 242, 255, 0.2);
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 4px;
  z-index: 4000;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
  display: none;
}

#toast-notification {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(5, 5, 8, 0.95);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 30;
  box-shadow: 0 10px 25px rgba(0, 242, 255, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#toast-notification.active {
  top: -28px;
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* Responsive fixes */
@media (max-width: 1024px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu-desktop {
    display: none;
  }
}
