/* ============================================================
   7Slots Kazananlar Vitrini — Portfolio / Case Study Page
   Palette: Trophy Gold + Jackpot Purple
   ============================================================ */

:root {
  --c-primary: #D97706;
  --c-primary-dark: #B45309;
  --c-primary-light: #F59E0B;
  --c-accent: #7C3AED;
  --c-accent-dark: #6D28D9;
  --c-secondary: #0F172A;
  --c-secondary-light: #1E293B;
  --c-bg: #FFFBEB;
  --c-bg-alt: #FEF3C7;
  --c-text: #1E293B;
  --c-text-muted: #64748B;
  --c-border: #E2E8F0;
  --c-white: #FFFFFF;
  --c-success: #10B981;
  --c-danger: #EF4444;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, .12);
  --shadow-card: 0 2px 12px rgba(15, 23, 42, .06);
  --shadow-gold: 0 8px 32px rgba(217, 119, 6, .2);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  --wrap: 1140px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-dark); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: fixed; top: -100px; left: 16px;
  background: var(--c-primary); color: var(--c-white);
  padding: 12px 24px; border-radius: var(--radius-sm);
  z-index: 10000; font-weight: 600;
  transition: top var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
  gap: 8px; white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary); color: var(--c-white); border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-dark); border-color: var(--c-primary-dark); color: var(--c-white);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn-accent {
  background: var(--c-accent); color: var(--c-white); border-color: var(--c-accent);
}
.btn-accent:hover {
  background: var(--c-accent-dark); border-color: var(--c-accent-dark); color: var(--c-white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124, 58, 237, .3);
}
.btn-outline {
  background: transparent; color: var(--c-primary); border-color: var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary); color: var(--c-white); transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--c-secondary); color: var(--c-white);
  padding: 10px 0; font-size: .85rem; text-align: center;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.topbar-badge {
  background: var(--c-danger); color: var(--c-white);
  padding: 2px 10px; border-radius: 50px;
  font-weight: 800; font-size: .7rem; letter-spacing: 1px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}
