/* ===================================================
   MOSS Casino - Design System & Stylesheet
   Refined to match exact screenshot colors & typography:
   - Deep forest/charcoal blacks (#060b08, #0b1510)
   - Electric Moss Green (#00e676, #22c55e, #34d399)
   - Champagne Warm Gold (#e6c587, #d4af37, #f3d489)
   - Oswald condensed uppercase headings + Outfit/Plus Jakarta Sans UI
   =================================================== */

:root {
  /* Dark Forest / Charcoal Bases */
  --bg-dark: #060b08;
  --bg-darker: #040806;
  --bg-header: #08100c;
  --bg-surface: #0c1712;
  --bg-card: rgba(11, 21, 16, 0.88);
  --bg-card-hover: rgba(16, 31, 24, 0.95);
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-moss: rgba(34, 197, 94, 0.22);
  --border-gold: rgba(212, 175, 55, 0.3);

  /* Electric Moss Green Accents */
  --moss-electric: #00e676;
  --moss-primary: #22c55e;
  --moss-light: #4ade80;
  --moss-glow: rgba(0, 230, 118, 0.38);

  /* Warm Champagne Gold Accents */
  --gold-primary: #e6c587;
  --gold-warm: #d8af65;
  --gold-bright: #f6dfa4;
  --gold-glow: rgba(216, 175, 101, 0.35);

  /* Typography Colors */
  --text-white: #ffffff;
  --text-muted: #83998e;
  --text-dark: #08120b;
  --text-dark-btn: #121212;

  /* Fonts */
  --font-condensed: 'Oswald', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 230, 118, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(216, 175, 101, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Ambient Glow Orbs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  top: -80px;
  left: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.09), transparent 70%);
}
.glow-2 {
  top: 100px;
  right: -50px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(216, 175, 101, 0.08), transparent 70%);
}
.glow-3 {
  bottom: 80px;
  left: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05), transparent 70%);
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===================================================
   Header & Navigation
   =================================================== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 16, 12, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
  transition: var(--transition-fast);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(216, 175, 101, 0.45));
  transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

/* Header Controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-round-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0d1712;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.header-round-btn:hover {
  background: rgba(0, 230, 118, 0.15);
  border-color: var(--moss-electric);
  color: var(--moss-electric);
}

.lang-selector {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-white);
  background: #0d1712;
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}

/* ===================================================
   Buttons
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-smooth);
  position: relative;
  white-space: nowrap;
}

/* Warm Champagne Gold Button ("Kayıt Ol") */
.btn-gold {
  background: linear-gradient(135deg, #f6dfa4 0%, #e6c587 50%, #d8af65 100%);
  color: var(--text-dark-btn);
  font-weight: 800;
  box-shadow: 0 0 18px rgba(216, 175, 101, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff 0%, #f6dfa4 50%, #e6c587 100%);
  box-shadow: 0 0 26px rgba(216, 175, 101, 0.6);
}

/* Electric Moss Green Primary Button ("MOSS Casino Giriş") */
.btn-primary {
  background: linear-gradient(100deg, #34d399 0%, #00e676 50%, #16a34a 100%);
  color: #041208;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(0, 230, 118, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(0, 230, 118, 0.65);
}

.btn-outline {
  background: #0d1a14;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-outline:hover {
  background: #13241b;
  border-color: var(--moss-electric);
  color: var(--moss-electric);
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.2);
}

.btn-lg {
  padding: 13px 32px;
  font-size: 1.08rem;
}

.btn-block {
  width: 100%;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 80%
  );
  transform: rotate(25deg) translateY(-100%);
  animation: shine 4.5s infinite;
}

@keyframes shine {
  0% { transform: rotate(25deg) translateY(-120%); }
  25%, 100% { transform: rotate(25deg) translateY(120%); }
}

/* ===================================================
   Hero Section
   =================================================== */
.hero-section {
  padding: 54px 0 70px;
  position: relative;
  background: 
    linear-gradient(180deg, rgba(6, 11, 8, 0.88) 0%, rgba(6, 11, 8, 0.94) 65%, #060b08 100%),
    radial-gradient(circle at center, rgba(0, 230, 118, 0.08) 0%, transparent 70%),
    url('8.png') center top / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badge Row */
.badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.official-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 9999px;
  box-shadow: 0 0 14px rgba(0, 230, 118, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--moss-electric);
  box-shadow: 0 0 10px var(--moss-electric);
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.badge-text {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--moss-electric);
}

.telegram-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(34, 158, 217, 0.1);
  border: 1px solid rgba(34, 158, 217, 0.3);
  border-radius: 9999px;
  color: #38bdf8;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

.telegram-tag-badge:hover {
  background: rgba(34, 158, 217, 0.2);
  color: #ffffff;
}

/* Bonus Tag Pill */
.bonus-tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: linear-gradient(90deg, rgba(216, 175, 101, 0.22) 0%, rgba(216, 175, 101, 0.08) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 9999px;
  box-shadow: 0 0 16px rgba(216, 175, 101, 0.25);
}

.bonus-pill-text {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(216, 175, 101, 0.4);
}

/* Condensed Hero Typography */
.hero-title {
  font-family: var(--font-condensed);
  font-size: 4.5rem;
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
}

.title-bonus-badge {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(216, 175, 101, 0.5);
  margin-bottom: 4px;
}

.highlight-gold {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #f6dfa4 40%, #e6c587 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(216, 175, 101, 0.5);
}

.title-top {
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.title-main {
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight-moss {
  color: var(--moss-electric);
  text-shadow: 
    0 0 30px var(--moss-glow),
    0 0 60px rgba(0, 230, 118, 0.25);
}

.hero-tagline {
  margin-top: -6px;
}

.tagline-badge {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-white);
  text-transform: uppercase;
}

.text-gold {
  color: var(--gold-primary);
  text-shadow: 0 0 12px var(--gold-glow);
}

.text-moss {
  color: var(--moss-electric);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.arrow-icon {
  transition: transform 0.2s ease;
}

.main-action-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #0d1712;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #9cb1a6;
  transition: var(--transition-fast);
}

.trust-item:hover {
  background: #122119;
  border-color: var(--moss-electric);
  color: var(--text-white);
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--moss-electric);
  flex-shrink: 0;
}

/* Social Bar */
.social-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0d1712;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #83998e;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.social-btn:hover {
  background: #14241b;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.social-btn:hover svg {
  transform: scale(1.15);
}

.app-download-btn:hover {
  color: var(--moss-electric) !important;
  border-color: var(--moss-electric) !important;
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.35);
}

