@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Syne:wght@700;800;900&family=VT323&family=UnifrakturMaguntia&display=swap');

:root {
  --raemm-bg: #eae5dc;
  --raemm-surface: #f5f1ea;
  --raemm-text: #1a1918;
  --raemm-muted: #7d7870;
  --raemm-accent: #8c8275;
  --raemm-border: rgba(26, 25, 24, 0.12);

  --sesh-bg: #070709;
  --sesh-surface: #101014;
  --sesh-text: #f4f4f5;
  --sesh-neon: #00ff66;
  --sesh-neon-glow: rgba(0, 255, 102, 0.4);
  --sesh-acid: #ff0055;
  --sesh-cyan: #00f0ff;
  --sesh-yellow: #ffee00;
  --sesh-border: rgba(0, 255, 102, 0.25);
}

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

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--sesh-bg);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utility Classes */
.font-mono { font-family: 'Space Mono', monospace; }
.font-syne { font-family: 'Syne', sans-serif; }
.font-pixel { font-family: 'VT323', monospace; }
.font-fraktur { font-family: 'UnifrakturMaguntia', cursive; }

/* rÄmm. interNATZional Custom Branding */
.natz-highlight {
  color: #ffee00;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 238, 0, 0.65), 0 0 24px rgba(255, 238, 0, 0.3);
  letter-spacing: 1px;
}
.raemm-old-ae {
  font-family: 'Boecklin-1904', serif;
  font-style: normal;
  display: inline-block;
  transform: translateY(-1px);
}
.intl-globe-badge {
  background: radial-gradient(circle, rgba(255, 238, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  border: 1px solid rgba(255, 238, 0, 0.35);
  box-shadow: 0 0 25px rgba(255, 238, 0, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #070709;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--sesh-neon);
}

/* CRT Scanlines Overlay */
.scanlines {
  position: relative;
}
.scanlines::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.4) 50%);
  background-size: 100% 4px;
  z-index: 10;
  pointer-events: none;
  opacity: 0.65;
}

/* Glitch Animations */
@keyframes glitch-anim {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

.glitch-hover:hover {
  animation: glitch-anim 0.22s infinite;
  text-shadow: 2px 0 var(--sesh-acid), -2px 0 var(--sesh-cyan);
}

.neon-border {
  border: 1px solid var(--sesh-neon);
  box-shadow: 0 0 20px var(--sesh-neon-glow), inset 0 0 10px rgba(0, 255, 102, 0.1);
}

.neon-text {
  color: var(--sesh-neon);
  text-shadow: 0 0 10px var(--sesh-neon-glow);
}

.acid-badge {
  background: linear-gradient(135deg, #00ff66 0%, #00f0ff 100%);
  color: #000;
  font-weight: 700;
}

/* raemm. Minimalist Aesthetics */
.raemm-theme {
  background-color: var(--raemm-bg);
  color: var(--raemm-text);
}

.raemm-card {
  background: var(--raemm-surface);
  border: 1px solid var(--raemm-border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.raemm-card:hover {
  border-color: rgba(26, 25, 24, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.12);
}

/* Dynamic Floating Parallax Elements */
.parallax-layer {
  position: absolute;
  pointer-events: none;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* 3D Tilt Card Container */
.tilt-card-container {
  perspective: 1000px;
}
.tilt-card {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

/* Marquee Animation */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: 200%;
  animation: marquee 20s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Radio Floating Bar */
.radio-floating {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 14, 0.9);
  border: 1px solid rgba(0, 255, 102, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 255, 102, 0.2);
}

/* Glassmorphism */
.glass-panel-dark {
  background: rgba(16, 16, 22, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Locked Card Cyber Glitch Overlay */
.locked-slot {
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.015) 10px,
    rgba(0, 0, 0, 0.4) 10px,
    rgba(0, 0, 0, 0.4) 20px
  );
  border: 1px dashed rgba(255, 255, 255, 0.15);
}
.locked-slot:hover {
  border-color: rgba(0, 255, 102, 0.4);
}

/* Pulsing Badge */
@keyframes pulse-fast {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.96); }
}
.pulse-badge {
  animation: pulse-fast 1.8s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.floating-element {
  animation: float-slow 6s ease-in-out infinite;
}

/* VIP Access Gate Cyberpunk Enhancements */
@keyframes gate-scanner-sweep {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(1000%); }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