.topbar-dot { width: 6px; height: 6px; background: var(--c-success); border-radius: 50%; }
.topbar a { color: var(--c-primary-light); font-weight: 700; margin-left: 6px; }
.topbar a:hover { color: #FCD34D; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: var(--c-white); border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 1.2rem; color: var(--c-secondary);
}
.logo:hover { color: var(--c-primary); }
.logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: var(--c-secondary);
  color: var(--c-primary); border-radius: 10px;
  font-weight: 900; font-size: .85rem;
}
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--c-text-muted); font-weight: 600; font-size: .9rem;
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--c-primary);
  transition: width var(--transition);
}
.nav a:hover { color: var(--c-primary); }
.nav a:hover::after { width: 100%; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 14px 0; background: var(--c-bg); }
.breadcrumb ol {
  display: flex; align-items: center; gap: 8px;
  list-style: none; font-size: .85rem; color: var(--c-text-muted);
}
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: var(--c-border); }
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb [aria-current] { color: var(--c-primary); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-secondary) 0%, #1A0A2E 50%, var(--c-secondary-light) 100%);
  padding: 80px 0 60px; overflow: hidden; color: var(--c-white);
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 30% 70%, rgba(217, 119, 6, .12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(124, 58, 237, .1) 0%, transparent 40%);
}
.confetti-particle {
  position: absolute; width: 8px; height: 8px;
  border-radius: 2px; opacity: .4;
  animation: confetti-fall linear infinite;
}
.p1 { background: var(--c-primary-light); left: 10%; animation-duration: 6s; animation-delay: 0s; top: -10px; }
.p2 { background: var(--c-accent); left: 25%; animation-duration: 8s; animation-delay: 1s; top: -10px; }
.p3 { background: #FCD34D; left: 45%; animation-duration: 7s; animation-delay: 2s; top: -10px; }
.p4 { background: var(--c-primary); left: 60%; animation-duration: 9s; animation-delay: .5s; top: -10px; }
.p5 { background: var(--c-accent); left: 80%; animation-duration: 6.5s; animation-delay: 3s; top: -10px; }
.p6 { background: #FCD34D; left: 92%; animation-duration: 7.5s; animation-delay: 1.5s; top: -10px; }
@keyframes confetti-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: .6; }
  100% { transform: translateY(600px) rotate(720deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(217, 119, 6, .2); border: 1px solid rgba(217, 119, 6, .4);
  color: var(--c-primary-light);
  padding: 6px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 18px;
}
.hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--c-primary-light); display: block; }
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero-counter {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 48px; display: inline-block;
  margin-bottom: 32px; backdrop-filter: blur(8px);
}
.counter-label {
  display: block; font-size: .8rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.counter-value {
  display: block; font-size: 3.5rem; font-weight: 900;
  color: var(--c-primary-light); line-height: 1;
}
.counter-suffix {
  display: block; font-size: .85rem; color: rgba(255,255,255,.4);
  margin-top: 6px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 80px 0; }
section h2 {
  font-size: 2.2rem; font-weight: 900;
  text-align: center; margin-bottom: 12px; color: var(--c-secondary);
}
.section-desc {
  text-align: center; color: var(--c-text-muted);
  font-size: 1.05rem; margin-bottom: 48px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--c-white); padding: 32px 0;
  border-bottom: 1px solid var(--c-border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-item { text-align: center; }
.stat-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.stat-value { display: block; font-size: 1.4rem; color: var(--c-secondary); }
.stat-label {
  display: block; font-size: .75rem; color: var(--c-text-muted);
  text-transform: uppercase; letter-spacing: .5px; margin-top: 2px;
}

/* ============================================================
   FEATURED CASE
   ============================================================ */
.featured { background: var(--c-bg); }
.featured-card {
  max-width: 860px; margin: 0 auto; position: relative;
  background: linear-gradient(135deg, var(--c-secondary) 0%, #1A0A2E 100%);
  border-radius: var(--radius-lg); overflow: hidden;
  color: var(--c-white);
  box-shadow: var(--shadow-lg);
  animation: featured-glow 4s ease-in-out infinite;
}
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 12px 48px rgba(217, 119, 6, .15); }
  50% { box-shadow: 0 12px 48px rgba(217, 119, 6, .35), 0 0 80px rgba(217, 119, 6, .1); }
}
.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--c-primary); color: var(--c-white);
  padding: 6px 18px; border-radius: 50px;
  font-size: .7rem; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase;
}
.featured-inner {
  display: flex; gap: 40px; padding: 48px; align-items: center;
}
.featured-avatar-wrap { flex-shrink: 0; text-align: center; }
.featured-avatar {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.8rem;
  box-shadow: 0 8px 32px rgba(217, 119, 6, .3);
  margin-bottom: 12px;
}
.featured-game-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 4px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
}
.featured-info h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 4px; }
.featured-meta { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.featured-amounts { display: flex; gap: 24px; margin-bottom: 16px; }
.featured-multiplier {
  font-size: 1.1rem; font-weight: 800;
  color: var(--c-accent); background: rgba(124, 58, 237, .15);
  padding: 4px 14px; border-radius: 50px;
}
.featured-win {
  font-size: 2rem; font-weight: 900; color: var(--c-primary-light);
}
.featured-quote {
  font-size: .95rem; color: rgba(255,255,255,.7);
  line-height: 1.7; font-style: italic; margin-bottom: 20px;
  border-left: 3px solid var(--c-primary); padding-left: 16px;
}

/* ============================================================
   CASE GRID
   ============================================================ */
.cases { background: var(--c-white); }
.case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.case-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 28px;
  position: relative; transition: all var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow); transform: translateY(-6px);
  border-color: var(--c-primary);
}
.case-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 3px 12px; border-radius: 50px;
  font-size: .65rem; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-megawin { background: rgba(217, 119, 6, .1); color: var(--c-primary); }
