/* Renkler theme.css'teki --ee-* token'larindan gelir; buradaki --bc-* adlari
   sayfa genelinde zaten kullanildigi icin korunuyor, sadece kaynagi degisti. */
:root {
  --bc-bg: var(--ee-bg);
  --bc-bg-elevated: var(--ee-surface);
  --bc-bg-card: var(--ee-surface-glass);
  --bc-bg-card-solid: var(--ee-surface-2);
  --bc-green: var(--ee-accent);
  --bc-green-dark: var(--ee-accent-strong);
  --bc-green-glow: var(--ee-glow);
  --bc-purple: var(--ee-magenta);
  --bc-purple-dark: var(--ee-accent-strong);
  --bc-blue: var(--ee-info);
  --bc-orange: var(--ee-gold);
  --bc-gold: var(--ee-gold);
  --bc-teal: var(--ee-success);
  --bc-text: var(--ee-text);
  --bc-text-muted: var(--ee-muted);
  --bc-border: var(--ee-border);
  --bc-radius: 20px;
  --bc-radius-md: 16px;
  --bc-radius-sm: 12px;
  --bc-shadow: var(--ee-shadow);
  --bc-header-h: 76px;
  --bc-scrollbar-track: rgba(var(--ee-bg-rgb), 0.95);
  --bc-scrollbar-track-border: var(--ee-border);
  --bc-scrollbar-page-bg: var(--ee-bg);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  direction: ltr;
  overflow-x: hidden;
  max-width: 100%;
  scroll-padding-top: calc(var(--bc-header-h) + 16px);
}

body.bc-landing {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bc-bg);
  color: var(--bc-text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  padding-top: var(--bc-header-h);
  -webkit-tap-highlight-color: transparent;
}

body.bc-landing a,
body.bc-landing button {
  -webkit-tap-highlight-color: transparent;
}

body.bc-landing a:focus:not(:focus-visible),
body.bc-landing button:focus:not(:focus-visible) {
  outline: none;
}

body.bc-landing a:focus-visible,
body.bc-landing button:focus-visible {
  outline: 2px solid rgba(var(--ee-accent-rgb), 0.45);
  outline-offset: 2px;
}

main {
  overflow-x: clip;
}

body.bc-landing::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 40% at 10% 10%, rgba(var(--ee-accent-rgb), 0.05), transparent),
    radial-gradient(ellipse 50% 35% at 90% 5%, rgba(var(--ee-magenta-rgb), 0.05), transparent),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(var(--ee-accent-rgb), 0.035), transparent);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.bc-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bc-hero__grid > *,
.bc-stats__grid > *,
.bc-how__grid > *,
.bc-earn__grid > *,
.bc-footer__main > * {
  min-width: 0;
}

.bc-text-accent { color: var(--bc-green); }

/* ── Buttons ── */
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: 0.925rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.bc-btn:hover { transform: translateY(-1px); }
.bc-btn--lg { padding: 14px 28px; font-size: 1rem; }
.bc-btn--sm { padding: 9px 18px; font-size: 0.875rem; }

/* Mor zeminde koyu metin okunmuyordu; beyaz metin + koyudan acik gradyan. */
.bc-btn--primary {
  background: var(--ee-grad);
  color: #fff;
  box-shadow: var(--ee-shadow-accent);
}
.bc-btn--primary:hover {
  background: var(--ee-accent-hover, var(--ee-grad-hover));
  box-shadow: var(--ee-shadow-accent);
}

/* Ikincil buton: notr yuzey + ince kenarlik, neon yok. */
.bc-btn--purple-outline {
  background: var(--ee-surface);
  border-color: var(--ee-border-strong);
  color: var(--bc-text);
}
.bc-btn--purple-outline:hover {
  background: var(--ee-surface-3);
  border-color: var(--ee-border-strong);
}

.bc-btn--blue {
  background: linear-gradient(135deg, var(--bc-blue), var(--ee-accent-strong));
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

/* ── Header ── */
.bc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: var(--bc-bg);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bc-header.is-scrolled {
  background: rgba(var(--ee-bg-rgb), 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--bc-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.bc-header__inner {
  min-height: var(--bc-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bc-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.bc-logo__img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.bc-logo--sm .bc-logo__img {
  height: 40px;
  max-width: 175px;
}

.bc-logo--lg .bc-logo__img {
  height: 44px;
  max-width: 180px;
}

.bc-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--ee-grad);
  color: #fff;
  box-shadow: 0 0 20px var(--bc-green-glow);
}

.bc-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bc-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--bc-text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s, background 0.15s;
}

.bc-nav a:hover,
.bc-nav a.is-active {
  color: var(--bc-text);
  background: rgba(255, 255, 255, 0.05);
}

.bc-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bc-lang { position: relative; }
.bc-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--bc-border);
  background: rgba(var(--ee-surface-rgb), 0.65);
  color: var(--bc-text-muted);
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}
.bc-lang__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  padding: 6px;
  border-radius: var(--bc-radius-sm);
  background: var(--bc-bg-card-solid);
  border: 1px solid var(--ee-border-card);
  box-shadow: var(--bc-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.15s;
}
.bc-lang:hover .bc-lang__menu,
.bc-lang.is-open .bc-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bc-lang__menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--bc-text-muted);
  font-size: 0.875rem;
}
.bc-lang__menu a:hover,
.bc-lang__menu a.is-active {
  background: rgba(var(--ee-accent-rgb), 0.1);
  color: var(--bc-green);
}

.bc-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--bc-border);
  background: rgba(var(--ee-surface-rgb), 0.65);
  padding: 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.bc-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--bc-text);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.18s ease;
  transform-origin: center;
}
.bc-header.is-open .bc-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.bc-header.is-open .bc-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.bc-header.is-open .bc-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.bc-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 20px 16px;
  border-top: 1px solid var(--bc-border);
}
.bc-mobile-nav > a {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--bc-text-muted);
}
.bc-mobile-nav > a:hover { background: rgba(255,255,255,0.04); color: var(--bc-text); }

.bc-mobile-nav__auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0 10px;
  margin-top: 6px;
  border-top: 1px solid var(--bc-border);
}

.bc-mobile-nav__auth .bc-btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.bc-mobile-nav__auth .bc-btn--primary:hover {
  background: var(--ee-grad-hover);
  color: #fff;
  box-shadow: 0 12px 36px var(--bc-green-glow);
}

.bc-mobile-nav__auth .bc-btn--purple-outline:hover {
  background: rgba(var(--ee-magenta-rgb), 0.1);
  border-color: var(--bc-purple);
  color: var(--bc-text);
}

.bc-btn--block {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.bc-mobile-nav__lang {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid var(--bc-border);
}

.bc-mobile-nav__lang-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--ee-border-card);
  border-radius: 10px;
  background: rgba(var(--ee-surface-rgb), 0.65);
  color: var(--bc-text-muted);
  font: inherit;
  font-size: 0.9375rem;
  cursor: pointer;
  text-align: left;
}

