/* ============================================
   DRIFTPLAYVAULT — DETECTIVE SOCIAL CASINO
   Complete Stylesheet
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #050507;
  --bg-dark: #0f0f14;
  --bg-surface: rgba(255,255,255,0.04);
  --bg-surface-hover: rgba(255,255,255,0.07);
  --red: #b91c1c;
  --purple: #7c3aed;
  --pink: #ff2d55;
  --amber: #f59e0b;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --gradient-mystery: linear-gradient(135deg, #7c3aed, #b91c1c);
  --gradient-crime: linear-gradient(135deg, #ff2d55, #f59e0b);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --sidebar-width: 76px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* === LAYOUT === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.container--narrow {
  max-width: 860px;
}

.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

/* === SIDEBAR === */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.sidebar-logo {
  margin-bottom: 2.5rem;
  padding: 0.5rem;
  transition: var(--transition);
}

.sidebar-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.5));
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.sidebar-item {
  position: relative;
}

.sidebar-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.sidebar-item a:hover {
  color: var(--text-primary);
  background: var(--bg-surface-hover);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.sidebar-item.active a {
  color: var(--purple);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.sidebar-item.active a::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--gradient-mystery);
  border-radius: 4px;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 1rem;
}

.sidebar-bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: var(--transition);
}

.sidebar-bottom a:hover,
.sidebar-bottom .active-link {
  color: var(--text-secondary);
  background: var(--bg-surface);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1100;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(185, 28, 28, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 45, 85, 0.04) 0%, transparent 50%),
    var(--bg-deep);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 7, 0.4) 100%);
  z-index: 1;
}

.hero-fog {
  position: absolute;
  width: 200%;
  height: 100%;
  opacity: 0.03;
  z-index: 1;
}

.hero-fog--1 {
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.3), transparent 70%);
  animation: fogDrift1 20s ease-in-out infinite;
  top: -20%;
  left: -50%;
}

.hero-fog--2 {
  background: radial-gradient(ellipse, rgba(185, 28, 28, 0.2), transparent 70%);
  animation: fogDrift2 25s ease-in-out infinite;
  bottom: -30%;
  right: -50%;
}

@keyframes fogDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5%, 3%); }
}

@keyframes fogDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4%, -2%); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(124, 58, 237, 0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(124, 58, 237, 0); }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: var(--gradient-mystery);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title em {
  font-style: normal;
  background: var(--gradient-crime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-legal {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.hero-legal-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-legal-item svg {
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  display: none;
}

.hero-clue-board {
  position: relative;
  width: 340px;
  height: 380px;
}

.clue-card {
  position: absolute;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: var(--transition);
}

.clue-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
}

.clue-pin {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(185, 28, 28, 0.5);
}

.clue-card--1 { top: 10px; left: 20px; }
.clue-card--2 { top: 140px; right: 10px; }
.clue-card--3 { bottom: 40px; left: 60px; }

.clue-string {
  position: absolute;
  height: 1px;
  background: rgba(185, 28, 28, 0.3);
  transform-origin: left center;
}

.clue-string--1 {
  top: 60px;
  left: 100px;
  width: 120px;
  transform: rotate(25deg);
}

.clue-string--2 {
  top: 200px;
  left: 140px;
  width: 90px;
  transform: rotate(-15deg);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gradient-mystery);
  color: var(--text-primary);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px rgba(124, 58, 237, 0.35),
    0 0 60px rgba(124, 58, 237, 0.15);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.8rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: var(--bg-surface-hover);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}

.btn-full {
  width: 100%;
}

/* === SECTION STYLES === */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* === GAME SECTION === */
.game-section {
  padding: 6rem 0;
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
}

.game-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.game-frame-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.06);
}

.game-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient-mystery);
  border-radius: calc(var(--radius-lg) + 2px);
  opacity: 0.15;
  z-index: -1;
  filter: blur(20px);
  animation: gameGlow 4s ease-in-out infinite alternate;
}

