/* ============================================================
   DROP THE BOSS — style.css
   Light theme, premium casino landing
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold:        #C9963A;
  --gold-light:  #F0C96A;
  --gold-dark:   #9A6E1E;
  --cream:       #FDFAF4;
  --cream-2:     #F5EFE0;
  --cream-3:     #EDE3CC;
  --ink:         #1A1209;
  --ink-soft:    #4A3E2A;
  --ink-muted:   #7A6C55;
  --white:       #FFFFFF;
  --red:         #D64040;
  --green:       #2E8B57;
  --shadow-sm:   0 2px 12px rgba(26,18,9,.08);
  --shadow-md:   0 6px 28px rgba(26,18,9,.12);
  --shadow-lg:   0 16px 60px rgba(26,18,9,.18);
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Grain overlay ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 700; }
p  { font-size: 1rem; color: var(--ink-soft); }

/* ── Utility ────────────────────────────────────────────── */
.container {
  width: min(1200px, 94%);
  margin-inline: auto;
}
.gold-line {
  display: inline-block;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1rem;
}
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .4rem;
}
.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: 100px;
  padding: .25rem .85rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-muted);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.8rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201,150,58,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,150,58,.5);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--cream-3);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-play {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  color: var(--ink);
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(201,150,58,.4);
}
.btn-play:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 36px rgba(201,150,58,.55);
}
.btn-money {
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  border: 2px solid var(--cream-3);
  box-shadow: var(--shadow-sm);
}
.btn-money:hover {
  border-color: var(--gold);
  background: var(--cream-2);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════ */
#header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,250,244,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--cream-3);
  padding: .9rem 0;
}
.nav-inner {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-logo {
  display: flex; align-items: center; gap: .7rem;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(201,150,58,.35);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.01em;
}
.nav-logo-text span { color: var(--gold); }
.nav-spacer { flex: 1; }
.nav-buttons {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap;
}
/* burger */
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
  margin-left: auto;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column; gap: .7rem;
  padding: 1rem 0;
  border-top: 1px solid var(--cream-3);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   HERO BANNER (image slot)
══════════════════════════════════════════════════════════ */
#hero-banner {
  background: var(--ink);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-banner-inner {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #1A1209 0%, #3A2B10 50%, #1A1209 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-banner-placeholder {
  text-align: center;
  color: rgba(255,255,255,.35);
}
.hero-banner-placeholder p {
  color: rgba(255,255,255,.35);
  font-size: .9rem;
  margin-top: .4rem;
}
/* When user adds an <img> tag inside #hero-banner */
#hero-banner img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════
   STATS RIBBON
══════════════════════════════════════════════════════════ */
#stats-ribbon {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 1.2rem 0;
}
.stats-ribbon-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.stat-item {
  display: flex; align-items: center; gap: .7rem;
  color: var(--ink);
}
.stat-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
}
.stat-item span {
  font-size: .8rem;
  font-weight: 500;
  opacity: .75;
}
.stat-divider {
  width: 1px; height: 32px;
  background: rgba(26,18,9,.2);
}

/* ══════════════════════════════════════════════════════════
   DEMO SECTION
══════════════════════════════════════════════════════════ */
#demo-section {
  padding: 5rem 0;
}
.demo-section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.demo-section-title h2 { margin-bottom: .5rem; }
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

/* Demo frame */
.demo-frame-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--cream-3);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.demo-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}
.demo-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem;
  background: #0a0a0a;
  z-index: 2;
  transition: opacity .4s, visibility .4s;
}
.demo-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.demo-overlay-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: .03em;
  text-align: center;
}
.demo-overlay-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-top: -.8rem;
}
.demo-overlay-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}
#demo-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: none;
  z-index: 1;
}
.demo-frame-footer {
  padding: .9rem 1.2rem;
  background: var(--cream-2);
  border-top: 1px solid var(--cream-3);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.demo-frame-footer small { font-size: .78rem; color: var(--ink-muted); }
.demo-18plus {
  width: 28px; height: 28px;
  border: 2px solid var(--ink-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--ink-muted);
  flex-shrink: 0;
}

/* Info card */
.demo-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--cream-3);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.info-card-header {
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, var(--ink) 0%, #2E1E0A 100%);
  color: var(--gold-light);
}
.info-card-header h3 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: .25rem;
}
.info-card-header p { color: rgba(255,255,255,.5); font-size: .82rem; }
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr { border-bottom: 1px solid var(--cream-2); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
  padding: .85rem 1.6rem;
  font-size: .9rem;
  vertical-align: middle;
}
.info-table td:first-child {
  color: var(--ink-muted);
  font-weight: 500;
  width: 48%;
}
.info-table td:last-child {
  color: var(--ink);
  font-weight: 600;
}
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .2rem .7rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-green { background: #E6F5EC; color: var(--green); }
.badge-gold  { background: #FEF6E4; color: var(--gold-dark); }
.info-card-cta {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--cream-2);
  display: flex; flex-direction: column; gap: .7rem;
}
.info-card-cta .btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════════════════════════ */
#features-strip {
  padding: 4rem 0;
  background: var(--cream-2);
  border-top: 1px solid var(--cream-3);
  border-bottom: 1px solid var(--cream-3);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  border: 1.5px solid var(--cream-3);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.feature-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1rem;
}
.feature-card h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.feature-card p { font-size: .85rem; color: var(--ink-muted); }