.bc-mobile-nav__lang-toggle:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--bc-text);
}

.bc-mobile-nav__lang-current {
  flex: 1;
  min-width: 0;
}

.bc-mobile-nav__lang-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.bc-mobile-nav__lang.is-open .bc-mobile-nav__lang-arrow {
  transform: rotate(180deg);
}

.bc-mobile-nav__lang-list {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-height: min(240px, 42vh);
  overflow-y: auto;
  margin-top: 8px;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(162, 148, 196, 0.35) transparent;
}

.bc-mobile-nav__lang-list::-webkit-scrollbar {
  width: 6px;
}

.bc-mobile-nav__lang-list::-webkit-scrollbar-thumb {
  background: rgba(162, 148, 196, 0.35);
  border-radius: 999px;
}

.bc-mobile-nav__lang.is-open .bc-mobile-nav__lang-list {
  display: flex;
}

.bc-mobile-nav__lang-list a {
  flex: none;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid transparent;
}

.bc-mobile-nav__lang-list a.is-active {
  color: var(--bc-green);
  background: rgba(var(--ee-accent-rgb), 0.08);
  border-color: rgba(var(--ee-accent-rgb), 0.2);
}

/* ── Hero ── */
.bc-hero {
  padding: 56px 0 32px;
  position: relative;
}

.bc-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.bc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(var(--ee-accent-rgb), 0.08);
  border: 1px solid rgba(var(--ee-accent-rgb), 0.2);
  color: var(--bc-green);
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.bc-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.bc-hero__brand {
  display: block;
  color: var(--bc-green);
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.15em;
  text-transform: none;
}

.bc-hero__subtitle {
  margin: 0 0 28px;
  max-width: 500px;
  color: var(--bc-text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.bc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

/* Social proof row */
.bc-social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.bc-social-proof__avatars {
  display: flex;
}

.bc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--bc-bg);
  margin-left: -8px;
}
.bc-avatar:first-child { margin-left: 0; }

.bc-social-proof__text {
  font-size: 0.85rem;
  color: var(--bc-text-muted);
}
.bc-social-proof__text strong { color: var(--bc-text); }

.bc-social-proof__divider {
  width: 1px;
  height: 24px;
  background: var(--bc-border);
}

.bc-social-proof__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--bc-text-muted);
}
.bc-social-proof__rating em { font-style: normal; opacity: 0.7; }

.bc-social-proof__reviews-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.bc-social-proof__reviews-link:hover {
  color: var(--bc-green);
  opacity: 1;
}

.bc-stars { color: var(--bc-green); font-size: 0.75rem; }
.bc-stars--sm { font-size: 0.65rem; }

/* Hero visual */
.bc-hero__visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.bc-hero__content {
  min-width: 0;
  overflow-wrap: anywhere;
}

.bc-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.bc-glow--1 {
  width: 280px; height: 280px;
  background: rgba(var(--ee-accent-rgb), 0.12);
  top: 20%; left: 30%;
}
.bc-glow--2 {
  width: 200px; height: 200px;
  background: rgba(var(--ee-magenta-rgb), 0.1);
  bottom: 10%; right: 20%;
}

.bc-orbit {
  position: absolute;
  border: 1px solid rgba(var(--ee-accent-rgb), 0.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.bc-orbit--1 { width: 400px; height: 400px; }
.bc-orbit--2 { width: 300px; height: 300px; border-color: rgba(var(--ee-accent-rgb),0.18); }

.bc-float {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ee-surface-2);
  border: 1px solid var(--bc-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: bcFloat 4s ease-in-out infinite;
  font-size: 1rem;
}
.bc-float--play { top: 8%; left: 6%; color: var(--bc-green); }
.bc-float--menu { top: 14%; right: 4%; color: var(--bc-green); animation-delay: 0.5s; }
.bc-float--check { bottom: 30%; left: 2%; color: var(--bc-green); animation-delay: 1s; }
.bc-float--coin { bottom: 16%; right: 6%; color: var(--bc-green); animation-delay: 0.3s; }

.bc-phone {
  position: relative;
  z-index: 2;
  width: 252px;
  padding: 9px;
  border-radius: 34px;
  background: linear-gradient(165deg, var(--ee-surface-3) 0%, var(--ee-surface-2) 55%, var(--ee-bg-2) 100%);
  border: 2px solid rgba(var(--ee-accent-rgb), 0.22);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  filter: drop-shadow(0 0 42px rgba(var(--ee-accent-rgb), 0.32));
  animation: bcPhoneFloat 5s ease-in-out infinite;
}

.bc-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(280px, 78vw);
  height: min(360px, 95vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse 50% 58% at 50% 48%, rgba(var(--ee-accent-rgb), 0.2), transparent 72%);
  pointer-events: none;
}

.bc-phone__notch {
  width: 80px; height: 6px;
  background: rgba(148,163,184,0.2);
  border-radius: 999px;
  margin: 4px auto 8px;
}

.bc-phone__screen {
  border-radius: 26px;
  background:
    radial-gradient(ellipse 90% 45% at 50% 0%, rgba(var(--ee-accent-rgb), 0.1), transparent 55%),
    linear-gradient(180deg, var(--ee-surface) 0%, var(--ee-bg) 100%);
  padding: 14px 14px 12px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.bc-phone__appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bc-phone__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bc-text);
  letter-spacing: -0.01em;
}

.bc-phone__brand i {
  color: var(--bc-green);
  font-size: 0.7rem;
}

.bc-phone__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(var(--ee-accent-rgb), 0.1);
  border: 1px solid rgba(var(--ee-accent-rgb), 0.22);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bc-green);
}

.bc-phone__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bc-green);
  box-shadow: 0 0 8px var(--bc-green-glow);
  animation: bcPhoneLivePulse 1.6s ease-in-out infinite;
}

.bc-phone__toast {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(var(--ee-accent-rgb), 0.12);
  border: 1px solid rgba(var(--ee-accent-rgb), 0.28);
  color: var(--bc-green);
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  animation: bcPhoneToastIn 0.55s ease 1.1s forwards;
}

.bc-phone__toast i {
  font-size: 0.75rem;
}

.bc-phone__balance-card {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(var(--ee-accent-rgb), 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bc-phone__balance-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.bc-phone__label {
  font-size: 0.68rem;
  color: var(--bc-text-muted);
  font-weight: 600;
}

.bc-phone__chip {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(var(--ee-accent-rgb), 0.14);
  border: 1px solid rgba(var(--ee-accent-rgb), 0.25);
  color: var(--bc-green);
  font-size: 0.6rem;
  font-weight: 700;
  white-space: nowrap;
}

.bc-phone__amount {
  display: block;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--bc-green);
  text-shadow: 0 0 24px rgba(var(--ee-accent-rgb), 0.35);
  margin-bottom: 8px;
}

.bc-phone__progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(162, 148, 196, 0.18);
  overflow: hidden;
  margin-bottom: 6px;
}

