/* King Johnnie Casino Review - Premium Dark Theme with Orange Accents */

:root {
  --bg-primary: #000000;
  --bg-secondary: #0d0d0d;
  --bg-card: #1a1a1a;
  --accent-orange: #FF7D00;
  --accent-orange-hover: #FF9A2E;
  --accent-orange-glow: rgba(255, 125, 0, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border-color: #2a2a2a;
  --success-color: #00CC66;
  --warning-color: #FF4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px var(--accent-orange-glow);
  }
  50% {
    box-shadow: 0 4px 35px rgba(255, 125, 0, 0.5);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(13, 13, 13, 0.95) 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.header-cta .btn {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  color: var(--text-primary);
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px var(--accent-orange-glow);
}

.header-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 125, 0, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: url('../img/kash-kings-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(transparent, var(--bg-primary));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  color: var(--text-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 800;
  text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--accent-orange);
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}

.hero-intro {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 125, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
}

.hero-intro p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hero-intro p:last-child {
  margin-bottom: 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   QUICK STATS PANEL
   ============================================ */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: -3rem auto 3rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.stat-item {
  background: linear-gradient(135deg, var(--bg-card) 0%, #222 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 125, 0, 0.15);
  border-color: var(--accent-orange);
}

.stat-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section {
  margin-bottom: 4rem;
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 800;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

h2 .section-icon {
  font-size: 1.5rem;
}

h2::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  margin-left: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem 0;
  color: var(--text-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

h3 .h3-icon {
  color: var(--accent-orange);
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

ul, ol {
  margin: 1.25rem 0 1.25rem 0;
  color: var(--text-secondary);
  list-style: none;
}

li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
}

ol {
  counter-reset: list-counter;
}

ol li {
  counter-increment: list-counter;
}

ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--accent-orange);
  color: var(--text-primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ============================================
   INFO CARDS
   ============================================ */
.info-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-orange);
  border-radius: 12px;
  padding: 2rem;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 125, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.info-card:hover {
  border-left-width: 6px;
  transform: translateX(5px);
  box-shadow: -5px 5px 30px rgba(255, 125, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  font-size: 2rem;
}

.card-title {
  font-size: 1.35rem;
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
}

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 125, 0, 0.2);
  border-color: var(--accent-orange);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: var(--text-primary);
  justify-content: center;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  background: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: transparent;
}

thead {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
}

thead th {
  color: var(--text-primary);
  font-weight: 700;
  padding: 1.25rem 1rem;
  text-align: left;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

thead th:first-child {
  border-radius: 12px 0 0 0;
}

thead th:last-child {
  border-radius: 0 12px 0 0;
}

tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: rgba(255, 125, 0, 0.05);
}

tbody tr:last-child {
  border-bottom: none;
}

tbody td {
  padding: 1.25rem 1rem;
  color: var(--text-secondary);
}

tbody td strong {
  color: var(--accent-orange);
}

/* ============================================
   PROS & CONS GRID
   ============================================ */
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.pros-section,
.cons-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.pros-section {
  border: 2px solid var(--success-color);
}

.cons-section {
  border: 2px solid var(--warning-color);
}

.pros-section::before {
  content: '✓';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  color: rgba(0, 204, 102, 0.08);
  font-weight: 900;
}

.cons-section::before {
  content: '✗';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 100px;
  color: rgba(255, 68, 68, 0.08);
  font-weight: 900;
}

.pros-cons-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pros-section .pros-cons-title {
  color: var(--success-color);
}

.cons-section .pros-cons-title {
  color: var(--warning-color);
}

.pros-cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros-cons-list li {
  padding: 1rem 0;
  padding-left: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.pros-cons-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pros-section .pros-cons-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 20px;
  height: 20px;
  background: var(--success-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.7rem;
}

.cons-section .pros-cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 20px;
  height: 20px;
  background: var(--warning-color);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.7rem;
}

/* Legacy table support */
.pros-cons-table tbody tr td:first-child {
  color: var(--success-color);
}

.pros-cons-table tbody tr td:last-child {
  color: var(--warning-color);
}

/* ============================================
   RATING BOX
   ============================================ */
.rating-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1f1f1f 100%);
  border: 2px solid var(--accent-orange);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(255, 125, 0, 0.2);
}

.rating-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 125, 0, 0.08) 0%, transparent 60%);
  animation: rotateGlow 15s linear infinite;
}

.rating-score {
  position: relative;
  z-index: 1;
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: float 4s ease-in-out infinite;
}

