@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --deep-red: #1a0a0a;
  --wine: #2d1515;
  --crimson: #dc143c;
  --crimson-light: #ff4d6d;
  --gold: #ffd700;
  --cream: #faf0e6;
  --muted: #a89f9f;
  --border-red: rgba(220, 20, 60, 0.25);
  --glow-red: rgba(220, 20, 60, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--deep-red);
  color: var(--cream);
  line-height: 1.7;
}

.luxury-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.header-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-red);
  z-index: 1000;
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--crimson);
  text-decoration: none;
  letter-spacing: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--crimson);
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--crimson);
  margin: 5px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-menu a:hover { color: var(--crimson-light); }

.page-content { padding-top: 75px; }

.roulette-hero {
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-box {
  max-width: 1200px;
}

.hero-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-box h1 .red { color: var(--crimson); }

.hero-box > p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.notices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.notice {
  background: var(--wine);
  border: 1px solid var(--border-red);
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
}

.spin-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: white;
  padding: 1rem 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: 0.3s;
  margin-bottom: 3rem;
}

.spin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px var(--glow-red);
}

.game-container {
  background: var(--wine);
  border: 1px solid var(--border-red);
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.game-window {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  background: #000;
}

.game-window iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.features-section {
  background: var(--wine);
  padding: 5rem 2rem;
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--deep-red);
  border: 1px solid var(--border-red);
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
}

.feature:hover {
  border-color: var(--crimson);
  transform: translateY(-5px);
}

.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--crimson-light);
  margin-bottom: 0.5rem;
}

.feature p { color: var(--muted); font-size: 0.9rem; }

.story-section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.story-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--crimson);
  margin-bottom: 1.5rem;
}

.story-section p { color: var(--muted); margin-bottom: 1rem; }

.site-footer {
  background: var(--wine);
  border-top: 1px solid var(--border-red);
  padding: 3rem 2rem;
}

.footer-box {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-nav a:hover { color: var(--crimson-light); }

.responsible {
  border-top: 1px solid var(--border-red);
  padding-top: 2rem;
  text-align: center;
}

.responsible h4 {
  color: var(--crimson);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.resp-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.resp-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-red);
  transition: 0.3s;
}

.resp-links a:hover { border-color: var(--crimson); color: var(--crimson-light); }

.copyright { color: var(--muted); font-size: 0.85rem; text-align: center; }

.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 10, 10, 0.98);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.age-box {
  background: var(--wine);
  border: 2px solid var(--crimson);
  padding: 2.5rem;
  max-width: 450px;
  text-align: center;
}

.age-box h2 {
  font-family: 'Playfair Display', serif;
  color: var(--crimson-light);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.age-box p { color: var(--muted); margin-bottom: 2rem; }

.age-btns { display: flex; gap: 1rem; justify-content: center; }

.btn-yes, .btn-no {
  padding: 0.9rem 2rem;
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn-yes {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-light));
  color: white;
}

.btn-no {
  background: transparent;
  border: 1px solid var(--muted);
  color: var(--muted);
}

.btn-yes:hover, .btn-no:hover { transform: scale(1.05); }

.hidden { display: none !important; }

.inner-page {
  padding: 110px 2rem 4rem;
  max-width: 950px;
  margin: 0 auto;
}

.inner-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: var(--crimson);
  margin-bottom: 2rem;
}

.inner-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--crimson-light);
  margin: 2rem 0 1rem;
}

.inner-page p, .inner-page li { color: var(--muted); margin-bottom: 1rem; }
.inner-page ul { padding-left: 1.5rem; }

.info-card {
  background: var(--wine);
  border: 1px solid var(--border-red);
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-card h3 { color: var(--crimson); margin-bottom: 0.75rem; }

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

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(26, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-150%);
    transition: 0.4s;
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu a { display: block; padding: 0.75rem; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .notices { flex-direction: column; align-items: center; }
  .age-btns { flex-direction: column; }
  .footer-nav { flex-direction: column; align-items: center; gap: 1rem; }
}
