/* =============================================
   SWEET BONANZA DEMO - STYLE.CSS
   Theme: Candy/Pastel - krllgrs.xyz Renkleri
   ============================================= */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  /* Colors - krllgrs.xyz Paleti */
  --primary: #FDA2C0;
  --primary-light: #FFB8D0;
  --primary-dark: #E8899A;
  --secondary: #CFB2F7;
  --secondary-dark: #0b1120;
  --accent: #ffc618;
  --accent-light: #FDDD56;
  --accent-glow: rgba(255, 198, 24, 0.5);

  /* Çark Renkleri */
  --candy-pink: #FDA2C0;
  --candy-yellow: #FDDD56;
  --candy-purple: #CFB2F7;
  --candy-turquoise: #73DFD4;
  --candy-coral: #FF827D;
  --candy-orange: #FDB875;
  --candy-blue: #74D7F7;
  --candy-gold: #F1BD44;

  /* Backgrounds */
  --bg: #0b1120;
  --bg-alt: #010d23;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-solid: #141B2D;
  --bg-light: #f5f1f1;

  /* Text */
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-light: rgba(255, 255, 255, 0.5);
  --text-dark: #0f1031;

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, #0b1120 0%, #010d23 100%);
  --gradient-candy: linear-gradient(135deg, #FDA2C0 0%, #CFB2F7 50%, #73DFD4 100%);
  --gradient-gold: linear-gradient(135deg, #ffc618 0%, #F1BD44 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);

  /* Typography */
  --heading-font: 'Nunito', system-ui, -apple-system, sans-serif;
  --body-font: 'Open Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --shadow-candy: 0 0 30px rgba(253, 162, 192, 0.3);

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* =============================================
   ANIMATIONS KEYFRAMES
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-5deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow: 0 0 50px var(--accent-glow), 0 0 80px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.3);
  }
}

@keyframes candySpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes colorShift {
  0% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(30deg); }
  100% { filter: hue-rotate(0deg); }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 800px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

a:hover {
  color: var(--accent-light);
}

strong {
  font-weight: 600;
  color: var(--text);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

/* Hero Background Image */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/sweet-bonanza-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

/* Candy Glow Overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(253,162,192,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 30% 20%, rgba(207,178,247,0.1) 0%, transparent 40%),
              radial-gradient(ellipse at 70% 80%, rgba(115,223,212,0.1) 0%, transparent 40%);
  pointer-events: none;
}

/* Floating Candy Elements */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-particle:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: var(--candy-pink);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.hero-particle:nth-child(2) {
  top: 60%;
  left: 90%;
  width: 60px;
  height: 60px;
  background: var(--candy-purple);
  opacity: 0.4;
  animation: floatReverse 7s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-particle:nth-child(3) {
  top: 20%;
  left: 85%;
  width: 100px;
  height: 100px;
  background: var(--candy-turquoise);
  opacity: 0.3;
  animation: float 9s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-particle:nth-child(4) {
  top: 80%;
  left: 8%;
  width: 70px;
  height: 70px;
  background: var(--candy-yellow);
  opacity: 0.5;
  animation: floatReverse 6s ease-in-out infinite;
  animation-delay: 0.5s;
}

.hero-particle:nth-child(5) {
  top: 45%;
  left: 3%;
  width: 50px;
  height: 50px;
  background: var(--candy-coral);
  opacity: 0.4;
  animation: float 10s ease-in-out infinite;
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl) var(--space-md);
}

/* Hero Game Image */
.hero-game-image {
  max-width: 400px;
  margin: 0 auto var(--space-lg);
  animation: fadeInDown 1s var(--ease-out);
}

.hero-game-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 198, 24, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-md);
  animation: fadeInDown 0.8s var(--ease-out);
  border: 1px solid rgba(255, 198, 24, 0.3);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

/* Hero Title */
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s var(--ease-out);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--candy-pink) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