.bc-phone__progress-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bc-green-dark), var(--bc-green));
  box-shadow: 0 0 12px var(--bc-green-glow);
  animation: bcPhoneProgress 2.4s ease 1.4s forwards;
  width: 0;
}

.bc-phone__payout-hint {
  font-size: 0.62rem;
  color: var(--bc-text-muted);
}

.bc-phone__history {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.bc-phone__history-title {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-text-muted);
  margin-bottom: 8px;
}

.bc-phone__history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-phone__history-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, background 0.2s;
}

.bc-phone__history-item--new {
  background: rgba(var(--ee-accent-rgb), 0.08);
  border-color: rgba(var(--ee-accent-rgb), 0.22);
  animation: bcPhoneHistoryPulse 2.2s ease-in-out 1.8s infinite;
}

.bc-phone__history-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.bc-phone__history-icon--green {
  background: rgba(var(--ee-accent-rgb), 0.12);
  color: var(--bc-green);
}

.bc-phone__history-icon--blue {
  background: rgba(var(--ee-magenta-rgb), 0.12);
  color: var(--ee-accent-soft);
}

.bc-phone__history-icon--purple {
  background: rgba(168, 85, 247, 0.14);
  color: #c084fc;
}

.bc-phone__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 11px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bc-green), var(--bc-green-dark));
  color: var(--ee-bg-2);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px var(--bc-green-glow);
  animation: bcPhoneCtaPulse 2.8s ease-in-out infinite;
}

.bc-phone__cta:hover {
  color: var(--ee-bg-2);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(var(--ee-accent-rgb), 0.45);
}

.bc-phone__cta-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bc-phone__cta-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.bc-phone__cta:hover .bc-phone__cta-arrow {
  transform: translateX(3px);
}

.bc-phone__history-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bc-phone__history-body strong {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.bc-phone__history-body em {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--bc-text-muted);
}

.bc-phone__history-value {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--bc-green);
  white-space: nowrap;
}

@keyframes bcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bcPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes bcPhoneLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes bcPhoneToastIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bcPhoneProgress {
  to { width: 72%; }
}

@keyframes bcPhoneHistoryPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(var(--ee-accent-rgb), 0); }
  50% { box-shadow: 0 0 0 1px rgba(var(--ee-accent-rgb), 0.35); }
}

@keyframes bcPhoneCtaPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(var(--ee-accent-rgb), 0.28); }
  50% { box-shadow: 0 12px 34px rgba(var(--ee-accent-rgb), 0.48); }
}

@media (prefers-reduced-motion: reduce) {
  .bc-phone,
  .bc-phone__live-dot,
  .bc-phone__toast,
  .bc-phone__progress-bar,
  .bc-phone__history-item--new,
  .bc-phone__cta {
    animation: none;
  }

  .bc-phone__toast {
    opacity: 1;
    transform: none;
  }

  .bc-phone__progress-bar {
    width: 72%;
  }
}

/* ── Stats ── */
.bc-stats { padding: 16px 0 48px; }

.bc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bc-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  border-radius: var(--bc-radius-md);
  background: var(--ee-grad-surface);
  border: 1px solid var(--bc-border);
  backdrop-filter: blur(12px);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.bc-stat-card:hover {
  transform: translateY(-2px);
}

.bc-stat-card--green {
  border-color: rgba(var(--ee-accent-rgb), 0.22);
  box-shadow: inset 0 1px 0 rgba(var(--ee-accent-rgb), 0.08);
}
.bc-stat-card--green:hover {
  border-color: rgba(var(--ee-accent-rgb), 0.4);
  box-shadow: 0 8px 32px rgba(var(--ee-accent-rgb), 0.12);
}

.bc-stat-card--blue {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.08);
}
.bc-stat-card--blue:hover {
  border-color: rgba(59, 130, 246, 0.38);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}

.bc-stat-card--purple {
  border-color: rgba(var(--ee-magenta-rgb), 0.22);
  box-shadow: inset 0 1px 0 rgba(var(--ee-magenta-rgb), 0.08);
}
.bc-stat-card--purple:hover {
  border-color: rgba(var(--ee-magenta-rgb), 0.4);
  box-shadow: 0 8px 32px rgba(var(--ee-magenta-rgb), 0.12);
}

.bc-stat-card--orange {
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow: inset 0 1px 0 rgba(249, 115, 22, 0.08);
}
.bc-stat-card--orange:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.12);
}

/* Shared icon boxes (stats, steps, earn cards) */
.bc-icon-box {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid transparent;
  position: relative;
}

.bc-stat-card__icon.bc-icon-box {
  width: 52px;
  height: 52px;
  font-size: 1.15rem;
}

.bc-stat-card__icon.bc-icon-box i {
  color: inherit;
}

.bc-stat-card--green .bc-stat-card__icon {
  background: rgba(var(--ee-accent-rgb), 0.12);
  border-color: rgba(var(--ee-accent-rgb), 0.28);
  color: var(--bc-green);
  box-shadow: 0 0 22px rgba(var(--ee-accent-rgb), 0.18), inset 0 1px 0 rgba(var(--ee-accent-rgb), 0.12);
}

.bc-stat-card--blue .bc-stat-card__icon {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.28);
  color: #60a5fa;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.18), inset 0 1px 0 rgba(59, 130, 246, 0.12);
}

.bc-stat-card--purple .bc-stat-card__icon {
  background: rgba(var(--ee-magenta-rgb), 0.14);
  border-color: rgba(var(--ee-magenta-rgb), 0.3);
  color: var(--ee-accent-soft);
  box-shadow: 0 0 24px rgba(var(--ee-magenta-rgb), 0.2), inset 0 1px 0 rgba(var(--ee-magenta-rgb), 0.12);
}

.bc-stat-card--orange .bc-stat-card__icon {
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.3);
  color: #fb923c;
  box-shadow: 0 0 22px rgba(249, 115, 22, 0.18), inset 0 1px 0 rgba(249, 115, 22, 0.12);
}

