:root {
  --bg: #ffffff;
  --bg-header-start: #611051;
  --bg-header-end: #e52817;
  --bg-footer: #ffffff;
  --bg-card: #ffffff;
  --bg-surf: #f8f9fa;
  --bg-surf2: #edf2f7;
  --accent: #ff0000;
  --accent2: #ff5722;
  --accent-gold: #ffcc00;
  --success: #10b981;
  --text: #2d3748;
  --text-light: #ffffff;
  --text2: #4a5568;
  --border: #e2e8f0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background: linear-gradient(90deg, var(--bg-header-start) 0%, var(--bg-header-end) 100%);
  color: var(--text-light);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
  transition: opacity .2s;
}
.main-nav a:hover { opacity: .8; color: var(--accent-gold); }

.play-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: transform .15s, background .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(255,0,0,.35);
  white-space: nowrap;
}
.play-btn:hover {
  background: var(--accent2);
  color: var(--text-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,87,34,.45);
}

.burger-btn {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.burger-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--bg-header-start);
  padding: 14px 20px 22px;
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu a {
  color: var(--text-light);
  display: block;
  padding: 12px 4px;
  font-weight: 500;
}
.mobile-menu.open { display: block; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--bg-header-start) 0%, var(--bg-header-end) 100%);
  color: var(--text-light);
  padding: 60px 0 70px;
  text-align: center;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--text-light);
}
.hero p {
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto 28px;
  opacity: .95;
}
.hero .play-btn { padding: 14px 34px; font-size: 16px; }

/* MAIN */
main { padding: 40px 0 60px; }
main .container > * + * { margin-top: 18px; }

h1, h2, h3 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
}
main h1 { font-size: 34px; margin-bottom: 16px; }
main h2 {
  font-size: 26px;
  margin: 40px 0 14px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
main h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 20px; }
main h3 {
  font-size: 20px;
  margin: 26px 0 10px;
  color: var(--bg-header-start);
}
main p { color: var(--text2); margin-bottom: 14px; }

main ul, main ol { margin: 12px 0 18px 22px; color: var(--text2); }
main li { margin-bottom: 6px; }

.hero-image, .content-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 24px 0;
}
.content-image img { width: 100%; }

.cta-inline {
  background: var(--bg-surf);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 30px 0;
}
.cta-inline p { margin-bottom: 14px; font-weight: 600; color: var(--text); }

.table-wrapper { width: 100%; overflow-x: auto; margin: 18px 0 24px; border: 1px solid var(--border); border-radius: 10px; }
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 15px;
}
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--bg-surf); font-weight: 700; color: var(--text); }
tr:last-child td { border-bottom: 0; }
tr:hover td { background: var(--bg-surf2); }

.highlight-box {
  background: linear-gradient(135deg, rgba(97,16,81,.06), rgba(229,40,23,.06));
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 22px 0;
}
.highlight-box p { color: var(--text); margin-bottom: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; color: var(--bg-header-start); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 30px 0;
}
.two-col img { border-radius: 12px; box-shadow: var(--shadow); }

/* FAQ */
.faq { margin: 30px 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-q {
  padding: 16px 20px;
  background: var(--bg-surf);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--accent); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; color: var(--text2); }
.faq-item.open .faq-a { padding: 14px 20px 18px; max-height: 600px; }

/* FOOTER */
.site-footer {
  background: var(--bg-header-start);
  color: var(--text-light);
  padding: 40px 0 24px;
  margin-top: 60px;
}
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 30px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 12px; filter: brightness(1.05); }
.footer-brand p { font-size: 14px; opacity: .85; max-width: 320px; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 20px;
  list-style: none;
}
.footer-nav a {
  color: var(--text-light);
  opacity: .9;
  font-size: 14px;
  display: inline-block;
  padding: 4px 0;
}
.footer-nav a:hover { opacity: 1; color: var(--accent-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 13px;
  opacity: .8;
  text-align: center;
}
.footer-bottom p { color: var(--text-light); }
.age-restriction { display: inline-block; background: var(--accent); padding: 2px 8px; border-radius: 4px; font-weight: 700; margin-right: 8px; }

/* 404 */
.err-page { text-align: center; padding: 80px 20px; }
.err-page .code {
  font-size: 140px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--bg-header-start), var(--bg-header-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.err-page h1 { font-size: 32px; margin: 10px 0 14px; }
.err-page p { max-width: 500px; margin: 0 auto 24px; color: var(--text2); }

/* CONTACT FORM */
.contact-form { max-width: 620px; margin: 24px 0; }
.contact-form label { display: block; margin: 12px 0 6px; font-weight: 600; color: var(--text); }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg-surf);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button {
  margin-top: 16px;
  background: var(--accent);
  color: var(--text-light);
  padding: 12px 30px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}
.contact-form button:hover { background: var(--accent2); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger-btn { display: inline-flex; }
  .header-inner { padding: 10px 16px; gap: 10px; }
  .hero { padding: 40px 0 46px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  main h1 { font-size: 26px; }
  main h2 { font-size: 22px; margin-top: 32px; padding-top: 22px; }
  main h3 { font-size: 18px; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .err-page .code { font-size: 96px; }
  .container { padding: 0 16px; }
}

@media (max-width: 380px) {
  .play-btn { padding: 8px 14px; font-size: 12px; }
  .logo-img { height: 34px; }
}
