/* ============================================
   VelvetPlay – Main Stylesheet
   Font: Georgia (serif) + system-ui (sans)
   Palette: Deep Plum #1a0a2e | Gold #c9a84c | Cream #f5f0e8
   ============================================ */

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

:root {
  --plum:       #1a0a2e;
  --plum-mid:   #2d1555;
  --plum-light: #3d2068;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --cream:      #f5f0e8;
  --cream-dark: #e8e0d0;
  --white:      #ffffff;
  --text:       #2a1a42;
  --muted:      #7a6a9a;
  --radius:     14px;
  --shadow:     0 8px 32px rgba(26,10,46,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: Georgia, 'Times New Roman', serif; line-height: 1.2; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--plum);
  margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 40px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--plum);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.5); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 500;
  font-size: .92rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.5);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 14px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 24px; font-size: .85rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(26,10,46,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__icon { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.logo__text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo__text em { color: var(--gold); font-style: italic; }

/* Nav */
.main-nav ul { list-style: none; display: flex; gap: 6px; }
.main-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  padding-top: 70px;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,10,46,.88) 0%, rgba(45,21,85,.75) 50%, rgba(26,10,46,.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 680px;
}
.hero__badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 900;
}
.hero__title em { color: var(--gold); font-style: italic; display: block; }
.hero__sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  margin-bottom: 38px;
  line-height: 1.75;
}
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(8px)} }

/* ── DISCLAIMER STRIP ── */
.disclaimer-strip {
  background: linear-gradient(90deg, var(--plum), var(--plum-mid));
  padding: 16px 0;
  border-top: 1px solid rgba(201,168,76,.2);
}
.disclaimer-strip .container {
  display: flex;
  align-items: center;
  gap: 14px;
}
.disclaimer-strip span { font-size: 1.2rem; flex-shrink: 0; }
.disclaimer-strip p { color: rgba(255,255,255,.8); font-size: .85rem; line-height: 1.5; }
.disclaimer-strip strong { color: var(--gold-light); }

/* ── FEATURES ── */
.features { padding: 96px 0; background: var(--cream); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon { font-size: 2.2rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.15rem; color: var(--plum); margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── GAME CARD ABSTRACT ART ── */
.game-card__img-wrap--abstract {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
  background: var(--plum);
}
.game-card__art {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; padding: 20px;
  position: relative;
}
.game-card__art--tropical {
  background: linear-gradient(135deg, #0f3d1e 0%, #1a6b35 50%, #0a2d16 100%);
}
.game-card__art--royal {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1555 50%, #0d0620 100%);
}
.gca-icon {
  font-size: 2.8rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  animation: floatIcon 3s ease-in-out infinite;
  display: inline-block;
}
.gca-icon:nth-child(2) { animation-delay: .5s; font-size: 3.4rem; }
.gca-icon:nth-child(3) { animation-delay: 1s; }
@keyframes floatIcon { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.gca-label {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif; font-size: .85rem; font-style: italic;
  color: rgba(255,255,255,.45); white-space: nowrap; letter-spacing: .06em;
}

/* ── GAMES PREVIEW ── */
.games-preview { padding: 96px 0; background: var(--plum); }
.games-preview .section-label { color: var(--gold); }
.games-preview .section-title { color: var(--white); }
.games-preview .section-sub { color: rgba(255,255,255,.6); }
.games-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.game-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); border-color: rgba(201,168,76,.5); }
.game-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.game-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.game-card:hover .game-card__img-wrap img { transform: scale(1.04); }
.game-card__tag {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(26,10,46,.85);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.3);
}
.game-card__body { padding: 26px 26px 30px; }
.game-card__body h3 { font-size: 1.35rem; color: var(--white); margin-bottom: 10px; }
.game-card__body p { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 20px; line-height: 1.6; }
.games-preview__note {
  text-align: center;
  margin-top: 36px;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
}

/* ── HOW IT WORKS ── */
.how-it-works { padding: 96px 0; background: var(--cream-dark); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 0 20px;
}
.step__num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; color: var(--plum); margin-bottom: 10px; }
.step p { font-size: .88rem; color: var(--muted); }
.step__line {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: .35;
  align-self: center;
  margin-top: -40px;
}

/* ── RESPONSIBLE ── */
.responsible { padding: 96px 0; background: var(--white); }
.responsible__intro {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
  font-size: .95rem;
}
.responsible__orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.org-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1.5px solid var(--cream-dark);
  text-decoration: none;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: var(--transition);
  min-width: 190px;
}
.org-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(201,168,76,.15); transform: translateY(-3px); }
.org-card__img-wrap { width: 160px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 8px; overflow: hidden; padding: 8px; }
.org-card__img-wrap--dark { background: #000; }
.org-card__img-wrap--light { background: var(--white); border: 1px solid var(--cream-dark); }
.org-card__img-wrap img { max-width: 100%; max-height: 54px; object-fit: contain; }

/* ── FOOTER ── */
.site-footer { background: var(--plum); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-col .logo { margin-bottom: 16px; }
.footer-tagline { color: rgba(255,255,255,.45); font-size: .85rem; line-height: 1.6; }
.footer-col h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col address { font-style: normal; color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col address a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .78rem; line-height: 1.7; text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--plum-mid);
  border-top: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 32px;
}
.cookie-banner p { color: rgba(255,255,255,.75); font-size: .85rem; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner button {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--plum);
  border: none;
  padding: 9px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-banner button:hover { background: var(--gold-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  padding: 130px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.6); max-width: 540px; margin: 0 auto; }

/* ── PROSE CONTENT ── */
.prose-section { padding: 72px 0; }
.prose-wrap { max-width: 840px; margin: 0 auto; }
.prose-wrap h2 { font-size: 1.45rem; color: var(--plum); margin: 36px 0 12px; }
.prose-wrap h3 { font-size: 1.15rem; color: var(--plum-mid); margin: 28px 0 10px; }
.prose-wrap p { color: var(--muted); font-size: .93rem; margin-bottom: 16px; line-height: 1.75; }
.prose-wrap ul { margin: 0 0 16px 24px; color: var(--muted); font-size: .93rem; line-height: 1.75; }
.prose-wrap a { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .step__line { display: none; }
}
@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--plum);
    padding: 20px;
    border-bottom: 1px solid rgba(201,168,76,.2);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .hero__content { padding: 60px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .games-preview__grid { grid-template-columns: 1fr; }
  .responsible__orgs { justify-content: center; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 16px; }
}