.bc-stat-card--green .bc-stat-card__icon i::before { color: var(--bc-green); }
.bc-stat-card--blue .bc-stat-card__icon i::before { color: #60a5fa; }
.bc-stat-card--purple .bc-stat-card__icon i::before { color: var(--ee-accent-soft); }
.bc-stat-card--orange .bc-stat-card__icon i::before { color: #fb923c; }

.bc-icon-box--lg {
  width: 56px;
  height: 56px;
  font-size: 1.3rem;
}

.bc-icon-box--green {
  background: rgba(var(--ee-accent-rgb), 0.12);
  border-color: rgba(var(--ee-accent-rgb), 0.28);
  color: var(--ee-accent);
  box-shadow: 0 0 22px rgba(var(--ee-accent-rgb), 0.18), inset 0 1px 0 rgba(var(--ee-accent-rgb), 0.12);
}

.bc-icon-box--blue {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.28);
  color: #60a5fa;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.18), inset 0 1px 0 rgba(59, 130, 246, 0.12);
}

.bc-icon-box--purple {
  background: rgba(var(--ee-magenta-rgb), 0.14);
  border-color: rgba(var(--ee-magenta-rgb), 0.3);
  color: var(--ee-accent-soft);
  box-shadow: 0 0 24px rgba(var(--ee-magenta-rgb), 0.2), inset 0 1px 0 rgba(var(--ee-magenta-rgb), 0.12);
}

.bc-icon-box--orange {
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.3);
  color: #fb923c;
  box-shadow: 0 0 22px rgba(249, 115, 22, 0.18), inset 0 1px 0 rgba(249, 115, 22, 0.12);
}

.bc-icon-box--teal {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.28);
  color: var(--ee-success);
  box-shadow: 0 0 22px rgba(20, 184, 166, 0.16), inset 0 1px 0 rgba(20, 184, 166, 0.1);
}

.bc-stat-card strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}
.bc-stat-card span {
  color: var(--bc-text-muted);
  font-size: 0.825rem;
}

/* ── Section common ── */
.bc-section { padding: 56px 0; }

.bc-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.bc-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.bc-section-head p {
  margin: 0;
  color: var(--bc-text-muted);
  font-size: 1rem;
}

.bc-section-cta {
  text-align: center;
  margin-top: 36px;
}

/* ── How it Works ── */
.bc-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bc-step-card {
  padding: 28px 22px;
  border-radius: var(--bc-radius);
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.bc-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--ee-accent-rgb),0.2);
}

.bc-step-card__icon {
  margin: 0 auto 18px;
}

.bc-step-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.bc-step-card p {
  margin: 0;
  color: var(--bc-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Ways to Earn ── */
.bc-earn__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.bc-earn-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 16px;
  border-radius: var(--bc-radius-md);
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.bc-earn-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--ee-accent-rgb),0.18);
}

.bc-earn-card__icon {
  margin: 0 auto 14px;
}

.bc-earn-card__icon.bc-icon-box {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

.bc-earn-card h3 { margin: 0 0 6px; font-size: 0.95rem; min-height: 2.6em; line-height: 1.3; }
.bc-earn-card p {
  flex: 1;
  margin: 0;
  color: var(--bc-text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  min-height: calc(0.8rem * 1.5 * 3);
}

.bc-earn-card__points {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(var(--ee-accent-rgb),0.08);
  color: var(--bc-green);
  font-size: 0.8rem;
  font-weight: 600;
}

.bc-earn-card__rate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 5px;
  margin-top: 14px;
  min-width: 52px;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(var(--ee-accent-rgb), 0.08);
  border: 1px solid rgba(var(--ee-accent-rgb), 0.16);
  color: var(--bc-green);
  line-height: 1;
}

.bc-earn-card__rate i {
  color: var(--bc-green);
  font-size: 0.72rem;
}

.bc-earn-card__rate--1 {
  opacity: 0.88;
}

.bc-earn-card__rate--1 i {
  font-size: 0.78rem;
}

.bc-earn-card__rate--2 i {
  font-size: 0.75rem;
}

.bc-earn-card__rate--3 {
  background: rgba(var(--ee-accent-rgb), 0.12);
  border-color: rgba(var(--ee-accent-rgb), 0.28);
  box-shadow: 0 0 18px rgba(var(--ee-accent-rgb), 0.12);
}

.bc-earn-card__rate--3 i {
  font-size: 0.78rem;
  filter: drop-shadow(0 0 4px rgba(var(--ee-accent-rgb), 0.35));
}

/* ── Testimonials ── */
.bc-testimonials__wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.bc-testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
  overflow: hidden;
}

.bc-testimonial-card {
  padding: 24px 20px;
  border-radius: var(--bc-radius-md);
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  transition: opacity 0.3s;
}

.bc-testimonial-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bc-testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.bc-testimonial-card__user strong {
  display: block;
  font-size: 0.925rem;
  margin-bottom: 2px;
}

.bc-testimonial-card p {
  margin: 0;
  color: var(--bc-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  font-style: italic;
}

.bc-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bc-border);
  background: var(--bc-bg-card);
  color: var(--bc-text-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s;
}
.bc-carousel-btn:hover {
  border-color: var(--bc-green);
  color: var(--bc-green);
}

.bc-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.bc-carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(148,163,184,0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.bc-carousel-dots button.is-active {
  background: var(--bc-green);
  transform: scale(1.3);
}

/* ── FAQ ── */
.bc-faq__container { max-width: 720px; }

.bc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc-faq-item {
  border-radius: var(--bc-radius-md);
  background: var(--bc-bg-card);
  border: 1px solid var(--ee-border-card);
  overflow: hidden;
}

.bc-faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: 0;
  color: var(--bc-text);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.bc-faq-item__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--ee-accent-rgb),0.1);
  color: var(--bc-green);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.bc-faq-item__head > span:nth-child(2) { flex: 1; }

.bc-faq-item__arrow {
  color: var(--bc-text-muted);
  font-size: 0.75rem;
  transition: transform 0.25s;
}

.bc-faq-item.is-open .bc-faq-item__arrow { transform: rotate(180deg); }

.bc-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.bc-faq-item.is-open .bc-faq-item__body { max-height: 200px; }

.bc-faq-item__body p {
  margin: 0;
  padding: 0 20px 18px 66px;
  color: var(--bc-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ── Footer CTA ── */
.bc-footer-cta { padding: 32px 0 64px; }

.bc-footer-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border-radius: var(--bc-radius);
  background: var(--bc-bg-card);
  border: 1.5px solid rgba(var(--ee-accent-rgb), 0.25);
  box-shadow: 0 0 40px rgba(var(--ee-accent-rgb), 0.06);
}

.bc-footer-cta__text h2 {
  margin: 0 0 6px;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
}
.bc-footer-cta__text p {
  margin: 0;
  color: var(--bc-text-muted);
  font-size: 0.925rem;
}

.bc-footer-cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Footer ── */
.bc-footer {
  position: relative;
  padding: 56px 0 0;
  border-top: 1px solid var(--bc-border);
  background: linear-gradient(180deg, rgba(var(--ee-bg-rgb), 0) 0%, rgba(var(--ee-bg-rgb), 0.95) 20%);
  overflow: hidden;
}

.bc-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 40px;
}