/* =============================================
   CTA BUTTON
   ============================================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 800;
  font-family: var(--heading-font);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(255, 198, 24, 0.4);
  transition: all var(--duration-normal) var(--ease-out);
  animation: scaleIn 0.8s var(--ease-bounce) 0.4s both, glow 2s ease-in-out infinite;
  text-decoration: none;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 50px rgba(255, 198, 24, 0.6), 0 0 80px rgba(255, 198, 24, 0.4);
  color: var(--text-dark);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(-2px) scale(1);
}

.cta-button svg {
  width: 24px;
  height: 24px;
  transition: transform var(--duration-fast) ease;
}

.cta-button:hover svg {
  transform: scale(1.15);
}

/* =============================================
   HERO STATS
   ============================================= */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  animation: fadeInUp 1s var(--ease-out) 0.6s both;
}

.hero-stat {
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--duration-fast) ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.hero-stat-value {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  padding: var(--space-sm) 0;
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
  font-size: 0.875rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
}

.breadcrumb li::after {
  content: '›';
  color: var(--text-light);
  font-weight: 300;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb li:last-child {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* =============================================
   SECTIONS
   ============================================= */
section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

/* =============================================
   INFO TABLE
   ============================================= */
.info-table-wrapper {
  background: var(--bg-card-solid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  transition: background var(--duration-fast) ease;
}

.info-table tr:hover {
  background: rgba(255, 198, 24, 0.05);
}

.info-table th,
.info-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table th {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--text);
  width: 40%;
  background: transparent;
}

.info-table td {
  color: var(--text-muted);
  font-weight: 500;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.table-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.table-badge-secondary {
  background: var(--gradient-candy);
  color: var(--text-dark);
}

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--bg-card-solid);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-candy);
  transition: height var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-candy);
  border-color: rgba(253, 162, 192, 0.3);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-candy);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(253, 162, 192, 0.3);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.content-section ul,
.content-section ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.content-section li {
  margin-bottom: var(--space-xs);
  color: var(--text-muted);
  line-height: 1.8;
}

.content-section li strong {
  color: var(--accent);
}

.info-box {
  background: linear-gradient(135deg, rgba(255,198,24,0.1), rgba(253,162,192,0.1));
  border-left: 4px solid var(--accent);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-lg) 0;
}

.info-box p {
  margin-bottom: 0;
  color: var(--text);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card-solid);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-fast) ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  transition: background var(--duration-fast) ease;
  gap: var(--space-sm);
}

.faq-question:hover {
  background: rgba(255, 198, 24, 0.05);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all var(--duration-normal) var(--ease-out);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gradient-gold);
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  margin-bottom: var(--space-md);
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.footer-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: var(--space-md) auto;
}

.footer-contact {
  margin: var(--space-lg) 0;
}

.footer-section-title {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item:hover {
  color: var(--accent);
  background: rgba(255, 198, 24, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 198, 24, 0.3);
}

.footer-contact-item svg {
  opacity: 0.7;
  width: 18px;
  height: 18px;
}

.footer-legal {
  margin-top: var(--space-md);
}

.footer-legal p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.footer-source a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-source a:hover {
  color: var(--accent);
}

/* =============================================
   ARTICLE META (Author & Date)
   ============================================= */
.article-meta-section {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-meta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.author-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-candy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1rem;
  color: var(--bg);
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.author-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-dates {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: var(--text-light);
}

.date-separator {
  color: var(--text-light);
  opacity: 0.5;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section {
  padding: var(--space-xl) 0;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.intro-text:first-of-type {
  color: var(--text);
}

/* =============================================
   EDITOR NOTE
   ============================================= */
.editor-note {
  background: linear-gradient(135deg, rgba(255, 198, 24, 0.1), rgba(253, 162, 192, 0.05));
  border-left: 4px solid var(--accent);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-md) 0;
}

.editor-note strong {
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.editor-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   SECTION INTRO
   ============================================= */
.section-intro {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.section-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 2.5rem;
    --space-2xl: 3rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-game-image {
    max-width: 280px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .hero-stat {
    min-width: 100px;
    padding: var(--space-xs) var(--space-sm);
  }

  .hero-stat-value {
    font-size: 1.25rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .info-table th,
  .info-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-md);
  }

  .footer-contact-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .hero-game-image {
    max-width: 220px;
  }

  .info-table th {
    width: 45%;
  }

  .hero-particle:nth-child(3),
  .hero-particle:nth-child(4),
  .hero-particle:nth-child(5) {
    display: none;
  }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-lg { margin-bottom: var(--space-lg); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