@keyframes gameGlow {
  0% { opacity: 0.1; }
  100% { opacity: 0.2; }
}

.game-iframe {
  display: block;
  width: 100%;
  height: 580px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--bg-deep);
}

.game-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1rem 2rem;
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  max-width: 920px;
  width: 100%;
}

.game-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* === FEATURES SECTION === */
.features {
  padding: 6rem 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(124, 58, 237, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.2);
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  position: relative;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  position: relative;
}

/* === EXPERIENCE SECTION === */
.experience {
  padding: 6rem 0;
  position: relative;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 85, 0.2), transparent);
}

.experience-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.experience-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.exp-magnifier {
  animation: magFloat 6s ease-in-out infinite;
}

@keyframes magFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.exp-floating-clue {
  position: absolute;
  font-size: 2rem;
  animation: floatClue 5s ease-in-out infinite;
}

.exp-floating-clue--1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.exp-floating-clue--2 {
  bottom: 15%;
  left: 10%;
  animation-delay: 1.5s;
}

.exp-floating-clue--3 {
  bottom: 30%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes floatClue {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.experience-content .section-tag {
  margin-bottom: 1rem;
}

.experience-content .section-title {
  margin-bottom: 1.2rem;
  text-align: left;
}

.experience-text {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.experience-list li svg {
  flex-shrink: 0;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 6rem 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-wrapper--page {
  grid-template-columns: 1fr;
}

.contact-info .section-tag { margin-bottom: 1rem; }
.contact-info .section-title { text-align: left; margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 1.5rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: rgba(255,255,255,0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* === AGE GATE === */
.age-gate {
  padding: 4rem 0;
}

.age-gate-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: rgba(185, 28, 28, 0.06);
  border: 1px solid rgba(185, 28, 28, 0.15);
  border-radius: var(--radius-lg);
}

.age-badge {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-mystery);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: white;
}

.age-text {
  flex: 1;
}

.age-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.age-text p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-brand > p {
  font-size: 0.88rem;
  max-width: 280px;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li,
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === PAGE HERO (INNER PAGES) === */
.page-hero {
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
    var(--bg-deep);
}

.page-title {
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* === PAGE CONTENT === */
.page-content {
  padding: 2rem 0 4rem;
}

.content-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.content-card:hover {
  border-color: rgba(255,255,255,0.08);
}

.content-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.content-card h3 {
  margin-bottom: 0.8rem;
}

.content-card p {
  margin-bottom: 0.8rem;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.highlight-card {
  background: rgba(185, 28, 28, 0.06);
  border-color: rgba(185, 28, 28, 0.15);
}

.styled-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0;
}

.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--gradient-mystery);
  border-radius: 50%;
}

/* === RESPONSIVE === */
@media (min-width: 1100px) {
  .hero {
    padding: 0 4rem;
    display: flex;
    gap: 4rem;
  }

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

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .experience-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience-visual {
    min-height: 200px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .game-iframe {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-content {
    margin-left: 0;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .game-section {
    padding: 4rem 0;
  }

  .game-iframe {
    height: 400px;
  }

  .game-info-bar {
    flex-direction: column;
    gap: 0.8rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .age-gate-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-card {
    padding: 1.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .page-hero {
    padding: 5rem 0 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .game-iframe {
    height: 320px;
    border-radius: var(--radius-sm);
  }

  .game-frame-container {
    border-radius: var(--radius-sm);
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

/* === UTILITY ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  5% { opacity: 0.8; }
  10% { opacity: 1; }
  15% { opacity: 0.6; }
  20% { opacity: 1; }
}

/* Neon text glow utility */
.neon-glow {
  text-shadow:
    0 0 10px rgba(124, 58, 237, 0.5),
    0 0 20px rgba(124, 58, 237, 0.3),
    0 0 40px rgba(124, 58, 237, 0.1);
}

/* Selection */
::selection {
  background: rgba(124, 58, 237, 0.3);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 58, 237, 0.5);
}