.bc-footer__brand p {
  margin: 16px 0 20px;
  max-width: 360px;
  color: var(--bc-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.bc-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bc-text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.bc-footer__email:hover { color: var(--bc-green); }

.bc-footer__email-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--ee-accent-rgb), 0.1);
  color: var(--bc-green);
  flex-shrink: 0;
}

.bc-footer__col h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
}

.bc-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-footer__col a {
  color: var(--bc-text-muted);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.bc-footer__col a:hover { color: var(--bc-green); }

.bc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--bc-border);
}

.bc-footer__copy {
  margin: 0;
  color: var(--bc-text-muted);
  font-size: 0.85rem;
}

.bc-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bc-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bc-text-muted);
  font-size: 0.85rem;
  transition: color 0.15s;
}

.bc-footer__social a:hover { color: var(--bc-text); }

.bc-footer__social i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bc-border);
  font-size: 0.8rem;
  transition: border-color 0.15s, color 0.15s;
}

.bc-footer__social a:hover i {
  border-color: rgba(var(--ee-accent-rgb), 0.3);
  color: var(--bc-green);
}

.bc-footer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.bc-footer__glow--1 {
  width: 300px;
  height: 300px;
  background: rgba(var(--ee-accent-rgb), 0.05);
  bottom: -100px;
  left: -80px;
}

.bc-footer__glow--2 {
  width: 250px;
  height: 250px;
  background: rgba(var(--ee-magenta-rgb), 0.06);
  bottom: -80px;
  right: -60px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bc-earn__grid { grid-template-columns: repeat(3, 1fr); }
  .bc-testimonials__track { grid-template-columns: 1fr; }
  .bc-testimonial-card:not(.is-active) { display: none; }
}

@media (max-width: 900px) {
  .bc-nav, .bc-lang { display: none; }
  .bc-menu-toggle { display: flex; }
  .bc-header.is-open .bc-mobile-nav { display: flex; }
  .bc-header__actions .bc-btn--purple-outline,
  .bc-header__actions .bc-btn--primary { display: none; }

  .bc-hero__grid { grid-template-columns: 1fr; }
  .bc-hero__visual {
    min-height: auto;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 12px 0 8px;
    overflow: visible;
  }

  .bc-hero__visual .bc-glow--1 {
    width: min(240px, 72vw);
    height: min(240px, 72vw);
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
  }

  .bc-hero__visual .bc-glow--2 {
    width: min(180px, 55vw);
    height: min(180px, 55vw);
    right: 50%;
    transform: translateX(50%);
  }

  .bc-phone-glow {
    width: min(240px, 70vw);
    height: min(320px, 88vw);
  }

  .bc-phone {
    width: min(252px, 86vw);
  }

  .bc-phone__screen {
    min-height: 330px;
  }

  .bc-phone__amount {
    font-size: 1.75rem;
  }

  .bc-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .bc-how__grid { grid-template-columns: 1fr; }
  .bc-earn__grid { grid-template-columns: repeat(2, 1fr); }

  .bc-footer-cta__box {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .bc-footer-cta__actions { flex-direction: column; width: 100%; }
  .bc-footer-cta__actions .bc-btn { width: 100%; }

  .bc-footer__main { grid-template-columns: 1fr 1fr; }
  .bc-footer__brand { grid-column: 1 / -1; }
  .bc-footer__bottom { flex-direction: column; text-align: center; }
  .bc-footer__social { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 560px) {
  .bc-container {
    width: min(1180px, calc(100% - 32px));
  }

  .bc-hero { padding-top: 32px; }
  .bc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bc-hero__actions .bc-btn { width: 100%; }
  .bc-badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .bc-social-proof { gap: 10px; }
  .bc-social-proof__divider { display: none; }

  .bc-orbit--1 { width: min(400px, 100%); height: min(400px, 100%); }
  .bc-orbit--2 { width: min(300px, 78%); height: min(300px, 78%); }

  .bc-stats__grid,
  .bc-earn__grid { grid-template-columns: 1fr; }

  .bc-carousel-btn { display: none; }

  .bc-footer__main { grid-template-columns: 1fr; }
  .bc-footer__social span { display: none; }

  .bc-footer-cta__box { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   EarnEmpire - landing bolumleri
   Renkler theme.css icindeki --ee-* token'larindan gelir.
   ═══════════════════════════════════════════════════════════════════ */

/* Buton ve rozet glifleri: boyut yazi tipine bagli (1em), boylece
   bc-btn--sm / --lg farklarina kendiliginden uyuyorlar. Renk currentColor
   uzerinden geldigi icin butonun kendi renginden ayrilmiyorlar. */
/* Bu siniflar hem SVG hem FontAwesome glifinde kullaniliyor.
   SVG sabit kutuya oturur; font glifi kendi genisligini ister - sabit
   width verilirse tasip kirpilir (fa-users 17px kutuda 22px istiyordu). */
svg.bc-btn__glyph,
svg.bc-badge__glyph {
  width: 1em;
  height: 1em;
  display: block;
}

i.bc-btn__glyph,
i.bc-badge__glyph {
  line-height: 1;
}

.bc-btn__glyph,
.bc-badge__glyph {
  flex-shrink: 0;
}

/* -- Bolum basligi -- */
.ee-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.ee-section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ee-text);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.ee-section-head__star {
  color: var(--ee-accent);
  font-size: 0.7em;
  opacity: 0.85;
}

.ee-section-head p {
  margin: 10px 0 0;
  color: var(--ee-muted);
  font-size: 0.95rem;
}

/* -- Hero -- */
.ee-hero {
  position: relative;
  padding: 56px 0 40px;
}

.ee-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: center;
}

.ee-hero__title {
  margin: 18px 0 0;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.ee-hero__title-line,
.ee-hero__title-accent {
  display: block;
}

/* Son satir gradyanli: referanstaki mor-pembe gecis. */
.ee-hero__title-accent {
  background: linear-gradient(100deg, var(--ee-accent-bright), var(--ee-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ee-hero__subtitle {
  margin: 18px 0 0;
  max-width: 44ch;
  color: var(--ee-muted);
  font-size: 1.02rem;
}

.ee-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* -- Hero gorseli: kale + kaynak rozetleri -- */
.ee-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.ee-hero__halo {
  position: absolute;
  inset: 6% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--ee-accent-rgb), 0.12), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.ee-castle {
  position: relative;
  width: min(100%, 460px);
  height: auto;
  animation: eeFloat 7s ease-in-out infinite;
}

/* Bayrak diregin dibinden dalgalanir; kaynak SVG'nin viewBox'i 512x512. */
.ee-castle__flag {
  transform-origin: 241px 32px;
  animation: eeFlag 3.4s ease-in-out infinite;
}

@keyframes eeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes eeFlag {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.82); }
}

/* Kaynak rozetleri kale etrafina konumlanir. */
.ee-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 14px;
  background: var(--ee-surface-glass);
  border: 1px solid var(--ee-border-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(6, 2, 16, 0.5);
  animation: eeFloat 6s ease-in-out infinite;
}

.ee-chip > i {
  font-size: 0.95rem;
}

/* SVG glif, yanindaki FontAwesome ikonlariyla ayni optik agirlikta. */
.ee-chip__glyph {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: block;
}

.ee-chip__body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.ee-chip__body em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--ee-muted);
}

.ee-chip__body strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ee-text);
}

