/* ============================================================
   ELEPHANT TIPS — Global Stylesheet
   Black & Gold Premium Theme
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0a0a0a;
  color: #e8e0d0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Mobil menü açıkken sayfa scroll'u kapat */
body.menu-open { overflow: hidden; }

/* ---- SITE-WIDE BACKGROUND (tüm sayfalarda) ---- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../images/register-bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  opacity: 0.40;
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 90% at 50% 30%, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.88) 70%, rgba(8,8,8,0.96) 100%);
  z-index: -1;
  pointer-events: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A88C20;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-subtle: rgba(212, 175, 55, 0.08);
  --gold-border: rgba(212, 175, 55, 0.25);

  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --bg-elevated: #1e1e1e;

  --text-primary: #f0e8d8;
  --text-secondary: #a09080;
  --text-muted: #6b6055;
  --text-gold: #D4AF37;

  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(212,175,55,0.3);

  --green: #22c55e;
  --green-bg: rgba(34,197,94,0.12);
  --red: #ef4444;
  --red-bg: rgba(239,68,68,0.12);
  --orange: #f59e0b;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);

  --header-h: 72px;
  --container: 1280px;
}

/* ---- TYPOGRAPHY ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.15; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p { color: var(--text-secondary); }

.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }

/* ---- LAYOUT ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
}
.badge-green {
  background: var(--green-bg); border-color: rgba(34,197,94,0.3); color: var(--green);
}
.badge-live {
  background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.3); color: #ef4444;
  animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
  0%,100% { opacity: 1; } 50% { opacity: 0.7; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md);
  font-size: 0.875rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em; transition: all 0.2s; white-space: nowrap;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  color: #000; border: none;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #F0D060, #D4AF37);
  box-shadow: 0 6px 28px rgba(212,175,55,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: var(--gold-subtle);
}
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
}
.btn-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---- HEADER ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.header.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  height: var(--header-h);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 48px; width: auto; max-width: 180px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1rem; color: var(--gold); letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.55rem; color: var(--text-muted); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
}
.nav-desktop {
  display: flex; align-items: center; gap: 4px; flex: 1;
}
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; color: var(--text-secondary);
  transition: all 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active { color: var(--gold); }
.header-right {
  display: flex; align-items: center; gap: 10px; margin-left: auto;
}

/* ---- LANGUAGE SELECTOR ---- */
.lang-selector { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.85rem; font-weight: 700;
  transition: all 0.2s; cursor: pointer;
}
.lang-toggle:hover { border-color: var(--border-gold); color: var(--gold); }
.lang-toggle .flag {
  font-size: 1.1rem;
  font-variant-emoji: emoji;
  font-family: 'Apple Color Emoji','Segoe UI Emoji','Noto Color Emoji',sans-serif;
  line-height: 1;
}
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #1a1a1a; border: 1px solid var(--border-gold);
  border-radius: var(--radius-md); padding: 8px;
  min-width: 180px; z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  display: none;
}
.lang-selector.open .lang-dropdown { display: block; }
.lang-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600; color: var(--text-secondary);
  transition: all 0.2s; cursor: pointer; background: none; border: none;
  text-align: left;
}
.lang-btn:hover { background: var(--gold-subtle); color: var(--text-primary); }
.lang-btn.active { color: var(--gold); background: var(--gold-subtle); }
.lang-btn .flag {
  font-size: 1.25rem;
  font-variant-emoji: emoji;
  font-family: 'Apple Color Emoji','Segoe UI Emoji','Noto Color Emoji',sans-serif;
  line-height: 1;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}

/* ---- MOBILE MENU ---- */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-secondary); border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98); z-index: 999;
  padding: 24px; overflow-y: auto;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  display: block; padding: 14px 16px; font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-actions { display: flex; gap: 10px; margin-top: 16px; }
.mobile-menu-actions .btn { flex: 1; justify-content: center; }
/* Mobile lang button in mobile menu */
.mobile-lang-btn {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; width: 100%;
  padding: 13px 16px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Inter','Segoe UI Emoji','Apple Color Emoji','Noto Color Emoji',sans-serif;
}
.mobile-lang-btn:hover { background: var(--gold-subtle); }
.mobile-lang-btn span:first-child { font-size: 1.2rem; }
.mobile-lang-btn svg { margin-left: auto; opacity: 0.7; }