.rating-label {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

.rating-stars {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  font-size: 2rem;
  color: var(--accent-orange);
}

.rating-breakdown {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.rating-metric {
  text-align: center;
}

.rating-metric-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-orange);
  display: block;
}

.rating-metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 125, 0, 0.5);
}

.faq-item.active {
  border-color: var(--accent-orange);
  box-shadow: 0 5px 25px rgba(255, 125, 0, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--accent-orange);
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-toggle {
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem 3.75rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Static FAQ (no JS) */
.faq-item:not(:has(button)) {
  padding: 1.5rem;
}

.faq-item:not(:has(button)) .faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item:not(:has(button)) .faq-answer {
  max-height: none;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  color: var(--text-primary);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 1rem 0.5rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px var(--accent-orange-glow);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 125, 0, 0.5);
  text-decoration: none;
}

.cta-button:active {
  transform: translateY(-1px) scale(1.01);
}

.cta-button.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.cta-button.cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--accent-orange);
  box-shadow: none;
}

.cta-button.cta-secondary:hover {
  background: rgba(255, 125, 0, 0.15);
  box-shadow: 0 5px 25px var(--accent-orange-glow);
}

.cta-icon {
  font-size: 1.2rem;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
  position: relative;
  height: 2px;
  margin: 4rem 0;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.section-divider.with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  height: auto;
}

.section-divider.with-icon::before,
.section-divider.with-icon::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color));
}

.section-divider.with-icon::after {
  background: linear-gradient(90deg, var(--border-color), transparent);
}

.divider-icon {
  padding: 0 2rem;
  font-size: 1.75rem;
  color: var(--accent-orange);
}

/* ============================================
   SECTION WITH BACKGROUND
   ============================================ */
.section-with-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.92)), url('../img/kash-kings-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 4rem calc(50vw - 50% + 1.5rem);
  border-top: 2px solid var(--accent-orange);
  border-bottom: 2px solid var(--accent-orange);
}

/* ============================================
   GAMES GALLERY
   ============================================ */
.games-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}

.game-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 125, 0, 0.25);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.1);
}

.game-card .game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  padding: 2.5rem 1rem 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-card .game-title {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ============================================
   FEATURED BANNER
   ============================================ */
.featured-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 10px 40px rgba(255, 125, 0, 0.2);
}

.featured-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-banner .banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  padding: 4rem 2rem 2rem;
}

.featured-banner .banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.featured-banner .banner-text {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Promo Banner Image (clean, no overlay) */
.promo-banner-image {
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 10px 40px rgba(255, 125, 0, 0.2);
  transition: all 0.3s ease;
}

.promo-banner-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 125, 0, 0.3);
}

.promo-banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   MASCOT IMAGE
   ============================================ */
.mascot-image {
  float: right;
  width: 220px;
  margin: 0 0 1.5rem 2rem;
  border-radius: 16px;
  border: 3px solid var(--accent-orange);
  box-shadow: 0 10px 40px rgba(255, 125, 0, 0.3);
  transition: all 0.3s ease;
}

.mascot-image:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 50px rgba(255, 125, 0, 0.4);
}

/* ============================================
   LINKS
   ============================================ */
a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-orange-hover);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #050505 100%);
  border-top: 1px solid var(--border-color);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.age-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.disclaimer {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 3rem 1.5rem;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .games-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .rating-breakdown {
    grid-template-columns: repeat(2, 1fr);
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  table {
    font-size: 0.875rem;
  }

  thead th,
  tbody td {
    padding: 0.75rem;
  }

  .rating-score {
    font-size: 4rem;
  }

  .mascot-image {
    float: none;
    display: block;
    margin: 1.5rem auto;
    width: 180px;
  }

  .section-with-bg {
    background-attachment: scroll;
    padding: 3rem calc(50vw - 50% + 1rem);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero-intro {
    padding: 1.5rem;
  }

  .header-cta .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
  }

  main {
    padding: 2rem 1rem;
  }

  section {
    margin-bottom: 3rem;
  }

  .quick-stats {
    gap: 1rem;
    padding: 0 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  table {
    font-size: 0.8rem;
  }

  thead th,
  tbody td {
    padding: 0.5rem;
  }

  .games-gallery {
    gap: 0.75rem;
  }

  .game-card .game-overlay {
    opacity: 1;
    padding: 1.5rem 0.75rem 0.75rem;
  }

  .game-card .game-title {
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .rating-score {
    font-size: 3.5rem;
  }

  .rating-breakdown {
    gap: 0.75rem;
  }

  .rating-metric-score {
    font-size: 1.25rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .faq-answer-content {
    padding: 0 1.25rem 1.25rem 2.75rem;
  }
}