.badge-jackpot { background: rgba(124, 58, 237, .1); color: var(--c-accent); }
.badge-canli { background: rgba(16, 185, 129, .1); color: var(--c-success); }
.badge-turnuva { background: rgba(239, 68, 68, .1); color: var(--c-danger); }
.badge-freespin { background: rgba(59, 130, 246, .1); color: #3B82F6; }
.case-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.case-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; color: var(--c-white);
}
.case-header strong { display: block; font-size: .95rem; color: var(--c-secondary); }
.case-date { font-size: .75rem; color: var(--c-text-muted); }
.case-game {
  font-size: .8rem; font-weight: 700; color: var(--c-accent);
  margin-bottom: 10px;
}
.case-amounts { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.case-multi {
  font-size: .8rem; font-weight: 800; color: var(--c-accent);
  background: rgba(124, 58, 237, .08); padding: 2px 10px; border-radius: 50px;
}
.case-win { font-size: 1.5rem; color: var(--c-primary); }
.case-quote {
  font-size: .85rem; color: var(--c-text-muted);
  line-height: 1.6; font-style: italic; margin-bottom: 14px;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section { background: var(--c-bg); }
.timeline {
  max-width: 700px; margin: 0 auto; position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
  border-radius: 50px;
}
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -33px; top: 6px;
  width: 14px; height: 14px;
  background: var(--c-primary);
  border: 3px solid var(--c-bg);
  border-radius: 50%;
  z-index: 1;
}
.tl-current .tl-dot {
  background: var(--c-accent);
  box-shadow: 0 0 16px rgba(124, 58, 237, .5);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(124, 58, 237, .3); }
  50% { box-shadow: 0 0 20px rgba(124, 58, 237, .6); }
}
.tl-content {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 20px 24px;
  transition: all var(--transition);
}
.tl-item:hover .tl-content { box-shadow: var(--shadow); transform: translateX(4px); }
.tl-year {
  font-size: .75rem; font-weight: 800; color: var(--c-primary);
  text-transform: uppercase; letter-spacing: 1px;
}
.tl-content h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--c-secondary);
  margin: 4px 0 6px;
}
.tl-content p { font-size: .9rem; color: var(--c-text-muted); line-height: 1.6; }

/* ============================================================
   GAME SHOWCASE
   ============================================================ */