/* Language Modal Overlay */
#langModal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
  align-items: flex-end; justify-content: center;
  padding: 0;
}
#langModal.open { display: flex; }
.lang-modal-box {
  background: #1a1a1a; border: 1px solid var(--border-gold);
  border-radius: 20px 20px 0 0;
  width: 100%; max-width: 480px;
  padding: 20px 20px 32px;
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.lang-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.lang-modal-title {
  font-size: 1rem; font-weight: 800; color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-family: 'Inter','Segoe UI Emoji','Apple Color Emoji','Noto Color Emoji',sans-serif;
}
.lang-modal-close {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: none;
  color: var(--text-secondary); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lang-modal-close:hover { background: rgba(255,255,255,0.15); color: var(--text-primary); }
.lang-modal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lang-modal-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.18s;
  font-family: 'Inter','Segoe UI Emoji','Apple Color Emoji','Noto Color Emoji',sans-serif;
}
.lang-modal-btn:hover { background: var(--gold-subtle); border-color: var(--border-gold); color: var(--text-primary); }
.lang-modal-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); }
.lang-modal-flag { font-size: 1.3rem; line-height: 1; }
.lang-modal-name { font-size: 0.82rem; }

/* Bayrak img boyutu — navbar'daki flag görseli */
#langFlag img, #mobileLangFlag img {
  width: 28px !important;
  height: 20px !important;
  min-width: 28px !important;
  min-height: 20px !important;
  max-width: 28px !important;
  max-height: 20px !important;
  object-fit: cover;
  border-radius: 3px;
  display: inline-block !important;
  vertical-align: middle;
  flex-shrink: 0;
}
/* Dropdown içindeki bayraklar */
.lang-btn img {
  width: 22px !important;
  height: 16px !important;
  min-width: 22px !important;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
/* Modal içindeki bayraklar */
.lang-modal-btn img {
  width: 28px !important;
  height: 20px !important;
  min-width: 28px !important;
  object-fit: cover;
  border-radius: 3px;
  display: block !important;
  margin: 0 auto 4px !important;
}

/* Emoji font fix for all flag spans */
.flag, .lang-modal-flag, #langFlag, #mobileLangFlag {
  font-family: 'Segoe UI Emoji','Apple Color Emoji','Noto Color Emoji','Twemoji Mozilla',sans-serif;
  font-style: normal;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--header-h);
  position: relative; overflow: hidden;
  background: var(--bg-primary);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 65% 40%, rgba(212,175,55,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212,175,55,0.03) 0%, transparent 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 60px 0;
}
.hero-badge { margin-bottom: 20px; }
.hero-title { margin-bottom: 8px; }
.hero-title-gold { color: var(--gold); display: block; }
.hero-desc { font-size: 1rem; color: var(--text-secondary); max-width: 480px; margin-bottom: 28px; line-height: 1.7; }
.hero-trust {
  display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px;
}
.hero-trust-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--gold-subtle); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.hero-trust-label { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); }
.hero-trust-sub { font-size: 0.7rem; color: var(--text-muted); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-social-proof {
  display: flex; align-items: center; gap: 12px;
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #8B6914);
  border: 2px solid var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #000;
  margin-left: -8px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-social-text { font-size: 0.8rem; color: var(--text-secondary); }
.hero-social-text strong { color: var(--text-primary); }
.hero-image-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-image-wrap img {
  max-height: 580px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(212,175,55,0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- QUICK CARDS ---- */
.quick-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: -32px; position: relative; z-index: 10;
}
.quick-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  transition: all 0.3s; cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
}
.quick-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.quick-card-icon { font-size: 1.8rem; margin-bottom: 4px; }
.quick-card-title { font-size: 0.95rem; font-weight: 800; color: var(--text-primary); font-family: 'Montserrat', sans-serif; }
.quick-card-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.quick-card-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}
.quick-card-link svg { transition: transform 0.2s; }
.quick-card:hover .quick-card-link svg { transform: translateX(4px); }

/* ---- SECTION HEADER ---- */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 800; color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
}
.section-title-icon { font-size: 1.2rem; }
.section-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: gap 0.2s;
}
.section-link:hover { gap: 10px; }