.ee-chip--gold { top: 4%; left: 2%; animation-delay: -0.4s; }
.ee-chip--gold > .ee-chip__glyph { color: var(--ee-gold); }

.ee-chip--ruby { top: 8%; right: 0; animation-delay: -2.1s; }
.ee-chip--ruby > .ee-chip__glyph { color: var(--ee-res-ruby); }

.ee-chip--diamond { bottom: 26%; left: 0; animation-delay: -3.4s; }
.ee-chip--diamond > .ee-chip__glyph { color: var(--ee-res-crystal); }

.ee-chip--sale { bottom: 22%; right: 1%; animation-delay: -1.2s; }
.ee-chip--sale > i { color: var(--ee-gold-soft); }
.ee-chip--sale .ee-chip__body strong { color: var(--ee-gold-soft); }

/* Granat: eskiden ayri bir bilesendi (ee-pill) - tek satirda, sari
   tutarla ve digerlerinden farkli bicimde duruyordu. Artik ayni chip
   kalibi; tas rengi menekse, yakuttan boylece ayriliyor. */
.ee-chip--garnet {
  bottom: 4%;
  left: 50%;
  /* Ortalama translateX ile yapiliyor ama eeFloat da transform'u
     yaziyor ve onu EZERDI (chip saga kayardi). Bu yuzden yalnizca bu
     chip'e X kaymasini koruyan ayri bir kare dizisi veriliyor. */
  animation-name: eeFloatCenter;
  animation-delay: -5s;
}

@keyframes eeFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

.ee-chip--garnet > .ee-chip__glyph { color: var(--ee-magenta); }

/* -- Istatistik seridi -- */
.ee-stats {
  padding: 8px 0 24px;
}

/* Tek serit yerine dort ayri kart: her biri kendi kenarligiyla duruyor,
   icerik sola hizali. Ayirici cizgilere gerek kalmadi. */
.ee-stats__bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ee-stats__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.ee-stats__item:hover {
  transform: translateY(-2px);
}

/* Kenarlik butun kartlarda ayni: renk ayrimi ikon kutusunda kaliyor,
   cerceveler tek tonda birlesiyor. */
.ee-stats__item:hover { border-color: var(--ee-border-card-hover); }

.ee-stats__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--ee-accent-soft);
  background: rgba(var(--ee-accent-rgb), 0.14);
  border: 1px solid var(--ee-border-strong);
}

/* SVG simge; fill="currentColor" oldugu icin kutunun rengini alir.
   FontAwesome glifleri kendi kutusunda bosluklu ciziliyor ve ~13px
   goruluyor; bu SVG ise viewBox'i neredeyse tasiyor. Yanindakilerle ayni
   optik agirlikta dursun diye 17px. */
svg.ee-stats__glyph {
  width: 17px;
  height: 17px;
  display: block;
}

i.ee-stats__glyph {
  font-size: 17px;
  line-height: 1;
}

.ee-stats__icon--gold {
  color: var(--ee-gold);
  background: rgba(var(--ee-gold-rgb), 0.14);
  border-color: rgba(var(--ee-gold-rgb), 0.3);
}

.ee-stats__icon--magenta {
  color: var(--ee-magenta);
  background: rgba(var(--ee-magenta-rgb), 0.14);
  border-color: rgba(var(--ee-magenta-rgb), 0.3);
}

.ee-stats__icon--star {
  color: var(--ee-accent-soft);
  background: rgba(var(--ee-accent-rgb), 0.14);
}

.ee-stats__item strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ee-text);
}

/* Yalnizca metin sutunundaki etiket. Once ".ee-stats__item span" yaziyordu
   ve ikon kutusu da bir span oldugu icin onun rengini de eziyordu; dort
   ikon da accent yerine sonuk gri cikiyordu. */
.ee-stats__item div span {
  font-size: 0.8rem;
  color: var(--ee-muted);
}

/* -- Nasil calisir -- */
.ee-how__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 26px;
}

.ee-how-card {
  position: relative;
  padding: 26px 18px 22px;
  border-radius: 18px;
  text-align: center;
  background: var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ee-how-card:hover {
  transform: translateY(-4px);
  border-color: var(--ee-border-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* Kartlar arasi ok. Son kartta ve tek sutuna dusunce gizlenir. */
.ee-how-card::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: rgba(var(--ee-accent-rgb), 0.55);
}

.ee-how-card:last-child::after { content: none; }

.ee-how-card__num {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--ee-grad);
  box-shadow: 0 6px 16px rgba(var(--ee-accent-rgb), 0.28);
}

.ee-how-card__art {
  display: block;
  margin: 12px auto 14px;
  width: 92px;
  height: 92px;
}

.ee-how-card__art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ee-how-card h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ee-text);
}

.ee-how-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ee-muted);
}

/* -- Kazanc kartlari -- */
.ee-earn {
  position: relative;
}

.ee-earn__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(var(--ee-accent-rgb), 0.045), transparent 70%);
}

.ee-earn__grid {
  display: grid;
  /* Kart sayisi 4 ("Uygulama Yukle" kaldirildi). 5'li izgarada son sutun
     bos kaliyordu; 4'lu duzende satir tam doluyor. */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ee-earn-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 16px 20px;
  border-radius: 18px;
  background: var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ee-earn-card:hover {
  transform: translateY(-4px);
  border-color: var(--ee-border-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.ee-earn-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #fff;
}

.ee-earn-card__icon--violet { background: linear-gradient(135deg, var(--ee-accent), var(--ee-accent-strong)); }

.ee-earn-card h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ee-text);
}

.ee-earn-card p {
  margin: 0 0 16px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ee-muted);
}

/* Kart yuksekligi degisebilir; buton her zaman en altta hizalansin. */
.ee-earn-card__btn {
  margin-top: auto;
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--ee-grad);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.ee-earn-card__btn:hover {
  background: var(--ee-grad-hover);
  box-shadow: 0 8px 20px rgba(var(--ee-accent-rgb), 0.28);
}

/* -- Kazanc ozeti + son odemeler -- */
.ee-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.ee-proof__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 32px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 100% at 100% 50%, rgba(var(--ee-accent-rgb), 0.11), transparent 70%),
    var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
}

.ee-proof__hero-body h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ee-text);
}

.ee-proof__hero-body p {
  margin: 8px 0 20px;
  font-size: 0.88rem;
  color: var(--ee-muted);
}