/* ===================================================
   Right Interactive Card ("SON KAZANANLAR")
   =================================================== */
.hero-right {
  display: flex;
  justify-content: center;
}

.interactive-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, #0d1913 0%, #08100c 100%);
  border: 1px solid var(--border-moss);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 
    0 24px 50px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(0, 230, 118, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 45px rgba(0, 230, 118, 0.22);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-logo-mini-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px var(--moss-glow);
}

.card-brand-title {
  font-family: var(--font-condensed);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--moss-electric);
}

.card-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--moss-electric);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--moss-electric);
  animation: pulse-glow 1.2s infinite;
}

.card-tabs {
  display: flex;
  gap: 8px;
  margin: 14px 0 12px;
  background: #060b08;
  padding: 4px;
  border-radius: 10px;
}

.card-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.card-tab.active {
  background: #112017;
  color: var(--gold-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.card-body {
  min-height: 220px;
}

.live-feed {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #08120c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: slideIn 0.4s ease-out forwards;
}

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

.feed-item:hover {
  background: #0e1c14;
  border-color: var(--border-moss);
}

.feed-player-info {
  display: flex;
  flex-direction: column;
}

.feed-player-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
}

.feed-game-name {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.feed-win-amount {
  font-family: var(--font-condensed);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--moss-electric);
  text-shadow: 0 0 12px rgba(0, 230, 118, 0.35);
}

.card-footer {
  margin-top: 16px;
}

/* ===================================================
   Arena Promo Banner (8.png Visual)
   =================================================== */
.arena-banner-section {
  padding: 10px 0 45px;
}

.arena-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-moss);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 230, 118, 0.14);
  min-height: 220px;
  display: flex;
  align-items: center;
}

.arena-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arena-banner-card:hover .arena-banner-img {
  transform: scale(1.03);
}

.arena-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 34px 40px;
  background: linear-gradient(90deg, rgba(6, 11, 8, 0.94) 0%, rgba(6, 11, 8, 0.76) 50%, rgba(6, 11, 8, 0.25) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.arena-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.4);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--moss-electric);
  letter-spacing: 0.6px;
}

.arena-title {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.arena-desc {
  font-size: 0.98rem;
  color: #cbd5e1;
  max-width: 540px;
  line-height: 1.5;
}

.arena-btn {
  margin-top: 4px;
}

/* ===================================================
   Features / Value Pillars
   =================================================== */
.features-section {
  padding: 46px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: #070e0a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-box {
  background: #0b1610;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 26px;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-moss);
  background: #0f1e16;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 230, 118, 0.08);
}

.feature-box-highlight {
  border-color: var(--border-gold);
  background: #101c15;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(216, 175, 101, 0.15);
  position: relative;
}

.feature-box-highlight:hover {
  border-color: var(--gold-primary);
  background: #15251c;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(216, 175, 101, 0.3);
}

.feature-badge-top {
  position: absolute;
  top: -11px;
  right: 18px;
  background: linear-gradient(90deg, #dfb875, #f3d489);
  color: #121212;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(216, 175, 101, 0.5);
  letter-spacing: 0.5px;
}

.icon-gold {
  background: rgba(216, 175, 101, 0.12) !important;
  border-color: rgba(216, 175, 101, 0.35) !important;
}

.feature-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-box h3 {
  font-family: var(--font-condensed);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--text-white);
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===================================================
   FAQ Section
   =================================================== */
.faq-section {
  padding: 60px 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.section-title {
  font-family: var(--font-condensed);
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--text-white);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #0b1610;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-item.active {
  border-color: var(--border-moss);
  background: #0f1f17;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-arrow {
  color: var(--moss-electric);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 18px;
}

/* ===================================================
   Footer
   =================================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  padding: 38px 0 28px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(216, 175, 101, 0.3));
  margin-bottom: 8px;
}

.footer-license {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 6px;
  max-width: 480px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.compliance-badge {
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--gold-primary);
}

.footer-bottom {
  text-align: center;
  color: #556960;
  font-size: 0.82rem;
}

/* ===================================================
   Responsive Media Queries
   =================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-title {
    font-size: 3.4rem;
  }

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

@media (max-width: 640px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 30px 0 44px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .btn-bonus-talep {
    display: none;
  }
}