/* ---- PREDICTION TABLE ---- */
.pred-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pred-table {
  width: 100%; border-collapse: collapse;
}
.pred-table thead tr {
  border-bottom: 1px solid var(--border);
}
.pred-table thead th {
  padding: 10px 16px;
  font-size: 0.68rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  text-align: left; white-space: nowrap;
}
.pred-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.pred-table tbody tr:last-child { border-bottom: none; }
.pred-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.pred-table td {
  padding: 14px 16px; font-size: 0.875rem; vertical-align: middle;
}
.match-teams { display: flex; flex-direction: column; gap: 4px; }
.match-team {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.match-team-away { color: var(--text-secondary); font-weight: 500; }
.team-logo {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-elevated); display: inline-flex;
  align-items: center; justify-content: center; font-size: 0.65rem;
}
/* API-Football takım logoları */
.team-logo-img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}
.team-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}
.pred-type { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.pred-sub { font-size: 0.72rem; color: var(--text-muted); }
.confidence-wrap { display: flex; align-items: center; gap: 8px; }
.confidence-circle {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--green);
  border: 2px solid var(--green); background: var(--green-bg);
  flex-shrink: 0;
}
.confidence-circle.high { color: var(--green); border-color: var(--green); background: var(--green-bg); }
.confidence-circle.med { color: var(--orange); border-color: var(--orange); background: rgba(245,158,11,0.12); }
.confidence-circle.low { color: var(--red); border-color: var(--red); background: var(--red-bg); }
.odd-val { font-size: 0.95rem; font-weight: 800; color: var(--text-primary); font-family: 'Montserrat', sans-serif; }
.league-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-secondary); white-space: nowrap;
}
.league-flag { font-size: 0.9rem; }
.kick-time { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); }
.banko-tag {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.08));
  border: 1px solid var(--gold-border); color: var(--gold);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 3px 8px; border-radius: 4px; font-family: 'Montserrat', sans-serif;
}
.live-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444; font-size: 0.68rem; font-weight: 800;
  padding: 3px 8px; border-radius: 4px; font-family: 'Montserrat', sans-serif;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #ef4444;
  animation: pulse-live 1.5s infinite;
}
.live-score { font-size: 0.78rem; color: var(--text-muted); }
.table-footer {
  padding: 14px 16px; border-top: 1px solid var(--border);
  text-align: center;
}
.table-footer a {
  font-size: 0.82rem; font-weight: 700; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: gap 0.2s;
}
.table-footer a:hover { gap: 10px; }