/* ══════════════════════════════════════════════════════════
   CONTENT SECTION
══════════════════════════════════════════════════════════ */
#content-section {
  padding: 5rem 0;
}
.content-inner {
  max-width: 860px;
  margin-inline: auto;
}
.content-inner h2 {
  margin-bottom: 1.2rem;
  margin-top: 2.5rem;
}
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 {
  margin-top: 2rem; margin-bottom: .8rem;
  font-size: 1.25rem;
}
.content-inner p {
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.content-inner ul, .content-inner ol {
  padding-left: 1.6rem;
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
}
.content-inner li { margin-bottom: .5rem; }
.content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: .95rem;
}
.content-inner table thead th {
  background: var(--ink);
  color: var(--gold-light);
  padding: .85rem 1.2rem;
  text-align: left;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.content-inner table tbody td {
  padding: .8rem 1.2rem;
  border-bottom: 1px solid var(--cream-2);
  color: var(--ink-soft);
}
.content-inner table tbody tr:last-child td { border-bottom: none; }
.content-inner table tbody tr:nth-child(even) td { background: var(--cream-2); }

/* ══════════════════════════════════════════════════════════
   JACKPOT TICKER (bonus fun block)
══════════════════════════════════════════════════════════ */
#jackpot-ticker {
  background: linear-gradient(135deg, var(--ink) 0%, #2E1E0A 100%);
  padding: 2.8rem 0;
  overflow: hidden;
  position: relative;
}
#jackpot-ticker::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,150,58,.15) 0%, transparent 70%);
}
.jackpot-inner { text-align: center; position: relative; }
.jackpot-label {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .5rem;
}
.jackpot-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .5rem;
}
.jackpot-sub {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  margin-bottom: 1.6rem;
}
.jackpot-sub span { color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════════════════════
   HOW TO PLAY
══════════════════════════════════════════════════════════ */
#how-to-play {
  padding: 5rem 0;
  background: var(--cream-2);
  border-top: 1px solid var(--cream-3);
}
.how-title { text-align: center; margin-bottom: 3rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  border: 1.5px solid var(--cream-3);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream-3);
  line-height: 1;
  margin-bottom: .5rem;
}
.step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.step-card p { font-size: .88rem; color: var(--ink-muted); }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
#faq-section {
  padding: 5rem 0;
}
.faq-inner { max-width: 760px; margin-inline: auto; }
.faq-title { text-align: center; margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: .9rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--cream-3);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  user-select: none;
  background: none; border: none;
  width: 100%; text-align: left;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--cream-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--gold-dark);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 1.6rem;
}
.faq-answer p {
  padding-bottom: 1.2rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIBLE GAMING
══════════════════════════════════════════════════════════ */
#responsible-gaming {
  padding: 3.5rem 0;
  background: var(--cream-2);
  border-top: 1px solid var(--cream-3);
  border-bottom: 1px solid var(--cream-3);
}
.rg-inner {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.rg-icon {
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--cream-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.rg-text { flex: 1; min-width: 260px; }
.rg-text h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.rg-text p  { font-size: .88rem; color: var(--ink-muted); margin: 0; }
.rg-badges {
  display: flex; gap: .7rem; flex-wrap: wrap;
}
.rg-badge {
  background: var(--white);
  border: 1.5px solid var(--cream-3);
  border-radius: 8px;
  padding: .5rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-muted);
  display: flex; align-items: center; gap: .4rem;
}

/* ══════════════════════════════════════════════════════════
   AUTHOR
══════════════════════════════════════════════════════════ */
#author-section {
  padding: 5rem 0;
}
.author-card {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--cream-3);
  box-shadow: var(--shadow-md);
  padding: 2.4rem 2.8rem;
  display: flex; gap: 2rem; align-items: flex-start;
}
.author-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-3), var(--cream-2));
  border: 3px solid var(--gold-light);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.author-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.author-info { flex: 1; }
.author-tag {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: .3rem;
}
.author-info h3 {
  font-size: 1.25rem;
  margin-bottom: .8rem;
}
.author-info p { font-size: .92rem; color: var(--ink-soft); line-height: 1.75; margin: 0; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background: var(--ink);
  padding: 3.5rem 0 2.5rem;
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.footer-logo span { color: rgba(255,255,255,.5); }
.footer-disclaimer {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255,255,255,.38);
  font-size: .82rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.footer-divider {
  width: 48px; height: 1px;
  background: rgba(255,255,255,.12);
  margin: 1.5rem auto;
}
.footer-contacts {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-contact-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}
.footer-contact-item a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,150,58,.35); }
  50%       { box-shadow: 0 4px 36px rgba(201,150,58,.65); }
}
.btn-primary, .btn-play { animation: pulse-gold 3s ease-in-out infinite; }
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .demo-layout {
    grid-template-columns: 1fr;
  }
  .demo-info-card { order: -1; }
}
@media (max-width: 700px) {
  .nav-buttons { display: none; }
  .nav-burger { display: flex; }
  .stats-ribbon-inner { gap: 1.2rem; }
  .stat-divider { display: none; }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.6rem;
  }
  .demo-overlay-buttons { flex-direction: column; align-items: center; }
  .rg-inner { flex-direction: column; align-items: flex-start; }
  .footer-contacts { flex-direction: column; gap: .8rem; }
}
@media (max-width: 480px) {
  .container { width: 96%; }
  .info-card-header, .info-table td { padding-left: 1.1rem; padding-right: 1.1rem; }
  .info-card-cta { padding: 1.1rem; }
}