.ee-proof__amount {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  background: var(--ee-grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ee-proof__amount-label {
  font-size: 0.82rem;
  color: var(--ee-muted);
}

.ee-proof__art {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.5));
}

.ee-proof__art svg { width: 100%; height: 100%; display: block; }

.ee-proof__payouts {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 22px;
  background: var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
}

.ee-proof__payouts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ee-proof__payouts-head h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ee-text);
}

.ee-proof__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ee-success);
}

.ee-proof__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ee-success);
  box-shadow: 0 0 0 0 rgba(var(--ee-success-rgb), 0.6);
  animation: eeLivePulse 2s ease-out infinite;
}

@keyframes eeLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--ee-success-rgb), 0.55); }
  100% { box-shadow: 0 0 0 9px rgba(var(--ee-success-rgb), 0); }
}

.ee-proof__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ee-proof__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(var(--ee-accent-rgb), 0.05);
}

.ee-proof__avatar {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--ee-grad);
}

.ee-proof__user {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.25;
}

.ee-proof__user strong {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--ee-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ee-proof__user em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--ee-muted-2);
}

.ee-proof__value {
  flex-shrink: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ee-gold-soft);
}

.ee-proof__empty {
  flex: 1 1 auto;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px 12px;
  text-align: center;
  color: var(--ee-muted);
}

.ee-proof__empty i {
  font-size: 1.6rem;
  color: rgba(var(--ee-accent-rgb), 0.5);
}

.ee-proof__empty p { margin: 0; font-size: 0.85rem; }

.ee-proof__all {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ee-text);
  background: rgba(var(--ee-accent-rgb), 0.12);
  border: 1px solid var(--ee-border-strong);
  transition: background 0.15s ease;
}

.ee-proof__all:hover { background: rgba(var(--ee-accent-rgb), 0.2); }

/* -- Kapanis CTA -- */
.ee-cta {
  padding: 24px 0 72px;
}

.ee-cta__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 32px 36px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 120% at 0% 50%, rgba(var(--ee-magenta-rgb), 0.1), transparent 70%),
    var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
  box-shadow: var(--ee-shadow);
}

.ee-cta__art {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.ee-cta__art svg { width: 100%; height: 100%; display: block; }

.ee-cta__text { flex: 1 1 auto; min-width: 0; }

.ee-cta__text h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ee-text);
}

.ee-cta__text p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: var(--ee-muted);
}

.ee-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== Duyarli ===== */
@media (max-width: 1080px) {
  .ee-how__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  /* 3'lu duzende satir sonundaki ok bosluga bakiyor. */
  .ee-how-card:nth-child(3n)::after { content: none; }

  /* 4 kart 3'lu izgarada 3+1 olarak kiriliyordu; 2+2 dengeli duruyor. */
  .ee-earn__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .ee-hero__grid { grid-template-columns: 1fr; }
  .ee-hero__content { text-align: center; }
  .ee-hero__subtitle { margin-left: auto; margin-right: auto; }
  .ee-hero__actions { justify-content: center; }
  .ee-hero__visual { min-height: 340px; }

  .ee-stats__bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .ee-proof__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .ee-how__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ee-how-card::after { content: none; }
  .ee-earn__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .ee-proof__hero { flex-direction: column; text-align: center; padding: 26px 20px; }
  .ee-proof__art { width: 104px; height: 104px; }

  .ee-cta__box { flex-direction: column; text-align: center; padding: 28px 20px; }
  .ee-cta__actions { justify-content: center; width: 100%; }
}

@media (max-width: 520px) {
  /* Dar ekranda kale kuculuyor, rozetler ustune biniyor. */
  .ee-chip { padding: 7px 10px; gap: 7px; }
  .ee-chip__body em { font-size: 0.62rem; }
  .ee-chip__body strong { font-size: 0.82rem; }
  .ee-chip--diamond, .ee-chip--sale { bottom: 30%; }

  .ee-how__grid { grid-template-columns: 1fr; }
  .ee-earn__grid { grid-template-columns: 1fr; }
  .ee-stats__bar { grid-template-columns: 1fr; }
}

/* ═══════════ Odemeler sayfasi ═══════════ */

.ee-payouts {
  padding: 48px 0 72px;
}

.ee-payouts__head {
  text-align: center;
  margin-bottom: 34px;
}

.ee-payouts__head h1 {
  margin: 16px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ee-text);
}

.ee-payouts__head p {
  margin: 12px auto 0;
  max-width: 52ch;
  color: var(--ee-muted);
  font-size: 0.95rem;
}

/* -- Ozet kartlari -- */
/* Tek kart kaldi ("Tamamlanan odeme" sayaci kaldirildi): iki sutunluk
   izgarada sagi bos duruyordu. Kart ortada ve kendi genisliginde. */
.ee-payouts__summary {
  display: grid;
  grid-template-columns: minmax(0, 320px);
  justify-content: center;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto 26px;
}

.ee-sum-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
}

.ee-sum-card__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.ee-sum-card__icon--gold {
  color: var(--ee-gold);
  background: rgba(var(--ee-gold-rgb), 0.14);
  border: 1px solid rgba(var(--ee-gold-rgb), 0.3);
}

.ee-sum-card__icon--accent {
  color: var(--ee-accent-soft);
  background: rgba(var(--ee-accent-rgb), 0.14);
  border: 1px solid var(--ee-border-card);
}

.ee-sum-card__body {
  min-width: 0;
}

.ee-sum-card__body strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ee-text);
}

.ee-sum-card__body span {
  font-size: 0.78rem;
  color: var(--ee-muted);
}

/* -- Iki panel -- */
.ee-payout-panel {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 22px;
  background: var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
}

.ee-payout-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--ee-border);
}

.ee-payout-panel__head h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ee-text);
}

/* Sayfada yalnizca odenenler var; nokta "canli liste" isareti. */
.ee-payout-panel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--ee-success);
  box-shadow: 0 0 10px rgba(var(--ee-success-rgb), 0.6);
}

.ee-payout-panel__count {
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ee-accent-soft);
  background: rgba(var(--ee-accent-rgb), 0.12);
  border: 1px solid var(--ee-border-strong);
}

.ee-payout-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ee-payout-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(var(--ee-accent-rgb), 0.05);
  transition: background 0.15s ease;
}

.ee-payout-row:hover {
  background: rgba(var(--ee-accent-rgb), 0.1);
}

.ee-payout-row__avatar {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  background: var(--ee-grad);
}

.ee-payout-row__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.3;
}

.ee-payout-row__body strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ee-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ee-payout-row__body span {
  font-size: 0.75rem;
  color: var(--ee-muted-2);
}