/* ---- FEATURES BAR ---- */
.features-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.features-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; align-items: center;
}
.feat-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 0 16px; border-right: 1px solid var(--border);
}
.feat-item:last-child { border-right: none; }
.feat-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--gold-subtle); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.feat-title { font-size: 0.875rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.feat-desc { font-size: 0.75rem; color: var(--text-muted); }

/* ---- PRICING ---- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  position: relative; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pricing-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(212,175,55,0.06) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 40px rgba(212,175,55,0.1);
}
.pricing-card.vip {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(212,175,55,0.08) 0%, var(--bg-card) 60%);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  color: #000; font-size: 0.68rem; font-weight: 800;
  padding: 4px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif; white-space: nowrap;
}
.pricing-plan { font-size: 0.75rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.pricing-plan.gold { color: var(--gold); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-amount { font-size: 2.5rem; font-weight: 900; color: var(--text-primary); font-family: 'Montserrat', sans-serif; }
.pricing-amount.gold { color: var(--gold); }
.pricing-period { font-size: 0.875rem; color: var(--text-muted); }
.pricing-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-secondary);
}
.pricing-feature-icon { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing-feature-icon.gold { color: var(--gold); }
.pricing-image {
  width: 100%; height: 120px; object-fit: contain;
  margin: 16px 0; opacity: 0.9;
}

/* ---- FOOTER ---- */
.footer { background: #080808; border-top: 1px solid var(--border); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; max-width: 220px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold-border); color: var(--gold); background: var(--gold-subtle); }
.footer-col-title {
  font-size: 0.72rem; font-weight: 800; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px; font-family: 'Montserrat', sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-app { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.app-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 10px 14px;
  transition: all 0.2s;
}
.app-btn:hover { border-color: var(--gold-border); background: var(--gold-subtle); }
.app-btn-icon { font-size: 1.4rem; }
.app-btn-text { display: flex; flex-direction: column; }
.app-btn-label { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.app-btn-store { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--text-muted); color: var(--text-muted);
  font-size: 0.65rem; font-weight: 800; font-family: 'Montserrat', sans-serif;
}

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: var(--bg-primary);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-glow {
  position: absolute; width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 500px; margin: 0 auto; }

/* ---- PAYMENT LOGOS ---- */
.payment-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.payment-logo {
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 14px;
  font-size: 0.82rem; font-weight: 800; color: var(--text-primary);
  letter-spacing: 0.02em;
}
.payment-logo.visa { color: #1a1f71; background: #fff; }
.payment-logo.mc { color: #eb001b; background: #fff; }
.payment-logo.apple { background: #000; color: #fff; border-color: rgba(255,255,255,0.2); }
.payment-logo.google { background: #fff; color: #333; }

/* ---- UTILITY ---- */
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { max-height: 340px; }
  .hero-trust { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-desc { margin: 0 auto 28px; }
  .quick-cards { grid-template-columns: 1fr; }
  .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .feat-item:nth-child(2) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding: 40px 0; }
  .features-bar-inner { grid-template-columns: 1fr 1fr; }
  .feat-item { border-right: none; padding: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* ===== MOBİL TAHMİN KARTLARI ===== */
  /* Tablo başlığını gizle */
  .pred-table thead { display: none; }

  /* Tablo yapısını kart düzenine çevir */
  .pred-table,
  .pred-table tbody { display: block; width: 100%; }
  .pred-table tbody tr {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 10px;
    padding: 14px 16px;
    position: relative;
    overflow: hidden;
  }
  .pred-table tbody tr::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold-gradient);
    border-radius: 3px 0 0 3px;
  }
  .pred-table tbody tr:hover { background: rgba(255,255,255,0.04); }

  /* Tüm td'leri gizle, sadece gerekli olanları göster */
  .pred-table td { display: none; border: none; padding: 0; }

  /* MAÇ td - her zaman göster, üstte */
  .pred-table td[data-label="MAÇ"],
  .pred-table td[data-label="MATCH"],
  .pred-table td[data-label="SPIEL"],
  .pred-table td[data-label="MATCH"] {
    display: block;
    margin-bottom: 10px;
  }
  .pred-table td[data-label="MAÇ"] .match-teams,
  .pred-table td[data-label="MATCH"] .match-teams {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .match-team { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
  .match-team-away { color: var(--text-secondary); font-weight: 500; }

  /* Alt satır: TAHMİN + GÜVEN + ORAN + SAAT - flex row */
  .pred-table td[data-label="TAHMİN"],
  .pred-table td[data-label="PREDICTION"],
  .pred-table td[data-label="TIPP"],
  .pred-table td[data-label="GÜVEN"],
  .pred-table td[data-label="CONFIDENCE"],
  .pred-table td[data-label="VERTRAUEN"],
  .pred-table td[data-label="ORAN"],
  .pred-table td[data-label="ODD"],
  .pred-table td[data-label="QUOTE"],
  .pred-table td[data-label="BAŞLANGIÇ"],
  .pred-table td[data-label="KICK-OFF"],
  .pred-table td[data-label="ANSTOSS"],
  .pred-table td[data-label="DAKİKA"],
  .pred-table td[data-label="MINUTE"] {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    vertical-align: top;
  }

  /* Mobil alt satır wrapper - tüm tr'ye flex-row ekle */
  .pred-table tbody tr { flex-direction: column; }

  /* Alt bilgi satırı için pseudo wrapper yerine JS-free çözüm */
  .pred-table td[data-label="TAHMİN"],
  .pred-table td[data-label="PREDICTION"] {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 60px;
    text-align: center;
  }
  .pred-table td[data-label="TAHMİN"] .pred-type,
  .pred-table td[data-label="PREDICTION"] .pred-type {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
  }
  .pred-table td[data-label="TAHMİN"] .pred-sub,
  .pred-table td[data-label="PREDICTION"] .pred-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .pred-table td[data-label="GÜVEN"],
  .pred-table td[data-label="CONFIDENCE"] {
    min-width: 52px;
    text-align: center;
  }
  .confidence-circle {
  }

  .pred-table td[data-label="ORAN"],
  .pred-table td[data-label="ODD"] {
    text-align: center;
  }
  .odd-val { font-size: 1rem; font-weight: 700; }

  .pred-table td[data-label="BAŞLANGIÇ"],
  .pred-table td[data-label="KICK-OFF"],
  .pred-table td[data-label="DAKİKA"],
  .pred-table td[data-label="MINUTE"] {
    text-align: center;
  }
  .kick-time, .live-min { font-size: 0.85rem; }

  /* Lig bilgisini gizle mobilde */
  .pred-table td[data-label="LİG"],
  .pred-table td[data-label="LEAGUE"],
  .pred-table td[data-label="LIGA"],
  .pred-table td[data-label="LIGUE"],
  .pred-table td[data-label="LEGA"],

  /* Banko tag - sağ üst köşe */
  .pred-table td:last-child { display: block; position: absolute; top: 12px; right: 12px; }
  .pred-table td:last-child:empty { display: none; }

  /* Alt bilgi satırı - flex row */
  .pred-table tbody tr .row-meta {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  /* Canlı skor td */
  .pred-table td[data-label="CANLI SKOR"],
  .pred-table td[data-label="LIVE SCORE"] {
    display: inline-flex;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #4ade80;
  }

  /* section-header mobil */
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header .see-all { align-self: flex-end; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-bar-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .quick-cards { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-title-gold { font-size: 2rem; }
  .section-title { font-size: 1.4rem; }
  .pred-table-wrap { border-radius: 12px; padding: 0; }
  .pred-table tbody tr { margin-bottom: 8px; padding: 12px 14px; }
}

/* Mobil confidence circle fix */
@media (max-width: 768px) {
  .confidence-circle { width: 42px; height: 42px; font-size: 0.75rem; }
  .pred-table td[data-label="LİG"],
  .pred-table td[data-label="LEAGUE"],
  .pred-table td[data-label="LIGA"],
  .pred-table td[data-label="LIGUE"],
  .pred-table td[data-label="LEGA"] { display: none; }
}

/* ============================================================
   PREMIUM BANNER SECTION (pbs-*)
   ============================================================ */
.premium-banner-section {
  background: #0a0a0a;
  padding: 64px 0 48px;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.pbs-header {
  display: flex; align-items: center; gap: 18px;
  justify-content: center; margin-bottom: 10px;
}
.pbs-header-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
  max-width: 200px;
}
.pbs-header-center { display: flex; align-items: center; gap: 14px; }
.pbs-diamond { color: #d4af37; font-size: 1rem; }
.pbs-diamond-sm { color: #d4af37; font-size: 0.75rem; }
.pbs-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900; color: #fff;
  letter-spacing: 0.04em; margin: 0;
  text-align: center; white-space: nowrap;
}
.pbs-title-gold { color: #d4af37; }
.pbs-subtitle {
  text-align: center; color: #9ca3af;
  font-size: 0.95rem; margin: 0 0 10px; letter-spacing: 0.01em;
}
.pbs-divider { text-align: center; margin-bottom: 36px; }
.pbs-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.pbs-card {
  position: relative; display: flex; flex-direction: column;
  background: #111; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.pbs-card--gold:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.6);
  box-shadow: 0 12px 40px rgba(212,175,55,0.15);
}
.pbs-card--red:hover {
  transform: translateY(-4px);
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 12px 40px rgba(239,68,68,0.15);
}
.pbs-card-img { position: relative; width: 100%; height: 160px; overflow: hidden; }
.pbs-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.pbs-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(10,10,10,0.85) 100%);
}
.pbs-card-img-overlay--red {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(10,0,0,0.88) 100%);
}
.pbs-card-content {
  padding: 16px 20px 20px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.pbs-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.08em; padding: 3px 10px; border-radius: 20px;
  font-family: 'Montserrat', sans-serif; width: fit-content;
}
.pbs-badge--blue { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.4); }
.pbs-badge--gold { background: rgba(212,175,55,0.15); color: #d4af37; border: 1px solid rgba(212,175,55,0.4); }
.pbs-badge--red { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.4); }
.pbs-live-row { display: flex; align-items: center; gap: 8px; }
.pbs-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ef4444;
  animation: pbs-pulse 1.4s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pbs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.pbs-live-text {
  font-size: 0.72rem; font-weight: 800; color: #fff;
  letter-spacing: 0.1em; font-family: 'Montserrat', sans-serif;
}
.pbs-card-title {
  font-family: 'Montserrat', sans-serif; font-size: 1.05rem;
  font-weight: 800; color: #fff; margin: 0; line-height: 1.3;
}
.pbs-card-desc { font-size: 0.82rem; color: #9ca3af; line-height: 1.55; margin: 0; flex: 1; }
.pbs-card-footer { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.pbs-see-now {
  font-size: 0.78rem; font-weight: 800; color: #d4af37;
  letter-spacing: 0.08em; font-family: 'Montserrat', sans-serif;
}
.pbs-see-now--green { color: #22c55e; }
.pbs-card-footer > svg { flex-shrink: 0; color: #d4af37; }
.pbs-card--red .pbs-card-footer > svg { color: #22c55e; }
.pbs-card-icon-circle {
  margin-left: auto; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pbs-card-icon-circle--gold {
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3); color: #d4af37;
}
.pbs-card-icon-circle--green {
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #22c55e;
}
.pbs-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; border-top: 1px solid rgba(212,175,55,0.15);
  padding-top: 28px; flex-wrap: wrap;
}
.pbs-stat { display: flex; align-items: center; gap: 12px; padding: 0 32px; }
.pbs-stat-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.35);
  display: flex; align-items: center; justify-content: center;
  color: #d4af37; flex-shrink: 0;
}
.pbs-stat-title {
  font-size: 0.72rem; font-weight: 800; color: #fff;
  letter-spacing: 0.08em; font-family: 'Montserrat', sans-serif;
}
.pbs-stat-sub { font-size: 0.7rem; color: #6b7280; margin-top: 2px; }
.pbs-stat-divider { width: 1px; height: 40px; background: rgba(212,175,55,0.2); }
@media (max-width: 900px) {
  .pbs-cards { grid-template-columns: 1fr; gap: 16px; }
  .pbs-title { font-size: 1.4rem; white-space: normal; text-align: center; }
  .pbs-header-line { display: none; }
  .pbs-stats { gap: 16px; }
  .pbs-stat { padding: 8px 16px; }
  .pbs-stat-divider { display: none; }
}
@media (max-width: 600px) {
  .premium-banner-section { padding: 40px 0 32px; }
  .pbs-card-img { height: 130px; }
}

/* ─── Match Analysis & Stats Button ─────────────────────────────────────── */
@keyframes analysisPulse {
  0%   { box-shadow: 0 0 10px rgba(34,197,94,0.15), inset 0 1px 0 rgba(74,222,128,0.1); }
  50%  { box-shadow: 0 0 22px rgba(34,197,94,0.35), 0 0 40px rgba(34,197,94,0.1), inset 0 1px 0 rgba(74,222,128,0.15); }
  100% { box-shadow: 0 0 10px rgba(34,197,94,0.15), inset 0 1px 0 rgba(74,222,128,0.1); }
}
@keyframes analysisShimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.pred-analysis-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #0a1a0a 0%, #0d2b0d 40%, #14532d 70%, #166534 100%);
  border: 1px solid rgba(34,197,94,0.45);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #4ade80 !important;
  text-decoration: none !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(34,197,94,0.15), inset 0 1px 0 rgba(74,222,128,0.1);
  transition: all 0.3s ease;
  animation: analysisPulse 2.5s ease-in-out infinite;
  cursor: pointer;
}
.pred-analysis-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74,222,128,0.12), transparent);
  animation: analysisShimmer 3s linear infinite;
  pointer-events: none;
}
.pred-analysis-btn:hover {
  background: linear-gradient(135deg, #14532d 0%, #166534 40%, #15803d 70%, #16a34a 100%) !important;
  box-shadow: 0 0 28px rgba(34,197,94,0.45), 0 4px 18px rgba(0,0,0,0.4), inset 0 1px 0 rgba(74,222,128,0.2) !important;
  transform: translateY(-2px) !important;
  border-color: rgba(74,222,128,0.75) !important;
  color: #86efac !important;
  animation-play-state: paused;
}
.pred-analysis-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 0 14px rgba(34,197,94,0.3) !important;
}

/* ── Canlı Skor navbar nokta animasyonu ── */
@keyframes lsDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* Cookie consent */
.et-cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99990;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(15,15,14,0.96), rgba(23,25,21,0.96));
  border: 1px solid rgba(212,175,55,0.42);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.52), 0 0 24px rgba(212,175,55,0.12);
  backdrop-filter: blur(16px);
}
.et-cookie-copy {
  min-width: 0;
}
.et-cookie-copy strong,
.et-cookie-panel-head strong {
  display: block;
  color: #f7f1d8;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.et-cookie-copy p,
.et-cookie-panel-head p {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}
.et-cookie-copy a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 800;
}
.et-cookie-copy a:hover {
  color: #f5d76e;
}
.et-cookie-actions,
.et-cookie-panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.et-cookie-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.86);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.et-cookie-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(212,175,55,0.48);
  background: rgba(212,175,55,0.12);
}
.et-cookie-btn-accept,
.et-cookie-btn-save {
  background: linear-gradient(135deg, #d4af37, #a8d26c);
  border-color: rgba(255,255,255,0.08);
  color: #050505;
  box-shadow: 0 10px 28px rgba(212,175,55,0.18);
}
.et-cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.56);
  backdrop-filter: blur(8px);
}
.et-cookie-panel-card {
  width: min(620px, 100%);
  position: relative;
  padding: 22px;
  background: linear-gradient(135deg, rgba(18,18,17,0.98), rgba(16,24,18,0.98));
  border: 1px solid rgba(212,175,55,0.36);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.62);
}
.et-cookie-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}
.et-cookie-pref-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.et-cookie-pref {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
}
.et-cookie-pref input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.et-cookie-toggle {
  width: 44px;
  height: 26px;
  position: relative;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.et-cookie-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  transition: transform 0.2s ease;
}
.et-cookie-pref input:checked + .et-cookie-toggle {
  background: rgba(34,197,94,0.32);
  border-color: rgba(74,222,128,0.48);
}
.et-cookie-pref input:checked + .et-cookie-toggle::after {
  transform: translateX(18px);
  background: #86efac;
}
.et-cookie-pref.is-locked .et-cookie-toggle {
  background: rgba(212,175,55,0.28);
  border-color: rgba(212,175,55,0.42);
}
.et-cookie-pref-copy strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.et-cookie-pref-copy small {
  display: block;
  color: rgba(255,255,255,0.52);
  line-height: 1.45;
  margin-top: 3px;
}
.et-cookie-footer-link {
  margin-left: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.46);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}
.et-cookie-footer-link:hover {
  color: #d4af37;
}
html[dir="rtl"] .et-cookie-close,
.et-cookie-panel[dir="rtl"] .et-cookie-close {
  right: auto;
  left: 12px;
}
@media (max-width: 720px) {
  .et-cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }
  .et-cookie-actions,
  .et-cookie-panel-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .et-cookie-btn {
    width: 100%;
  }
  .et-cookie-panel {
    align-items: end;
    padding: 10px;
  }
  .et-cookie-panel-card {
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 18px;
  }
}
