/* Fonts */
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-600-normal0.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/poppins-700-normal0.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/roboto-400-normal0.woff2') format('woff2'), url('../fonts/roboto-400-normal1.woff2') format('woff2'), url('../fonts/roboto-400-normal2.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/roboto-500-normal0.woff2') format('woff2'), url('../fonts/roboto-500-normal1.woff2') format('woff2'), url('../fonts/roboto-500-normal2.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Roboto'; src: url('../fonts/roboto-700-normal0.woff2') format('woff2'), url('../fonts/roboto-700-normal1.woff2') format('woff2'), url('../fonts/roboto-700-normal2.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: #1f2937;
  background: #f8f9fb;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #c8102e; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; color: #0f172a; margin: 0 0 0.6em; }
h1 { font-size: 2.1rem; }
h2 { font-size: 1.55rem; margin-top: 1.5em; }
h3 { font-size: 1.2rem; margin-top: 1.2em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em 1.5em; }
li { margin-bottom: 0.4em; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
  background: #0f172a;
  border-bottom: 3px solid #c8102e;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; gap: 20px; }
.header-logo img { height: 42px; width: auto; }
.header-nav { display: flex; gap: 24px; }
.header-nav a { color: #e5e7eb; font-weight: 500; font-size: 0.95rem; }
.header-nav a:hover { color: #fff; text-decoration: none; }
.header-cta {
  background: linear-gradient(135deg, #c8102e 0%, #ff3355 100%);
  color: #fff !important; padding: 10px 22px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 0.3px; transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 12px rgba(200,16,46,0.35);
}
.header-cta:hover { transform: translateY(-1px); text-decoration: none; box-shadow: 0 5px 18px rgba(200,16,46,0.5); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #7f1d1d 0%, #0f172a 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/hero-banner.webp');
  background-size: cover; background-position: center;
  opacity: 0.15; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; color: #fbbf24; font-weight: 700; margin-bottom: 12px; }
.hero-title { font-size: 2.6rem; color: #fff; margin-bottom: 12px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hero-sub { font-size: 1.3rem; color: #fef3c7; margin-bottom: 28px; font-weight: 500; }
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a !important;
  padding: 16px 40px; border-radius: 8px;
  font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(251,191,36,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 8px 25px rgba(251,191,36,0.55); }
.hero-note { margin-top: 18px; font-size: 0.85rem; color: #cbd5e1; }

/* Main content */
.main { padding: 40px 0 60px; }
.article { background: #fff; border-radius: 12px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.article img { border-radius: 8px; margin: 16px 0; }
.article h2 { border-left: 4px solid #c8102e; padding-left: 14px; }

/* Passport table */
.passport { width: 100%; border-collapse: collapse; margin: 20px 0 30px; background: #f8fafc; border-radius: 8px; overflow: hidden; }
.passport th, .passport td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #e2e8f0; font-size: 0.95rem; }
.passport th { background: #1e293b; color: #fff; font-weight: 600; width: 35%; }
.passport tr:last-child th, .passport tr:last-child td { border-bottom: none; }
.passport tr:nth-child(even) td { background: #eef2f7; }

/* Games grid */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.game-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1px solid #e5e7eb;
}
.game-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.game-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; margin: 0; border-radius: 0; }
.game-card .game-caption { padding: 8px 12px; text-align: center; font-size: 0.85rem; font-weight: 600; color: #334155; }

/* Reviews (testimonials) */
.reviews-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 40px 30px; border-radius: 12px; margin: 40px 0;
}
.reviews-section h2 { border: none; padding-left: 0; text-align: center; margin-top: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.review-card {
  background: #fff; border-radius: 10px; padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,0.14); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #c8102e, #ff3355);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.review-meta { flex: 1; }
.review-name { font-weight: 700; font-size: 0.95rem; color: #0f172a; margin: 0; }
.review-loc { font-size: 0.8rem; color: #64748b; margin: 0; }
.review-stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-text { font-size: 0.9rem; color: #334155; line-height: 1.55; margin: 0; font-style: italic; }

/* FAQ */
.faq { margin: 30px 0; }
.faq-item {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  padding: 16px 20px; font-weight: 600; color: #0f172a;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  background: #fff;
}
.faq-question:hover { background: #f1f5f9; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: #c8102e; font-weight: 400; transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.25s, padding 0.25s; font-size: 0.95rem; color: #475569; }
.faq-item.open .faq-answer { padding: 6px 20px 18px; max-height: 500px; }

/* Inline CTA */
.cta-inline {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff; padding: 26px 30px; border-radius: 10px; margin: 30px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.cta-inline p { margin: 0; font-size: 1.05rem; }
.cta-inline .hero-cta { font-size: 1rem; padding: 12px 28px; }

/* Footer */
.footer { background: #0f172a; color: #cbd5e1; padding: 40px 20px 20px; margin-top: 60px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #334155; }
.footer-legal a { color: #cbd5e1; font-size: 0.9rem; }
.footer-legal a:hover { color: #fff; }
.footer-text { text-align: center; font-size: 0.85rem; line-height: 1.6; max-width: 900px; margin: 0 auto; }
.footer-text p { margin-bottom: 10px; }
.footer-badge { display: inline-block; background: #c8102e; color: #fff; padding: 4px 10px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; margin: 0 4px; }
.footer-copy { margin-top: 20px; font-size: 0.8rem; color: #94a3b8; text-align: center; }

/* Static pages */
.page-hero { background: linear-gradient(135deg, #1e293b, #0f172a); color: #fff; padding: 50px 20px; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cbd5e1; }
.page-content { max-width: 900px; margin: 40px auto; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.page-content h2 { border-left: 4px solid #c8102e; padding-left: 14px; }
.page-content strong { color: #0f172a; }

/* Responsive */
@media (max-width: 800px) {
  .games-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.9rem; }
  .hero-sub { font-size: 1.05rem; }
  .article { padding: 24px 20px; }
  .header-nav { display: none; }
  .header-nav.open { display: flex; position: absolute; top: 100%; right: 0; background: #0f172a; flex-direction: column; padding: 20px; gap: 12px; width: 220px; border-left: 3px solid #c8102e; }
  .hamburger { display: block; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .cta-inline { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .games-grid, .reviews-grid { grid-template-columns: 1fr; }
  .passport th { width: 45%; font-size: 0.85rem; padding: 10px; }
  .passport td { font-size: 0.85rem; padding: 10px; }
  .header-cta { padding: 8px 14px; font-size: 0.85rem; }
  .header-logo img { height: 34px; }
}