.ee-payout-row__amount {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.ee-payout-row__amount { color: var(--ee-gold-soft); }

.ee-payout-empty {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 44px 16px;
  text-align: center;
  color: var(--ee-muted);
}

.ee-payout-empty i {
  font-size: 1.9rem;
  color: rgba(var(--ee-accent-rgb), 0.45);
}

.ee-payout-empty p { margin: 0; font-size: 0.88rem; }

/* -- Gizlilik notu -- */
/* -- Alt CTA -- */
.ee-payouts__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding: 28px 32px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 60% 120% at 0% 50%, rgba(var(--ee-magenta-rgb), 0.09), transparent 70%),
    var(--ee-grad-surface);
  border: 1px solid var(--ee-border-card);
}

.ee-payouts__cta h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ee-text);
}

.ee-payouts__cta p {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--ee-muted);
}

@media (max-width: 820px) {
  .ee-payouts__cta { flex-direction: column; text-align: center; padding: 26px 20px; }
}

@media (max-width: 520px) {
  .ee-payouts__summary { grid-template-columns: minmax(0, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════
   Modern varyant - DENEME, yalnizca herkese acik sayfalarda
   (landing, odemeler, iletisim, sozlesmeler). Dashboard, giris ve
   admin eski tonda kaliyor.

   Referanstaki farkin ozu: yuzeyler MOR DEGIL, notr koyu gri. Mor sadece
   vurguda kaliyor. Onceki halde zemin de kart da mor oldugu icin sayfa
   yogun goruluyordu.

   Begenilirse bu blok theme.css'e tasinip her yere yayilir.
   ═══════════════════════════════════════════════════════════════════ */
/* Modern palet artik theme.css icinde: body.bc-landing ve body.bc-auth
   birlikte tanimli, iki dosyada kopya durmasin diye. */

/* --- Istatistik kartlari: halkali ikon + buyuk deger + etiket ---
   Referanstaki kart duzeni. Ikon kutusu kare rozet yerine daire halka;
   deger buyudu ve etiket altina gecti. */
body.bc-landing .ee-stats__item {
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--ee-surface-2);
}

/* Ikon kabi: renk yalnizca burada. Kartin yuzeyi notr kaliyor, ikonun
   arkasi ilgili rengin cok koyu tonu. */
body.bc-landing .ee-stats__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--ee-accent-bright);
  background: rgba(var(--ee-accent-rgb), 0.14);
}

body.bc-landing .ee-stats__icon--gold {
  color: var(--ee-gold);
  background: rgba(var(--ee-gold-rgb), 0.12);
}

body.bc-landing .ee-stats__icon--magenta {
  color: var(--ee-accent-bright);
  background: rgba(var(--ee-accent-rgb), 0.14);
}

body.bc-landing .ee-stats__icon--star {
  color: var(--ee-accent-bright);
  background: rgba(var(--ee-accent-rgb), 0.14);
}
body.bc-landing .ee-stats__item strong {
  font-size: 1.55rem;
  letter-spacing: -0.01em;
}

/* Marka karti: deger bir RAKAM degil, bitisik yazilan marka adi; rakam
   puntosunda satira sigmiyordu. Kural BURADA duruyor cunku yukaridaki
   "body.bc-landing" secicisi daha ozgul - sade sinifla yazilinca
   eziliyordu. */
body.bc-landing .ee-stats__item--brand strong {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

body.bc-landing .ee-stats__item div span {
  font-size: 0.84rem;
}

/* --- Kartlar genelinde: cerceve yerine yuzey farki ---
   Referansta kartlar cizgiyle degil, zemine gore acik olmalariyla
   ayriliyor. Cerceveyi tamamen kaldirmadim; cok silik birakildi. */
body.bc-landing .ee-how-card,
body.bc-landing .ee-earn-card,
body.bc-landing .ee-proof__payouts,
body.bc-landing .bc-faq-item,
body.bc-landing .ee-payout-panel,
body.bc-landing .ee-sum-card {
  background: var(--ee-surface-2);
  border-radius: 18px;
}

body.bc-landing .ee-proof__hero,
body.bc-landing .ee-cta__box,
body.bc-landing .ee-payouts__cta {
  border-radius: 20px;
}

/* Hover'da cerceve accent'e doner; golge yerine bu daha sakin. */
/* Hover: yuzey bir kademe yukselir, golge hafif. Yogun golge/glow
   yerine surface-elevated kullaniliyor. */
body.bc-landing .ee-how-card:hover,
body.bc-landing .ee-earn-card:hover,
body.bc-landing .ee-stats__item:hover {
  background: var(--ee-surface-3);
  box-shadow: var(--ee-shadow);
}


/* ══════════ Kullanici yorumlari ══════════
   Odeme paneli buradaydi; yerine yorum seridi geldi. Serit tek satirda
   kayiyor, bir "sayfa" ekran genisligine gore 1-3 kart. */
.ee-says__sub {
  margin-top: 6px;
  color: rgba(226, 232, 240, 0.62);
}

.ee-says__viewport {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

/* Kaydirma cubugu gizli: gezinme oklar ve noktalarla yapiliyor.
   scroll-snap kartlarin kenara hizali durmasini sagliyor. */
.ee-says__track {
  display: flex;
  gap: 18px;
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px;
}

/* Iki sinifli secici BILEREK: scrollbar.css'teki genel
   html[class^="bc-"] * kurali tek sinifli seciciden agir basiyor ve
   seridin altinda cubuk birakiyordu. Gezinme ok ve noktalarla. */
.ee-says .ee-says__track {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ee-says .ee-says__track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.ee-says__card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(19, 24, 38, 0.72);
}

.ee-says__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ee-says__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(180deg, #7c5cff, #5b3fd6);
}

.ee-says__name {
  display: block;
  color: #f1f5f9;
  font-weight: 700;
}

.ee-says__stars {
  display: inline-flex;
  gap: 2px;
  margin-top: 3px;
  font-size: 12px;
  color: #35d07f;
}
/* Verilmeyen yildiz: silinmez, sonuk kalir - puan bir bakista okunur. */
.ee-says__stars .is-off { color: rgba(148, 163, 184, 0.32); }

.ee-says__text {
  margin: 0;
  color: rgba(226, 232, 240, 0.78);
  font-style: italic;
  line-height: 1.6;
}

.ee-says__nav {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(19, 24, 38, 0.9);
  color: #e2e8f0;
  cursor: pointer;
}
.ee-says__nav:hover { border-color: rgba(124, 92, 255, 0.6); }
.ee-says__nav[disabled] { opacity: 0.35; cursor: default; }

.ee-says__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.ee-says__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
}
.ee-says__dot.is-active { background: #35d07f; }

@media (max-width: 900px) {
  .ee-says__card { flex-basis: calc((100% - 18px) / 2); }
}
@media (max-width: 620px) {
  .ee-says__card { flex-basis: 100%; }
  .ee-says__nav { display: none; }
}