.game-showcase { background: var(--c-white); }
.game-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.game-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 24px 16px;
  text-align: center; transition: all var(--transition);
}
.game-card:hover {
  border-color: var(--c-primary); box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.game-mockup {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: var(--c-white);
  margin: 0 auto 12px;
}
.gm-1 { background: linear-gradient(135deg, #1E40AF, #60A5FA); }
.gm-2 { background: linear-gradient(135deg, #DB2777, #F472B6); }
.gm-3 { background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary-light)); }
.gm-4 { background: linear-gradient(135deg, var(--c-accent-dark), #A78BFA); }
.gm-5 { background: linear-gradient(135deg, #059669, #34D399); }
.game-card h3 { font-size: .9rem; font-weight: 800; color: var(--c-secondary); margin-bottom: 4px; }
.game-provider { font-size: .75rem; color: var(--c-text-muted); display: block; margin-bottom: 14px; }
.game-stats {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px;
}
.game-stats div { display: flex; justify-content: space-between; font-size: .8rem; }
.gs-label { color: var(--c-text-muted); }
.game-stats strong { color: var(--c-primary); }

/* ============================================================
   HOW TO WIN
   ============================================================ */
.how-to-win {
  background: linear-gradient(135deg, var(--c-secondary) 0%, #1A0A2E 100%);
  color: var(--c-white);
}
.how-to-win h2 { color: var(--c-white); }
.how-to-win .section-desc { color: rgba(255,255,255,.6); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,.1); transform: translateY(-4px);
}
.step-num {
  position: absolute; top: 12px; right: 16px;
  font-size: 2.5rem; font-weight: 900;
  color: rgba(217, 119, 6, .15); line-height: 1;
}
.step-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.step-card p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============================================================
   SECURITY
   ============================================================ */
.security {
  background: var(--c-bg); padding: 40px 0;
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
}
.security-grid {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.security-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--c-text-muted); font-weight: 600;
}
.security-icon { font-size: 1.3rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--c-white); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item summary {
  padding: 18px 24px; font-weight: 700; font-size: 1rem;
  cursor: pointer; color: var(--c-secondary);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--c-primary); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--c-border); }
.faq-item p {
  padding: 18px 24px; font-size: .95rem;
  color: var(--c-text-muted); line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--c-secondary) 0%, #1A0A2E 100%);
  color: var(--c-white); text-align: center; padding: 80px 0;
}
.final-cta h2 { color: var(--c-white); margin-bottom: 16px; }
.final-cta > .wrap > p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-secondary); color: rgba(255,255,255,.65);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo .logo-icon { background: rgba(255,255,255,.1); }
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-links h4 {
  color: var(--c-white); font-size: .9rem; font-weight: 800;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55); font-size: .85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: .8rem; margin-bottom: 4px; }
.footer-disclaimer { color: rgba(255,255,255,.4); font-size: .75rem; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-secondary); color: var(--c-white);
  padding: 16px 24px; z-index: 9999;
  display: none; justify-content: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.cookie-inner {
  display: flex; align-items: center; gap: 20px;
  max-width: var(--wrap); flex-wrap: wrap; justify-content: center;
}
.cookie-inner p { font-size: .85rem; color: rgba(255,255,255,.8); }
.cookie-inner a { color: var(--c-primary-light); }

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9998; }
.chat-btn {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: var(--c-primary);
  color: var(--c-white); border-radius: 50%; font-size: 1.5rem;
  box-shadow: var(--shadow-gold); transition: all var(--transition);
}
.chat-btn:hover {
  background: var(--c-primary-dark); transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(217, 119, 6, .45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.4rem; }
  .counter-value { font-size: 2.8rem; }
  .featured-inner { flex-direction: column; text-align: center; }
  .featured-quote { border-left: none; padding-left: 0; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
  section h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .counter-value { font-size: 2.2rem; }
  .hero-counter { padding: 24px 28px; }
  .case-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .featured-card { padding: 0; }
  .featured-inner { padding: 32px 24px; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .wrap { padding: 0 16px; }
  .hero { padding: 40px 0 30px; }
  .hero h1 { font-size: 1.7rem; }
  .counter-value { font-size: 1.8rem; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .featured-amounts { flex-direction: column; gap: 8px; }
  .case-expanded-inner { grid-template-columns: 1fr; }
}

/* ===== FILTER BUTTONS ===== */
.filter-bar {
  display: flex;
  gap: var(--s-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-xl);
}
.filter-btn {
  padding: var(--s-sm) var(--s-md);
  border: 2px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text-muted);
  background: var(--c-card);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: rgba(16,185,129,0.05);
}
.filter-count {
  display: inline-block;
  background: var(--c-bg-alt);
  color: var(--c-text-muted);
  font-size: 0.625rem;
  padding: 1px 6px;
  border-radius: 100px;
  margin-left: 4px;
}

/* ===== EXPANDED CASE STUDY ===== */
.case-expanded {
  padding: var(--s-3xl) var(--s-md);
  background: var(--c-bg-alt);
}
.case-expanded h2 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.case-expanded .subtitle { text-align: center; color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.case-expanded-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--c-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--c-primary);
}
.ce-header {
  padding: var(--s-xl);
  display: flex;
  align-items: center;
  gap: var(--s-lg);
  border-bottom: 1px solid var(--c-border);
}
.ce-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ce-name { font-size: 1.125rem; font-weight: 700; }
.ce-game { font-size: 0.875rem; color: var(--c-text-muted); }
.case-expanded-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.ce-phase {
  padding: var(--s-lg);
  border-right: 1px solid var(--c-border);
  text-align: center;
}
.ce-phase:last-child { border-right: none; }
.ce-phase-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: var(--s-sm);
  font-weight: 600;
}
.ce-phase-value { font-size: 1.25rem; font-weight: 700; }
.ce-phase-value.win { color: var(--c-primary); }
.ce-phase-desc { font-size: 0.75rem; color: var(--c-text-muted); margin-top: 4px; }
.ce-story {
  padding: var(--s-xl);
  border-top: 1px solid var(--c-border);
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* ===== VIDEO TESTIMONIAL ===== */
.video-testimonial { padding: var(--s-3xl) var(--s-md); background: var(--c-bg); text-align: center; }
.video-testimonial h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: var(--s-xs); }
.video-testimonial .subtitle { color: var(--c-text-muted); margin-bottom: var(--s-xl); }
.vt-player {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0F0F0F, #2A2A2A);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.vt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
}
.vt-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  transition: transform 0.2s, background 0.2s;
}
.vt-player:hover .vt-play { transform: scale(1.1); background: var(--c-primary); }
.vt-quote { color: white; font-size: 0.875rem; max-width: 400px; font-style: italic; }
.vt-badge {
  position: absolute;
  top: var(--s-md);
  left: var(--s-md);
  background: var(--c-primary);
  color: white;
  padding: 4px 12px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
}
