@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800;900&family=Sora:wght@600;700;800&display=swap');
:root{
  --bg:#020b16;
  --surface:#08182d;
  --surface2:#0d2440;
  --text:#f8fbff;
  --muted:#a9bbd4;
  --cyan:#22d3ee;
  --blue:#2d6bff;
  --green:#22c55e;
  --purple:#8b5cf6;
  --gold:#facc15;
  --red:#ef4444;
  --border:rgba(96,165,250,.25);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:radial-gradient(circle at 15% 10%,rgba(34,211,238,.18),transparent 28%),radial-gradient(circle at 80% 20%,rgba(45,107,255,.2),transparent 30%),var(--bg);
}
a{color:inherit;text-decoration:none}
.site-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  background:linear-gradient(120deg,rgba(2,11,22,.2),rgba(7,20,45,.7)),url("");
}
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 6vw;
  background:rgba(2,11,22,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(96,165,250,.16);
}
.brand{display:flex;gap:12px;align-items:center}
.brand-mark{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:950;
  color:#00101e;
  background:linear-gradient(135deg,var(--cyan),var(--blue));
  box-shadow:0 0 28px rgba(34,211,238,.35);
}
.brand strong{display:block;font-size:18px}
.brand small{display:block;color:var(--muted);font-size:10px;letter-spacing:2px;text-transform:uppercase}
nav{display:flex;gap:26px;color:#dbeafe;font-weight:800;font-size:14px}
.top-cta,.primary-btn,.secondary-btn{
  border-radius:999px;
  padding:13px 20px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.top-cta,.primary-btn{
  background:linear-gradient(135deg,var(--cyan),var(--green));
  color:#03101c;
  box-shadow:0 0 30px rgba(34,211,238,.28);
}
.secondary-btn{
  border:1px solid rgba(148,163,184,.35);
  color:#e2e8f0;
  background:rgba(8,24,45,.5);
}
main{position:relative;z-index:1}
.hero,.module-hero{
  min-height:560px;
  padding:72px 10vw 36px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:44px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  color:var(--cyan);
  border:1px solid rgba(34,211,238,.35);
  background:rgba(34,211,238,.08);
  padding:8px 14px;
  border-radius:999px;
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-size:12px;
  font-weight:950;
}
h1{font-size:clamp(38px,6vw,76px);line-height:.95;margin:18px 0 18px}
h2{font-size:clamp(28px,4vw,44px);line-height:1;margin:8px 0 12px}
p{color:var(--muted);line-height:1.6;font-weight:650}
.hero-copy p{font-size:18px;max-width:720px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px}
.hero-dashboard,.module-visual{
  border:1px solid rgba(34,211,238,.25);
  border-radius:34px;
  background:linear-gradient(145deg,rgba(13,36,64,.85),rgba(2,11,22,.55));
  box-shadow:0 0 60px rgba(34,211,238,.12);
  padding:24px;
}
.dashboard-top{display:flex;justify-content:space-between;align-items:center;color:var(--muted)}
.dashboard-top strong{font-size:56px;color:var(--cyan)}
.score-card{padding:20px;border:1px solid var(--border);border-radius:22px;margin:18px 0;background:rgba(8,24,45,.72)}
.score-card h3{font-size:28px;margin:6px 0 14px}
.meter{height:10px;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden}
.meter i{display:block;height:100%;width:86%;background:linear-gradient(90deg,var(--cyan),var(--green))}
.mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.mini-grid div{border:1px solid var(--border);border-radius:18px;padding:16px;background:rgba(2,11,22,.35)}
.mini-grid b{display:block;font-size:24px;color:var(--text)}
.mini-grid span{color:var(--muted);font-size:13px}
.section-head{padding:48px 10vw 18px;text-align:center}
.section-head span{color:var(--cyan);font-weight:950;text-transform:uppercase;letter-spacing:1.5px}
.section-head p{max-width:760px;margin:auto}
.module-grid{
  padding:22px 6vw 70px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}
.module-card{
  min-height:220px;
  padding:24px;
  border-radius:28px;
  background:linear-gradient(155deg,rgba(13,36,64,.88),rgba(2,11,22,.7));
  border:1px solid var(--border);
  box-shadow:0 0 36px rgba(45,107,255,.08);
  transition:.25s ease;
}
.module-card:hover{transform:translateY(-8px);box-shadow:0 0 50px rgba(34,211,238,.18)}
.module-icon{
  width:58px;height:58px;border-radius:20px;
  display:grid;place-items:center;
  font-size:24px;
  font-weight:950;
  background:rgba(34,211,238,.12);
  color:var(--cyan);
  border:1px solid rgba(34,211,238,.26);
}
.module-icon.large{width:88px;height:88px;font-size:34px;margin-bottom:20px}
.module-card strong{display:block;margin-top:18px;font-size:21px}
.module-card p{font-size:14px;min-height:66px}
.module-card em{font-style:normal;color:var(--cyan);font-weight:900}
.accent-green .module-icon,.accent-green .visual-line{color:var(--green);background:rgba(34,197,94,.13);border-color:rgba(34,197,94,.3)}
.accent-purple .module-icon,.accent-purple .visual-line{color:var(--purple);background:rgba(139,92,246,.13);border-color:rgba(139,92,246,.3)}
.accent-gold .module-icon,.accent-gold .visual-line{color:var(--gold);background:rgba(250,204,21,.13);border-color:rgba(250,204,21,.3)}
.accent-emerald .module-icon,.accent-emerald .visual-line{color:#34d399;background:rgba(52,211,153,.13);border-color:rgba(52,211,153,.3)}
.accent-blue .module-icon,.accent-blue .visual-line{color:#60a5fa;background:rgba(96,165,250,.13);border-color:rgba(96,165,250,.3)}
.premium-band,.module-cta{
  margin:0 6vw 70px;
  border:1px solid rgba(250,204,21,.25);
  border-radius:34px;
  background:linear-gradient(135deg,rgba(250,204,21,.12),rgba(34,211,238,.07),rgba(8,24,45,.8));
  padding:34px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}
.premium-band span{color:var(--gold);font-weight:950;text-transform:uppercase;letter-spacing:1.4px}
.module-hero h1{font-size:clamp(36px,5vw,68px)}
.back-link{color:var(--muted);font-weight:850}
.visual-line{
  height:10px;
  border-radius:999px;
  width:100%;
  background:linear-gradient(90deg,var(--cyan),transparent);
  margin:22px 0;
}
.visual-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.visual-cards b{border:1px solid var(--border);border-radius:16px;padding:14px;text-align:center;background:rgba(2,11,22,.35)}
.detail-grid{
  padding:20px 10vw 70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.detail-card{
  padding:30px;
  border-radius:30px;
  border:1px solid var(--border);
  background:rgba(8,24,45,.82);
}
.detail-card span{color:var(--cyan);font-weight:950;text-transform:uppercase}
.detail-card li{margin:14px 0;color:#dbeafe;font-weight:800}
.detail-card.premium{border-color:rgba(250,204,21,.35);background:linear-gradient(145deg,rgba(250,204,21,.08),rgba(8,24,45,.82))}
.simple-page{padding:86px 10vw;min-height:620px}
.site-footer{
  margin-top:50px;
  padding:34px 6vw;
  border-top:1px solid rgba(96,165,250,.16);
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:var(--muted);
}
.footer-links{display:flex;gap:20px;font-weight:850}
@media (max-width:1100px){
  .hero,.module-hero{grid-template-columns:1fr;padding:44px 6vw}
  .module-grid{grid-template-columns:repeat(2,1fr)}
  .detail-grid{grid-template-columns:1fr;padding:20px 6vw}
}
@media (max-width:640px){
  nav{display:none}
  .site-header{padding:14px 18px}
  .top-cta{display:none}
  .module-grid{grid-template-columns:1fr}
  .premium-band,.module-cta{display:block;margin:0 18px 44px}
  h1{font-size:42px}
}


/* KuonSports Home V2 - module-first premium gateway */

body {
  font-family: "Manrope", Inter, Segoe UI, Arial, sans-serif;
}

h1,
h2,
.brand strong,
.module-card strong,
.primary-btn,
.secondary-btn,
.top-cta {
  font-family: "Sora", "Manrope", Inter, sans-serif;
}

.home-modular .site-header {
  padding-top: 14px;
  padding-bottom: 14px;
}

.home-gateway {
  padding: 42px 7vw 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: stretch;
}

.gateway-copy {
  max-width: 860px;
}

.gateway-copy h1 {
  margin: 16px 0 16px;
  max-width: 820px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -0.065em;
}

.gateway-copy p {
  max-width: 790px;
  font-size: 17px;
}

.gateway-side {
  border: 1px solid rgba(34, 211, 238, .24);
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, .16), transparent 35%),
    linear-gradient(145deg, rgba(13, 36, 64, .76), rgba(2, 11, 22, .68));
  box-shadow: 0 0 40px rgba(34, 211, 238, .08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gateway-side span,
.module-stage-head span,
.compact-premium-band span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.gateway-side strong {
  margin-top: 10px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
}

.gateway-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.gateway-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(96, 165, 250, .25);
  background: rgba(8, 24, 45, .72);
}

.module-stage {
  padding: 24px 6vw 64px;
}

.module-stage-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.module-stage-head h2 {
  margin: 8px 0 0;
  max-width: 620px;
  font-size: clamp(30px, 3.7vw, 52px);
  letter-spacing: -0.04em;
}

.module-stage-head p {
  margin: 0;
  max-width: 700px;
  font-size: 16px;
}

.module-grid-v2 {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.module-grid-v2 .module-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-radius: 34px;
  overflow: hidden;
}

.module-grid-v2 .module-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: .35;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 15%, rgba(34, 211, 238, .32), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(34, 197, 94, .18), transparent 36%);
}

.module-grid-v2 .module-card > * {
  position: relative;
  z-index: 1;
}

.module-grid-v2 .module-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  font-size: 25px;
}

.module-grid-v2 .module-card strong {
  margin-top: 22px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.1;
}

.module-grid-v2 .module-card p {
  max-width: 340px;
  min-height: 58px;
  font-size: 15px;
}

.module-grid-v2 .module-card em {
  display: inline-flex;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.compact-premium-band {
  margin: 0 6vw 70px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(250, 204, 21, .28);
  background:
    radial-gradient(circle at 10% 20%, rgba(250, 204, 21, .16), transparent 30%),
    linear-gradient(135deg, rgba(8, 24, 45, .90), rgba(2, 11, 22, .72));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.compact-premium-band h2 {
  margin-top: 8px;
  max-width: 760px;
  font-size: clamp(28px, 3.3vw, 46px);
}

.compact-premium-band p {
  max-width: 760px;
}

@media (max-width: 1100px) {
  .home-gateway {
    grid-template-columns: 1fr;
  }

  .module-stage-head {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .home-gateway {
    padding: 30px 18px 20px;
  }

  .gateway-copy h1 {
    font-size: 38px;
  }

  .module-stage {
    padding-left: 18px;
    padding-right: 18px;
  }

  .module-grid-v2 {
    grid-template-columns: 1fr;
  }

  .compact-premium-band {
    display: block;
    margin-left: 18px;
    margin-right: 18px;
  }
}


/* KuonSports Home V3 - compact first screen */

.home-gateway {
  min-height: auto;
  padding: 34px 7vw 18px;
  display: block;
}

.gateway-copy {
  max-width: 980px;
}

.gateway-copy h1 {
  max-width: 900px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 14px 0 14px;
}

.gateway-copy p {
  max-width: 820px;
  font-size: 16.5px;
}

.gateway-tags {
  margin-top: 18px;
}

.module-stage {
  padding-top: 16px;
}

.module-stage-head {
  margin-bottom: 18px;
}

.module-stage-head h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

@media (max-width: 680px) {
  .home-gateway {
    padding: 28px 18px 14px;
  }

  .gateway-copy h1 {
    font-size: 34px;
  }
}


/* KuonSports Home V4 - remove repeated hero tags */

.gateway-tags {
  display: none !important;
}

.home-gateway {
  padding-bottom: 8px;
}

.gateway-copy p {
  margin-bottom: 0;
}

.module-stage {
  padding-top: 8px;
}





/* KuonSports Home V5 - centered premium hero */

.home-gateway {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 48px 24px 28px !important;
  min-height: auto !important;
}

.home-gateway::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 211, 238, 0.16), transparent 32%),
    radial-gradient(circle at 50% 60%, rgba(59, 130, 246, 0.14), transparent 38%);
  pointer-events: none;
}

.gateway-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto !important;
  padding: 40px 42px !important;
  text-align: center !important;
  background: linear-gradient(180deg, rgba(7,18,38,0.82), rgba(4,14,30,0.92));
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(2, 8, 23, 0.52),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 40px rgba(34, 211, 238, 0.08);
  backdrop-filter: blur(8px);
}

.gateway-copy > * {
  margin-left: auto !important;
  margin-right: auto !important;
}

.gateway-copy .eyebrow,
.gateway-copy .section-badge,
.gateway-copy .hero-badge,
.gateway-copy .gateway-badge {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px !important;
}

.gateway-copy h1 {
  max-width: 820px;
  margin: 0 auto 18px !important;
  font-size: clamp(46px, 5.1vw, 72px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em;
  font-weight: 900 !important;
  text-wrap: balance;
}

.gateway-copy p {
  max-width: 760px;
  margin: 0 auto 26px !important;
  font-size: 22px !important;
  line-height: 1.6 !important;
  color: rgba(226, 232, 240, 0.88) !important;
}

.gateway-actions,
.hero-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px !important;
}

.gateway-actions a,
.gateway-actions button,
.hero-actions a,
.hero-actions button {
  min-width: 240px;
}

@media (max-width: 960px) {
  .gateway-copy {
    max-width: 100%;
    padding: 32px 24px !important;
    border-radius: 24px;
  }

  .gateway-copy h1 {
    font-size: clamp(36px, 9vw, 54px) !important;
  }

  .gateway-copy p {
    font-size: 18px !important;
  }
}

@media (max-width: 640px) {
  .home-gateway {
    padding: 28px 16px 18px !important;
  }

  .gateway-copy {
    padding: 26px 18px !important;
  }

  .gateway-actions a,
  .gateway-actions button,
  .hero-actions a,
  .hero-actions button {
    width: 100%;
    min-width: 0;
  }
}





/* KuonSports Account Page */

.account-link {
  color: #ffffff !important;
  position: relative;
}

.account-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  opacity: .55;
}

.account-hero {
  max-width: 980px;
  margin: 58px auto 26px;
  padding: 44px 42px;
  text-align: center;
  border-radius: 32px;
  border: 1px solid rgba(56, 189, 248, .24);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, .16), transparent 34%),
    linear-gradient(180deg, rgba(7,18,38,.82), rgba(4,14,30,.94));
  box-shadow: 0 22px 70px rgba(2, 8, 23, .55);
}

.account-hero h1 {
  max-width: 820px;
  margin: 16px auto;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.account-hero p {
  max-width: 780px;
  margin: 0 auto 26px;
  font-size: 18px;
}

.account-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.account-grid {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.account-card {
  padding: 26px;
  min-height: 220px;
  border-radius: 28px;
  border: 1px solid rgba(96,165,250,.24);
  background: linear-gradient(155deg, rgba(13,36,64,.84), rgba(2,11,22,.70));
}

.account-card span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.2px;
}

.account-card h2 {
  margin-top: 18px;
  font-size: 24px;
}

.account-card.premium {
  border-color: rgba(250,204,21,.32);
  background: linear-gradient(155deg, rgba(250,204,21,.10), rgba(13,36,64,.78));
}

@media (max-width: 960px) {
  .account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .account-hero {
    margin: 30px 18px 20px;
    padding: 30px 20px;
  }

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





/* KuonSports Home V6 - premium analysis module cards */

.module-stage-premium {
  padding: 26px 6vw 76px !important;
}

.premium-modules-head {
  max-width: 1180px;
  margin: 0 auto 26px;
  text-align: left;
}

.premium-modules-head span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.6px;
}

.premium-modules-head h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.premium-module-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.premium-module-card {
  position: relative;
  min-height: 345px;
  padding: 26px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(96, 165, 250, .22);
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, .12), transparent 34%),
    linear-gradient(155deg, rgba(10, 30, 56, .92), rgba(2, 11, 22, .78));
  box-shadow:
    0 24px 70px rgba(2, 8, 23, .38),
    inset 0 0 0 1px rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.premium-module-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: .38;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, var(--card-glow), transparent 32%),
    linear-gradient(135deg, transparent, rgba(255,255,255,.045), transparent);
}

.premium-module-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--card-glow);
  filter: blur(34px);
  opacity: .26;
}

.premium-module-card:hover {
  transform: translateY(-7px);
  border-color: var(--card-border);
  box-shadow:
    0 30px 90px rgba(2, 8, 23, .56),
    0 0 42px var(--card-shadow);
}

.premium-module-card > * {
  position: relative;
  z-index: 1;
}

.module-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.module-card-top span,
.module-card-top em {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-style: normal;
}

.module-card-top span {
  color: var(--card-color);
  background: var(--card-soft);
  border: 1px solid var(--card-border);
}

.module-card-top em {
  color: rgba(226,232,240,.78);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.premium-icon {
  width: 78px;
  height: 78px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  color: var(--card-color);
  background: var(--card-soft);
  border: 1px solid var(--card-border);
  box-shadow: 0 0 34px var(--card-shadow);
  font-size: 34px;
  font-weight: 950;
}

.premium-module-card h3 {
  margin: 22px 0 12px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.premium-module-card p {
  max-width: 350px;
  min-height: 76px;
  margin: 0 0 18px;
  font-size: 15.5px;
  color: rgba(226,232,240,.78);
}

.module-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.module-chip-row b {
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  color: rgba(226,232,240,.86);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.premium-module-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--card-color);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--card-border);
  font-size: 14px;
  font-weight: 950;
}

.premium-module-card:hover strong {
  background: var(--card-soft);
}

/* Card identities */

.card-code {
  --card-color: #22d3ee;
  --card-glow: rgba(34, 211, 238, .45);
  --card-soft: rgba(34, 211, 238, .12);
  --card-border: rgba(34, 211, 238, .42);
  --card-shadow: rgba(34, 211, 238, .20);
}

.card-team {
  --card-color: #22c55e;
  --card-glow: rgba(34, 197, 94, .40);
  --card-soft: rgba(34, 197, 94, .12);
  --card-border: rgba(34, 197, 94, .40);
  --card-shadow: rgba(34, 197, 94, .18);
}

.card-odds {
  --card-color: #a78bfa;
  --card-glow: rgba(167, 139, 250, .42);
  --card-soft: rgba(167, 139, 250, .13);
  --card-border: rgba(167, 139, 250, .42);
  --card-shadow: rgba(167, 139, 250, .18);
}

.card-program {
  --card-color: #facc15;
  --card-glow: rgba(250, 204, 21, .40);
  --card-soft: rgba(250, 204, 21, .12);
  --card-border: rgba(250, 204, 21, .40);
  --card-shadow: rgba(250, 204, 21, .17);
}

.card-expert {
  --card-color: #34d399;
  --card-glow: rgba(52, 211, 153, .42);
  --card-soft: rgba(52, 211, 153, .12);
  --card-border: rgba(52, 211, 153, .40);
  --card-shadow: rgba(52, 211, 153, .18);
}

.card-picks {
  --card-color: #60a5fa;
  --card-glow: rgba(96, 165, 250, .42);
  --card-soft: rgba(96, 165, 250, .12);
  --card-border: rgba(96, 165, 250, .40);
  --card-shadow: rgba(96, 165, 250, .18);
}

/* CSS icon drawings */

.matrix-icon {
  grid-template-columns: repeat(3, 12px);
  grid-template-rows: repeat(3, 12px);
  gap: 5px;
}

.matrix-icon i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: currentColor;
  opacity: .92;
  box-shadow: 0 0 12px currentColor;
}

.matrix-icon i:nth-child(2),
.matrix-icon i:nth-child(6),
.matrix-icon i:nth-child(8) {
  opacity: .35;
}

.team-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.team-icon i {
  width: 15px;
  height: 28px;
  border-radius: 999px 999px 8px 8px;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.team-icon i:nth-child(2) {
  height: 38px;
  opacity: .9;
}

.program-icon {
  grid-template-columns: repeat(2, 18px);
  grid-template-rows: repeat(2, 18px);
  gap: 7px;
}

.program-icon i {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid currentColor;
  box-shadow: 0 0 12px currentColor;
}

.picks-icon i {
  width: 28px;
  height: 38px;
  border-radius: 8px 8px 4px 4px;
  border: 3px solid currentColor;
  position: relative;
}

.picks-icon i::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -3px;
  height: 14px;
  background: var(--surface);
  transform: rotate(45deg);
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
}

@media (max-width: 1100px) {
  .premium-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .module-stage-premium {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .premium-module-grid {
    grid-template-columns: 1fr;
  }

  .premium-module-card {
    min-height: auto;
  }
}


/* KuonSports Home V7 - hero/card refinement start */

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Hero title refinement */
section:first-of-type h1,
main section:first-of-type h1 {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(56px, 5.6vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 900;
  max-width: 11ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

section:first-of-type p,
main section:first-of-type p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.58;
}

/* Analysis module area refinement */
.module-stage-premium {
  padding-top: 20px !important;
  padding-bottom: 56px !important;
}

.premium-modules-head {
  margin-bottom: 16px;
}

.premium-modules-head span {
  font-size: 12px;
  letter-spacing: 1.5px;
}

.premium-modules-head h2 {
  max-width: 620px;
  margin-top: 8px;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.premium-module-grid {
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-module-card {
  min-height: 272px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  box-shadow:
    0 16px 42px rgba(2, 8, 23, .28),
    inset 0 0 0 1px rgba(255,255,255,.02);
}

.premium-module-card::after {
  width: 110px;
  height: 110px;
  right: -28px;
  top: -28px;
  filter: blur(28px);
  opacity: .20;
}

.module-card-top {
  margin-bottom: 14px;
  gap: 10px;
}

.module-card-top span,
.module-card-top em {
  padding: 6px 8px;
  font-size: 10px;
  letter-spacing: .55px;
}

.premium-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 24px;
  box-shadow: 0 0 20px var(--card-shadow);
}

.premium-module-card h3 {
  margin: 16px 0 8px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.028em;
}

.premium-module-card p {
  max-width: none;
  min-height: auto;
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.52;
  color: rgba(226,232,240,.80);
}

.module-chip-row {
  gap: 6px;
  margin-bottom: 14px;
}

.module-chip-row b {
  padding: 6px 8px;
  font-size: 10.5px;
}

.premium-module-card strong {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
}

/* Icon sizing fixes */
.matrix-icon {
  grid-template-columns: repeat(3, 8px);
  grid-template-rows: repeat(3, 8px);
  gap: 4px;
}

.matrix-icon i {
  width: 8px;
  height: 8px;
  border-radius: 3px;
}

.team-icon i {
  width: 11px;
  height: 20px;
  border-radius: 999px 999px 6px 6px;
}

.team-icon i:nth-child(2) {
  height: 28px;
}

.program-icon {
  grid-template-columns: repeat(2, 14px);
  grid-template-rows: repeat(2, 14px);
  gap: 5px;
}

.program-icon i {
  width: 14px;
  height: 14px;
  border-radius: 5px;
}

.picks-icon i {
  width: 20px;
  height: 28px;
  border-radius: 7px 7px 4px 4px;
  border-width: 2px;
}

.picks-icon i::after {
  left: 4px;
  right: 4px;
  bottom: -2px;
  height: 10px;
  border-left-width: 2px;
  border-top-width: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
  .premium-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .premium-modules-head h2 {
    font-size: 36px;
  }

  .premium-module-grid {
    grid-template-columns: 1fr;
  }

  .premium-module-card {
    min-height: auto;
  }
}

/* KuonSports Home V7 - hero/card refinement end */





/* KuonSports Home V9 - compact hero title final */

body.home-modular .home-gateway {
  padding: 32px 24px 18px !important;
}

body.home-modular .home-gateway .gateway-copy {
  width: min(1380px, calc(100% - 72px)) !important;
  max-width: 1380px !important;
  padding: 34px 56px 38px !important;
  border-radius: 30px !important;
}

body.home-modular .home-gateway .gateway-copy h1 {
  max-width: 1180px !important;
  width: 100% !important;
  margin: 0 auto 18px !important;
  font-size: clamp(42px, 3.9vw, 62px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-wrap: balance !important;
}

body.home-modular .home-gateway .gateway-copy p {
  max-width: 940px !important;
  margin: 0 auto 24px !important;
  font-size: clamp(17px, 1.12vw, 20px) !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

body.home-modular .home-gateway .hero-actions {
  margin-top: 0 !important;
}

@media (min-width: 1180px) {
  body.home-modular .home-gateway .gateway-copy h1 {
    white-space: nowrap !important;
  }
}

@media (max-width: 900px) {
  body.home-modular .home-gateway .gateway-copy {
    width: calc(100% - 36px) !important;
    padding: 30px 24px 34px !important;
  }

  body.home-modular .home-gateway .gateway-copy h1 {
    font-size: clamp(36px, 7vw, 52px) !important;
    white-space: normal !important;
  }
}

@media (max-width: 640px) {
  body.home-modular .home-gateway {
    padding: 24px 12px 14px !important;
  }

  body.home-modular .home-gateway .gateway-copy {
    width: 100% !important;
    padding: 26px 18px 30px !important;
  }

  body.home-modular .home-gateway .gateway-copy h1 {
    font-size: 36px !important;
  }
}





/* KuonSports Home V10 - compact module transition */

.premium-modules-head-compact {
  max-width: 1180px !important;
  margin: 0 auto 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.premium-modules-head-compact::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(
    90deg,
    rgba(34, 211, 238, .45),
    rgba(34, 211, 238, 0)
  );
}

.premium-modules-head-compact span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cyan) !important;
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .24);
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 1.4px !important;
}

.module-stage-premium {
  padding-top: 14px !important;
}





/* KuonSports V11 - logo and nav active state */

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(34, 211, 238, .34);
  border: 1px solid rgba(255,255,255,.10);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Eski Hesabım çizgisini pasifleştir, sadece nav-active çizilsin */
.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  opacity: 0;
  transform: scaleX(.65);
  transition: opacity .18s ease, transform .18s ease;
}

.site-header nav a.nav-active::after {
  opacity: .9;
  transform: scaleX(1);
}

.site-header nav a.account-link::after {
  opacity: 0;
}

.site-header nav a.account-link.nav-active::after {
  opacity: .9;
}

.site-header nav a:hover::after {
  opacity: .55;
  transform: scaleX(1);
}





/* KuonSports Home V12 - compact premium module cards */

.premium-module-grid {
  gap: 18px !important;
}

.premium-module-card {
  min-height: 250px !important;
  padding: 18px 20px !important;
  border-radius: 26px !important;
}

.module-card-top {
  margin-bottom: 14px !important;
}

.module-card-top span {
  padding: 6px 10px !important;
  font-size: 10.5px !important;
}

.premium-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 17px !important;
  font-size: 23px !important;
}

.premium-module-card h3 {
  margin: 14px 0 8px !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
}

.premium-module-card p {
  min-height: 46px !important;
  margin-bottom: 13px !important;
  font-size: 13.8px !important;
  line-height: 1.45 !important;
}

.module-chip-row {
  margin-bottom: 12px !important;
}

.module-chip-row b {
  padding: 5px 8px !important;
  font-size: 10.2px !important;
}

.premium-module-card strong {
  min-height: 36px !important;
  padding: 8px 12px !important;
  font-size: 12.8px !important;
}

.matrix-icon {
  grid-template-columns: repeat(3, 7px) !important;
  grid-template-rows: repeat(3, 7px) !important;
  gap: 4px !important;
}

.matrix-icon i {
  width: 7px !important;
  height: 7px !important;
}





/* KuonSports Code Analysis Detail Page */

.code-analysis-page .site-header nav a::after {
  opacity: 0;
}

.code-hero {
  width: min(1320px, calc(100% - 72px));
  margin: 54px auto 34px;
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 42px;
  align-items: center;
  border-radius: 34px;
  border: 1px solid rgba(34, 211, 238, .24);
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 211, 238, .16), transparent 36%),
    linear-gradient(145deg, rgba(7,18,38,.88), rgba(2,11,22,.88));
  box-shadow: 0 30px 90px rgba(2,8,23,.54);
}

.code-hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 4.3vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.code-hero-copy p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.62;
}

.code-engine-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  min-height: 390px;
  border-radius: 30px;
  border: 1px solid rgba(34, 211, 238, .30);
  background:
    radial-gradient(circle at 50% 20%, rgba(34,211,238,.18), transparent 34%),
    linear-gradient(160deg, rgba(8,24,45,.9), rgba(2,11,22,.78));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 0 48px rgba(34,211,238,.10);
}

.engine-header,
.engine-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.engine-header span,
.engine-result span {
  color: rgba(226,232,240,.74);
  font-weight: 900;
}

.engine-header strong {
  color: var(--cyan);
  font-size: 34px;
}

.code-matrix-visual {
  margin: 34px auto;
  width: 190px;
  display: grid;
  grid-template-columns: repeat(5, 24px);
  gap: 10px;
  justify-content: center;
}

.code-matrix-visual i {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #22d3ee, #22c55e);
  box-shadow: 0 0 18px rgba(34,211,238,.45);
}

.code-matrix-visual i:nth-child(2n) {
  opacity: .35;
}

.code-matrix-visual i:nth-child(5n) {
  opacity: .62;
}

.engine-result {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(34,197,94,.28);
  background: rgba(34,197,94,.08);
}

.engine-result strong {
  color: var(--green);
  font-size: 22px;
}

.engine-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.engine-pills b {
  padding: 8px 10px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  font-size: 12px;
}

.code-section-head {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 18px;
}

.code-section-head span,
.code-flow span,
.code-premium-panel span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.code-section-head h2,
.code-flow h2,
.code-premium-panel h2 {
  max-width: 880px;
  margin: 10px 0 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.04;
}

.code-feature-grid {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.code-feature-grid article,
.flow-steps article {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(96,165,250,.22);
  background: linear-gradient(155deg, rgba(13,36,64,.80), rgba(2,11,22,.72));
}

.code-feature-grid span,
.flow-steps b {
  color: var(--cyan);
  font-weight: 950;
}

.code-feature-grid h3,
.flow-steps strong {
  display: block;
  margin: 14px 0 8px;
  color: #fff;
  font-size: 22px;
}

.code-flow {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.flow-steps b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.28);
}

.code-premium-panel {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 76px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 26px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid rgba(250,204,21,.28);
  background:
    radial-gradient(circle at 15% 30%, rgba(250,204,21,.12), transparent 36%),
    linear-gradient(145deg, rgba(13,36,64,.88), rgba(2,11,22,.78));
}

.code-premium-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.code-premium-panel li {
  padding: 14px;
  border-radius: 18px;
  color: #f8fbff;
  font-weight: 900;
  border: 1px solid rgba(250,204,21,.18);
  background: rgba(255,255,255,.045);
}

@media (max-width: 980px) {
  .code-hero,
  .code-flow,
  .code-premium-panel {
    grid-template-columns: 1fr;
  }

  .code-feature-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .code-hero,
  .code-section-head,
  .code-feature-grid,
  .code-flow,
  .code-premium-panel {
    width: calc(100% - 28px);
  }

  .code-hero {
    margin-top: 28px;
    padding: 26px 20px;
  }

  .code-hero-copy h1 {
    font-size: 38px;
  }

  .code-engine-card {
    min-height: auto;
  }

  .code-premium-panel ul {
    grid-template-columns: 1fr;
  }
}





/* KuonSports Kod Analizi V2 */

.code-analysis-page-v2 .site-header nav a::after {
  opacity: 0;
}

.code-engine-hero {
  width: min(1440px, calc(100% - 64px));
  margin: 44px auto 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 42px;
  align-items: center;
  border-radius: 34px;
  border: 1px solid rgba(34, 211, 238, .24);
  background:
    radial-gradient(circle at 10% 18%, rgba(34,211,238,.16), transparent 32%),
    radial-gradient(circle at 86% 36%, rgba(45,107,255,.16), transparent 34%),
    linear-gradient(145deg, rgba(7,18,38,.90), rgba(2,11,22,.88));
  box-shadow: 0 30px 90px rgba(2,8,23,.52);
}

.code-engine-copy {
  min-width: 0;
}

.code-back {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(226,232,240,.82);
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
}

.code-tag {
  width: max-content;
  margin-top: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.3px;
  border: 1px solid rgba(34,211,238,.32);
  background: rgba(34,211,238,.08);
}

.code-engine-copy h1 {
  max-width: 680px;
  margin: 24px 0 18px;
  font-size: clamp(38px, 3.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.code-engine-copy > p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(226,232,240,.84);
  font-size: 17px;
  line-height: 1.62;
}

.code-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.code-benefits div {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(34,211,238,.18);
  background: rgba(255,255,255,.035);
}

.code-benefits span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.25);
}

.code-benefits strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.code-benefits small {
  display: block;
  margin-top: 6px;
  color: rgba(226,232,240,.68);
  line-height: 1.45;
}

.code-engine-tool {
  min-width: 0;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(34,211,238,.35);
  background:
    radial-gradient(circle at 50% 8%, rgba(34,211,238,.14), transparent 32%),
    linear-gradient(160deg, rgba(8,24,45,.92), rgba(2,11,22,.82));
  box-shadow:
    0 0 58px rgba(34,211,238,.12),
    inset 0 0 0 1px rgba(255,255,255,.025);
}

.engine-tool-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.engine-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--cyan);
  font-size: 22px;
  font-weight: 950;
  border: 1px solid rgba(34,211,238,.28);
  background: rgba(34,211,238,.08);
}

.engine-tool-head h2 {
  margin: 0;
  font-size: 25px;
}

.engine-tool-head p {
  margin: 4px 0 0;
  color: rgba(226,232,240,.66);
  font-size: 14px;
}

.live-badge {
  padding: 9px 12px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
}

.live-badge::first-letter {
  color: var(--green);
}

.engine-label {
  display: block;
  margin: 16px 0 9px;
  color: rgba(248,251,255,.92);
  font-size: 14px;
  font-weight: 900;
}

.engine-input-wrap {
  display: flex;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(96,165,250,.26);
  background: rgba(2,11,22,.45);
  overflow: hidden;
}

.engine-input-wrap input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 18px;
  font-weight: 800;
}

.engine-input-wrap input::placeholder {
  color: rgba(226,232,240,.42);
}

.engine-input-wrap button {
  width: 54px;
  height: 58px;
  border: 0;
  color: rgba(226,232,240,.82);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

.engine-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.engine-options button {
  min-height: 52px;
  border-radius: 16px;
  color: rgba(248,251,255,.86);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(96,165,250,.18);
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

.engine-options button.selected {
  color: #fff;
  border-color: rgba(34,211,238,.75);
  background: rgba(34,211,238,.13);
  box-shadow: 0 0 26px rgba(34,211,238,.12);
}

.engine-start {
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  border: 0;
  border-radius: 17px;
  color: #061322;
  background: linear-gradient(135deg, #1d9bff, #22d3ee, #22c55e);
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 0 34px rgba(34,211,238,.18);
}

.engine-preview {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 16px;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(34,197,94,.22);
  background: rgba(34,197,94,.06);
}

.engine-preview.active {
  border-color: rgba(34,197,94,.48);
  box-shadow: 0 0 26px rgba(34,197,94,.12);
}

.engine-preview span {
  display: block;
  color: rgba(226,232,240,.62);
  font-size: 13px;
  font-weight: 900;
}

.engine-preview strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 25px;
  font-weight: 950;
}

.preview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-pills b {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(248,251,255,.86);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
}

.engine-note {
  margin: 14px 0 0;
  color: rgba(226,232,240,.58);
  font-size: 13px;
}

.code-bottom-callout {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-radius: 24px;
  border: 1px solid rgba(96,165,250,.20);
  background: rgba(255,255,255,.035);
}

.code-bottom-callout div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.code-bottom-callout span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--cyan);
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.22);
}

.code-bottom-callout strong {
  display: block;
  color: #fff;
}

.code-bottom-callout p {
  margin: 4px 0 0;
  color: rgba(226,232,240,.62);
}

.code-bottom-callout a {
  white-space: nowrap;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--cyan);
  font-weight: 950;
  border: 1px solid rgba(34,211,238,.28);
}

.code-info-section,
.code-premium-strip {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto 52px;
}

.section-mini-title,
.code-premium-strip span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
}

.code-info-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.code-info-grid article {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(96,165,250,.20);
  background: linear-gradient(155deg, rgba(13,36,64,.76), rgba(2,11,22,.70));
}

.code-info-grid span {
  color: var(--cyan);
  font-weight: 950;
}

.code-info-grid h3 {
  margin: 14px 0 8px;
  color: #fff;
}

.code-info-grid p {
  margin: 0;
  color: rgba(226,232,240,.68);
}

.code-premium-strip {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 30px;
  border: 1px solid rgba(250,204,21,.26);
  background:
    radial-gradient(circle at 15% 20%, rgba(250,204,21,.12), transparent 32%),
    linear-gradient(145deg, rgba(13,36,64,.84), rgba(2,11,22,.76));
}

.code-premium-strip h2 {
  margin: 10px 0 10px;
  max-width: 720px;
  font-size: clamp(28px, 3vw, 42px);
}

.code-premium-strip p {
  max-width: 760px;
  margin: 0;
}

@media (max-width: 1100px) {
  .code-engine-hero {
    grid-template-columns: 1fr;
  }

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

  .code-benefits,
  .code-info-grid {
    grid-template-columns: 1fr;
  }

  .code-premium-strip {
    display: block;
  }

  .code-premium-strip .primary-btn {
    margin-top: 20px;
  }
}

@media (max-width: 680px) {
  .code-engine-hero,
  .code-info-section,
  .code-premium-strip {
    width: calc(100% - 28px);
  }

  .code-engine-hero {
    margin-top: 26px;
    padding: 24px 18px;
  }

  .code-engine-copy h1 {
    font-size: 36px;
  }

  .code-engine-tool {
    padding: 20px;
  }

  .engine-tool-head {
    grid-template-columns: auto 1fr;
  }

  .live-badge {
    grid-column: 1 / -1;
    width: max-content;
  }

  .engine-preview {
    grid-template-columns: 1fr;
  }

  .code-bottom-callout,
  .code-bottom-callout div {
    display: block;
  }

  .code-bottom-callout a {
    display: inline-flex;
    margin-top: 14px;
  }
}



/* KuonSports Kod Analizi V3 - compact first screen start */

/* Genel hero alanını küçült */
.code-engine-hero {
  width: min(1320px, calc(100% - 52px)) !important;
  margin: 26px auto 28px !important;
  padding: 28px 32px !important;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr) !important;
  gap: 30px !important;
  align-items: center !important;
  border-radius: 30px !important;
}

/* Sol tarafı daha hızlı okunur yap */
.code-back {
  padding: 8px 12px !important;
  font-size: 13px !important;
}

.code-tag {
  margin-top: 16px !important;
  padding: 7px 11px !important;
  font-size: 11px !important;
}

.code-engine-copy h1 {
  max-width: 560px !important;
  margin: 18px 0 14px !important;
  font-size: clamp(34px, 3vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
}

.code-engine-copy > p {
  max-width: 600px !important;
  margin: 0 0 18px !important;
  font-size: 15.5px !important;
  line-height: 1.55 !important;
}

/* İlk ekrandaki küçük avantaj kutularını daha sade yap */
.code-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.code-benefits div {
  padding: 12px !important;
  border-radius: 16px !important;
}

.code-benefits span {
  width: 34px !important;
  height: 34px !important;
  margin-bottom: 8px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
}

.code-benefits strong {
  font-size: 12.5px !important;
}

.code-benefits small {
  margin-top: 4px !important;
  font-size: 11.5px !important;
  line-height: 1.35 !important;
}

/* Kod Motoru panelini kompakt ama daha kullanışlı yap */
.code-engine-tool {
  padding: 22px !important;
  border-radius: 26px !important;
}

.engine-tool-head {
  gap: 12px !important;
  margin-bottom: 18px !important;
}

.engine-icon {
  width: 46px !important;
  height: 46px !important;
  border-radius: 15px !important;
  font-size: 18px !important;
}

.engine-tool-head h2 {
  font-size: 22px !important;
}

.engine-tool-head p {
  font-size: 13px !important;
}

.live-badge {
  padding: 7px 10px !important;
  font-size: 11px !important;
}

.engine-label {
  margin: 12px 0 7px !important;
  font-size: 13px !important;
}

.engine-input-wrap {
  border-radius: 14px !important;
}

.engine-input-wrap input {
  height: 48px !important;
  padding: 0 15px !important;
  font-size: 16px !important;
}

.engine-input-wrap button {
  width: 46px !important;
  height: 48px !important;
  font-size: 20px !important;
}

.engine-options {
  gap: 8px !important;
}

.engine-options button {
  min-height: 44px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
}

.engine-start {
  min-height: 50px !important;
  margin-top: 16px !important;
  border-radius: 15px !important;
  font-size: 15.5px !important;
}

.engine-preview {
  margin-top: 14px !important;
  padding: 14px !important;
  border-radius: 16px !important;
  grid-template-columns: .72fr 1.28fr !important;
  gap: 12px !important;
}

.engine-preview span {
  font-size: 12px !important;
}

.engine-preview strong {
  font-size: 21px !important;
}

.preview-pills {
  gap: 6px !important;
}

.preview-pills b {
  padding: 6px 8px !important;
  font-size: 11px !important;
}

.engine-note {
  margin-top: 10px !important;
  font-size: 12px !important;
}

/* İlk ekranı boğan alt çağrı kartını daha kompakt yap */
.code-bottom-callout {
  margin-top: 2px !important;
  padding: 14px 16px !important;
  border-radius: 20px !important;
}

.code-bottom-callout span {
  width: 38px !important;
  height: 38px !important;
  border-radius: 14px !important;
}

.code-bottom-callout strong {
  font-size: 14px !important;
}

.code-bottom-callout p {
  font-size: 12.5px !important;
}

.code-bottom-callout a {
  padding: 9px 12px !important;
  font-size: 12.5px !important;
}

/* Mobil / tablet */
@media (max-width: 1100px) {
  .code-engine-hero {
    grid-template-columns: 1fr !important;
    width: calc(100% - 32px) !important;
    padding: 24px !important;
  }

  .code-engine-copy h1 {
    max-width: 100% !important;
  }

  .code-benefits {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .code-engine-hero {
    width: calc(100% - 24px) !important;
    margin-top: 18px !important;
    padding: 20px 16px !important;
  }

  .code-engine-copy h1 {
    font-size: 32px !important;
  }

  .code-engine-copy > p {
    font-size: 14.5px !important;
  }

  .engine-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .engine-preview {
    grid-template-columns: 1fr !important;
  }
}

/* KuonSports Kod Analizi V3 - compact first screen end */





/* KuonSports Kod Analizi V4 - clearer code part labels */

.mode-help {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(226,232,240,.76);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 800;
  border: 1px solid rgba(34, 211, 238, .18);
  background: rgba(34, 211, 238, .055);
}

.engine-options button {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .engine-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}





/* KuonSports Kod Analizi V5 - active API states */

.engine-start:disabled {
  cursor: wait;
  filter: saturate(.75);
  opacity: .78;
}

.engine-preview.loading {
  border-color: rgba(34, 211, 238, .44);
  box-shadow: 0 0 26px rgba(34, 211, 238, .10);
}

.engine-preview.loading strong {
  color: var(--cyan);
}

.engine-preview.error {
  border-color: rgba(239, 68, 68, .46);
  background: rgba(239, 68, 68, .07);
  box-shadow: 0 0 26px rgba(239, 68, 68, .08);
}

.engine-preview.error strong {
  color: #fca5a5;
}

.engine-preview.error .preview-pills b {
  color: #fecaca;
  border-color: rgba(239, 68, 68, .24);
  background: rgba(239, 68, 68, .10);
}





/* KuonSports Web Code Results V2 */

.web-code-results {
  width: min(1180px, calc(100% - 52px));
  margin: 0 auto 52px;
  scroll-margin-top: 110px;
}

.web-top-signal-card {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 30px;
  border: 1px solid rgba(34, 211, 238, .26);
  background: linear-gradient(135deg, rgba(29, 155, 255, .95), rgba(34, 211, 238, .80), rgba(34, 197, 94, .92));
  box-shadow: 0 24px 70px rgba(34, 211, 238, .16);
}

.web-top-signal-card span {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
}

.web-top-signal-card h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.web-top-signal-card p {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.web-top-signal-card small {
  color: rgba(255,255,255,.86);
  font-weight: 800;
}

.top-signal-side {
  min-width: 190px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  text-align: center;
}

.top-signal-side b {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 13px;
}

.top-signal-side strong {
  display: block;
  margin: 14px 0;
  color: #fff;
  font-size: 22px;
}

.top-signal-side button,
.web-market-footer button {
  min-height: 38px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #071a2f;
  background: #fff;
  font-size: 14px;
  font-weight: 950;
}

.web-analysis-chips {
  margin: 18px 0;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 24px;
  border: 1px solid rgba(96,165,250,.22);
  background: rgba(8,24,45,.76);
}

.web-analysis-chips b {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(226,232,240,.78);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.web-analysis-chips strong {
  color: #fff;
}

.web-results-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 18px;
}

.web-result-panel {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(96,165,250,.23);
  background: linear-gradient(155deg, rgba(13,36,64,.80), rgba(2,11,22,.72));
}

.web-panel-title {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  color: #fff;
}

.web-panel-title span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.28);
}

.web-panel-title strong {
  display: block;
  font-size: 22px;
}

.web-panel-title em {
  display: block;
  margin-top: 3px;
  color: rgba(226,232,240,.68);
  font-style: normal;
  font-weight: 800;
}

.web-panel-body {
  padding: 0 18px 18px;
}

.web-match-row {
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.web-match-row strong {
  display: block;
  color: #fff;
}

.web-match-row span {
  display: block;
  margin-top: 4px;
  color: rgba(226,232,240,.62);
  font-size: 13px;
}

.web-match-row b {
  color: var(--cyan);
  white-space: nowrap;
}

.web-market-list {
  display: grid;
  gap: 12px;
}

.web-market-card {
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border-radius: 22px;
  border: 1px solid rgba(34,197,94,.32);
  background: rgba(2,11,22,.42);
}

.web-market-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #dbeafe;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
}

.web-market-content h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 19px;
}

.web-market-content p {
  margin: 0 0 10px;
  color: rgba(226,232,240,.70);
  font-weight: 800;
}

.web-progress {
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.web-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.web-market-footer {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.web-market-footer button {
  color: var(--green);
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.24);
}

.web-market-footer span {
  color: #e2e8f0;
  font-weight: 900;
}

.web-market-footer b {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.22);
}

.web-empty-result {
  padding: 16px;
  border-radius: 18px;
  color: rgba(226,232,240,.72);
  background: rgba(255,255,255,.04);
  font-weight: 800;
}

@media (max-width: 960px) {
  .web-results-grid,
  .web-top-signal-card {
    grid-template-columns: 1fr;
  }

  .top-signal-side {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .web-code-results {
    width: calc(100% - 28px);
  }

  .web-market-card {
    grid-template-columns: 1fr;
  }

  .web-market-footer b {
    margin-left: 0;
  }
}





/* KuonSports Web Code Results V3 - readability polish */

.web-top-signal-card {
  padding: 22px 24px !important;
  min-height: 190px;
}

.web-top-signal-card h2 {
  font-size: clamp(26px, 2.6vw, 40px) !important;
}

.top-signal-side {
  min-width: 170px !important;
  padding: 14px !important;
}

.top-signal-side strong {
  font-size: 20px !important;
}

.web-panel-title span {
  font-size: 20px;
}

.web-match-row strong,
.web-match-row span,
.web-market-content h3,
.web-market-content p {
  word-break: normal;
  overflow-wrap: anywhere;
}

.web-match-row b {
  font-size: 14px;
}

.web-analysis-chips {
  padding: 14px 16px !important;
}

.web-analysis-chips b {
  padding: 8px 12px !important;
}





/* KuonSports Web Code Results V4 - compact result + league filter */

.web-top-signal-card {
  padding: 18px 22px !important;
  min-height: auto !important;
  grid-template-columns: minmax(0, 1fr) 160px !important;
  gap: 18px !important;
  border-radius: 24px !important;
}

.web-top-signal-card h2 {
  margin: 6px 0 6px !important;
  font-size: clamp(24px, 2.4vw, 36px) !important;
  line-height: 1.05 !important;
}

.web-top-signal-card p {
  margin: 0 0 6px !important;
  font-size: 15.5px !important;
}

.web-top-signal-card small {
  font-size: 12.5px !important;
  line-height: 1.35 !important;
}

.top-signal-side {
  min-width: 0 !important;
  width: 160px !important;
  padding: 12px !important;
  border-radius: 18px !important;
}

.top-signal-side b {
  padding: 6px 10px !important;
  font-size: 12px !important;
}

.top-signal-side strong {
  margin: 10px 0 !important;
  font-size: 18px !important;
}

.top-signal-side button {
  min-height: 34px !important;
  padding: 7px 14px !important;
  font-size: 13px !important;
}

.web-analysis-chips {
  margin: 14px 0 !important;
  padding: 13px 14px !important;
  border-radius: 20px !important;
}

.web-analysis-chips b {
  padding: 8px 11px !important;
  font-size: 13px !important;
}

/* Premium league filter */
.web-league-filter {
  margin: 0 0 16px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(34, 211, 238, .25);
  background:
    radial-gradient(circle at 10% 10%, rgba(34, 211, 238, .12), transparent 32%),
    linear-gradient(155deg, rgba(13, 36, 64, .76), rgba(2, 11, 22, .70));
}

.league-filter-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.league-filter-head > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(34, 211, 238, .10);
  border: 1px solid rgba(34, 211, 238, .28);
  font-size: 20px;
}

.league-filter-head strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.league-filter-head em {
  display: block;
  margin-top: 3px;
  color: rgba(226, 232, 240, .68);
  font-style: normal;
  font-weight: 800;
}

.league-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.league-buttons button {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 13px;
  cursor: pointer;
  color: rgba(226, 232, 240, .82);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(96, 165, 250, .22);
  font-weight: 900;
}

.league-buttons button.selected {
  color: var(--green);
  border-color: rgba(34, 197, 94, .58);
  background: rgba(34, 197, 94, .10);
}

/* Results area balance */
.web-results-grid {
  align-items: start !important;
}

.web-result-panel {
  border-radius: 24px !important;
}

.web-panel-title {
  padding: 15px 17px !important;
}

.web-panel-title span {
  width: 40px !important;
  height: 40px !important;
  border-radius: 14px !important;
}

.web-panel-title strong {
  font-size: 20px !important;
}

.web-panel-title em {
  font-size: 13px !important;
}

.web-panel-body {
  padding: 0 15px 15px !important;
}

.web-market-card {
  padding: 14px !important;
  border-radius: 20px !important;
}

.web-market-content h3 {
  font-size: 18px !important;
}

.web-market-content p {
  font-size: 13.5px !important;
}

.web-market-more {
  width: 100%;
  min-height: 42px;
  margin-top: 4px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--cyan);
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .24);
  font-weight: 950;
}

@media (max-width: 780px) {
  .web-top-signal-card {
    grid-template-columns: 1fr !important;
  }

  .top-signal-side {
    width: 100% !important;
    text-align: left !important;
  }
}





/* KuonSports V13 - analysis dropdown menu */

.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: rgba(248, 251, 255, .86);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  position: relative;
}

.nav-dropdown-toggle span {
  font-size: 13px;
  color: var(--cyan);
  transform: translateY(1px);
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  opacity: 0;
  transform: scaleX(.65);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown-toggle.nav-active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  opacity: .9;
  transform: scaleX(1);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 340px;
  padding: 12px;
  border-radius: 22px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  border: 1px solid rgba(34, 211, 238, .24);
  background:
    radial-gradient(circle at 15% 10%, rgba(34, 211, 238, .14), transparent 34%),
    linear-gradient(155deg, rgba(8, 24, 45, .98), rgba(2, 11, 22, .96));
  box-shadow:
    0 24px 80px rgba(2, 8, 23, .60),
    0 0 38px rgba(34, 211, 238, .10);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(8, 24, 45, .98);
  border-left: 1px solid rgba(34, 211, 238, .20);
  border-top: 1px solid rgba(34, 211, 238, .20);
}

.nav-dropdown-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  color: #fff;
  border: 1px solid transparent;
  background: transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  transform: translateX(3px);
  border-color: rgba(34, 211, 238, .22);
  background: rgba(34, 211, 238, .075);
}

.nav-dropdown-menu strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.nav-dropdown-menu small {
  display: block;
  margin-top: 4px;
  color: rgba(226, 232, 240, .62);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}

.nav-dropdown-menu .dropdown-all {
  margin-top: 6px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  border-color: rgba(34, 211, 238, .18);
  background: rgba(34, 211, 238, .07);
}

@media (max-width: 980px) {
  .site-header nav {
    gap: 14px;
  }

  .nav-dropdown-menu {
    left: auto;
    right: 0;
    transform: translateY(8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    transform: translateY(0);
  }

  .nav-dropdown-menu::before {
    left: auto;
    right: 28px;
  }
}

@media (max-width: 760px) {
  .nav-dropdown-menu {
    width: min(320px, calc(100vw - 32px));
  }
}





/* KuonSports Team Analysis V2 */

.team-hero-tint {
  border-color: rgba(34, 197, 94, .24) !important;
  background:
    radial-gradient(circle at 10% 18%, rgba(34,197,94,.16), transparent 32%),
    radial-gradient(circle at 86% 36%, rgba(20,184,166,.15), transparent 34%),
    linear-gradient(145deg, rgba(7,18,38,.90), rgba(2,11,22,.88)) !important;
}

.team-tag-green {
  color: var(--green) !important;
  border-color: rgba(34,197,94,.32) !important;
  background: rgba(34,197,94,.08) !important;
}

.team-benefits-green span,
.team-engine-icon {
  color: var(--green) !important;
  border-color: rgba(34,197,94,.28) !important;
  background: rgba(34,197,94,.08) !important;
}

.team-tool-tint {
  border-color: rgba(34,197,94,.35) !important;
  background:
    radial-gradient(circle at 50% 8%, rgba(34,197,94,.14), transparent 32%),
    linear-gradient(160deg, rgba(8,24,45,.92), rgba(2,11,22,.82)) !important;
}

.team-options {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.team-options button.selected {
  border-color: rgba(34,197,94,.75) !important;
  background: rgba(34,197,94,.13) !important;
  box-shadow: 0 0 26px rgba(34,197,94,.12) !important;
}

.team-web-results {
  width: min(1180px, calc(100% - 52px));
  margin: 0 auto 52px;
  scroll-margin-top: 110px;
}

.team-top-card {
  padding: 18px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(34,197,94,.28);
  background: linear-gradient(135deg, rgba(20,184,166,.90), rgba(34,197,94,.82));
}

.team-top-card span {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
}

.team-top-card h2 {
  margin: 6px 0;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 36px);
}

.team-top-card p {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15.5px;
  font-weight: 900;
}

.team-top-card small {
  color: rgba(255,255,255,.86);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 800;
}

.team-top-side {
  width: 170px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  text-align: center;
}

.team-top-side b {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 12px;
}

.team-top-side strong {
  display: block;
  margin: 10px 0;
  color: #fff;
  font-size: 18px;
}

.team-top-side button,
.team-market-footer button {
  min-height: 34px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #071a2f;
  background: #fff;
  font-size: 13px;
  font-weight: 950;
}

.team-analysis-chips {
  margin: 14px 0;
  padding: 13px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(96,165,250,.22);
  background: rgba(8,24,45,.76);
}

.team-analysis-chips b {
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(226,232,240,.78);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

.team-analysis-chips strong {
  color: #fff;
}

.team-results-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 18px;
  align-items: start;
}

.team-result-panel {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(96,165,250,.23);
  background: linear-gradient(155deg, rgba(13,36,64,.80), rgba(2,11,22,.72));
}

.team-panel-title {
  padding: 15px 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  color: #fff;
}

.team-panel-title span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.28);
}

.team-panel-title strong {
  display: block;
  font-size: 20px;
}

.team-panel-title em {
  display: block;
  margin-top: 3px;
  color: rgba(226,232,240,.68);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.team-panel-body {
  padding: 0 15px 15px;
}

.team-match-row {
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.team-match-row strong {
  display: block;
  color: #fff;
}

.team-match-row span {
  display: block;
  margin-top: 4px;
  color: rgba(226,232,240,.62);
  font-size: 13px;
}

.team-match-row b {
  color: var(--green);
  white-space: nowrap;
}

.team-empty-result {
  padding: 16px;
  border-radius: 18px;
  color: rgba(226,232,240,.72);
  background: rgba(255,255,255,.04);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .team-results-grid,
  .team-top-card {
    grid-template-columns: 1fr;
  }
}





/* KuonSports Team Suggestions */

.team-input-wrap {
  position: relative;
}

.team-suggestion-box {
  margin-top: 10px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(34, 197, 94, .26);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, .12), transparent 35%),
    linear-gradient(155deg, rgba(8, 24, 45, .98), rgba(2, 11, 22, .94));
  box-shadow: 0 18px 52px rgba(2, 8, 23, .44);
}

.team-suggestion-item {
  width: 100%;
  min-height: 48px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  text-align: left;
}

.team-suggestion-item:hover {
  background: rgba(34, 197, 94, .10);
}

.team-suggestion-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .25);
  font-size: 11px;
  font-weight: 950;
}

.team-suggestion-item strong {
  font-size: 14px;
  font-weight: 950;
}

.team-suggestion-item em {
  color: rgba(226, 232, 240, .58);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.team-suggestion-empty {
  padding: 12px;
  color: rgba(226, 232, 240, .70);
  font-size: 13px;
  font-weight: 800;
}





/* KuonSports Team Suggestions V2 */

.team-suggestion-box {
  margin-top: 10px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(34, 197, 94, .30);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, .14), transparent 35%),
    linear-gradient(155deg, rgba(8, 24, 45, .98), rgba(2, 11, 22, .96));
  box-shadow: 0 18px 52px rgba(2, 8, 23, .44);
  z-index: 60;
}

.team-suggestion-item {
  width: 100%;
  min-height: 48px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  text-align: left;
}

.team-suggestion-item:hover {
  background: rgba(34, 197, 94, .12);
}

.team-suggestion-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .25);
  font-size: 11px;
  font-weight: 950;
}

.team-suggestion-item strong {
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.team-suggestion-item em {
  color: rgba(226, 232, 240, .62);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.team-suggestion-empty {
  padding: 12px;
  color: rgba(226, 232, 240, .72);
  font-size: 13px;
  font-weight: 800;
}





/* KuonSports DB Team Suggestions */

.team-suggestion-box {
  margin-top: 10px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(34, 197, 94, .30);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, .14), transparent 35%),
    linear-gradient(155deg, rgba(8, 24, 45, .98), rgba(2, 11, 22, .96));
  box-shadow: 0 18px 52px rgba(2, 8, 23, .44);
  z-index: 60;
}

.team-suggestion-item {
  width: 100%;
  min-height: 52px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  text-align: left;
}

.team-suggestion-item:hover {
  background: rgba(34, 197, 94, .12);
}

.team-suggestion-item span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .25);
  font-size: 11px;
  font-weight: 950;
}

.team-suggestion-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.team-suggestion-item small {
  display: block;
  margin-top: 3px;
  color: rgba(226, 232, 240, .60);
  font-size: 12px;
  font-weight: 800;
}

.team-suggestion-item em {
  color: rgba(226, 232, 240, .62);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.team-suggestion-empty {
  padding: 12px;
  color: rgba(226, 232, 240, .72);
  font-size: 13px;
  font-weight: 800;
}





/* KuonSports Team Mode Cards */

.team-mode-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.team-mode-card {
  position: relative;
  min-height: 112px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, .24);
  background:
    radial-gradient(circle at 16% 12%, rgba(34, 211, 238, .12), transparent 34%),
    rgba(255, 255, 255, .035);
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.team-mode-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, .45);
  background: rgba(34, 211, 238, .07);
}

.team-mode-card.selected {
  border-color: rgba(34, 197, 94, .72);
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 197, 94, .18), transparent 38%),
    rgba(34, 197, 94, .08);
  box-shadow: 0 0 26px rgba(34, 197, 94, .10);
}

.team-mode-card.locked {
  opacity: .82;
}

.team-mode-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .24);
  font-weight: 950;
}

.team-mode-icon.purple {
  color: #a855f7;
  background: rgba(168, 85, 247, .10);
  border-color: rgba(168, 85, 247, .30);
}

.team-mode-icon.trend {
  color: var(--cyan);
  background: rgba(34, 211, 238, .10);
  border-color: rgba(34, 211, 238, .30);
}

.team-mode-card strong {
  margin-top: 38px;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 950;
}

.team-mode-card small {
  color: rgba(226, 232, 240, .68);
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 800;
}

.team-mode-card em {
  margin-top: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .20);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 950;
}

.team-mode-card.locked em {
  color: #c4b5fd;
  background: rgba(168, 85, 247, .10);
  border-color: rgba(168, 85, 247, .22);
}

@media (max-width: 760px) {
  .team-mode-selector {
    grid-template-columns: 1fr;
  }

  .team-mode-card {
    min-height: 92px;
  }
}

\n

/* KuonSports Team Suggestions V14 - force hide selected list */
.team-suggestion-box[hidden] {
  display: none !important;
}




/* KuonSports Team Results Accordion */

.team-result-panel {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.team-result-panel.team-panel-collapsed {
  min-height: auto;
}

.team-panel-clickable {
  cursor: pointer;
  user-select: none;
  grid-template-columns: auto 1fr auto !important;
}

.team-panel-clickable:hover {
  background: rgba(34, 197, 94, .045);
}

.team-panel-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .24);
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}

.team-panel-body[hidden] {
  display: none !important;
}

.team-panel-open {
  box-shadow: 0 18px 46px rgba(2, 8, 23, .22);
}

/* Diğer bahis alanları açılınca daha düzenli kart yapısı */
.team-market-list {
  display: grid;
  gap: 12px;
}

.team-market-card {
  align-items: center !important;
  min-height: auto !important;
}

.team-market-icon {
  align-self: start;
}

.team-market-content h3 {
  margin-bottom: 7px !important;
  line-height: 1.18;
}

.team-market-content p {
  margin-bottom: 10px !important;
}

.team-market-footer {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.team-market-footer span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-market-footer b {
  margin-left: 0 !important;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .team-market-footer {
    grid-template-columns: 1fr;
  }

  .team-market-footer span {
    white-space: normal;
  }
}





/* KuonSports Team Page Visual Polish V1 */

/* Takım Motoru ikonunu harf yerine analiz simgesine çevir */
.team-engine-icon {
  overflow: hidden;
  position: relative;
}

.team-engine-icon .team-shield-mark {
  width: 27px;
  height: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 4px;
  padding: 5px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, .24), transparent 60%),
    rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .24);
}

.team-engine-icon .team-shield-mark i {
  display: block;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, #22c55e, #14b8a6);
  box-shadow: 0 0 14px rgba(34, 197, 94, .38);
}

.team-engine-icon .team-shield-mark i:nth-child(1) {
  height: 12px;
}

.team-engine-icon .team-shield-mark i:nth-child(2) {
  height: 20px;
}

.team-engine-icon .team-shield-mark i:nth-child(3) {
  height: 16px;
}

/* Sol alanı kompozisyon yazısı gibi değil, premium ürün alanı gibi göster */
.team-hero-tint .code-engine-copy h1 {
  max-width: 620px !important;
  font-size: clamp(36px, 3.15vw, 52px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.045em !important;
}

.team-hero-tint .code-engine-copy > p {
  max-width: 640px !important;
  font-size: 15.8px !important;
  line-height: 1.55 !important;
}

/* Sol tarafa küçük dashboard hissi veren kart */
.team-hero-radar-card {
  max-width: 640px;
  margin: 20px 0 18px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 197, 94, .24);
  background:
    radial-gradient(circle at 14% 10%, rgba(34, 197, 94, .16), transparent 35%),
    linear-gradient(135deg, rgba(8, 24, 45, .84), rgba(2, 11, 22, .72));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}

.team-hero-radar-card span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.3px;
}

.team-hero-radar-card strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.team-hero-radar-card small {
  display: block;
  margin-top: 5px;
  color: rgba(226, 232, 240, .64);
  font-size: 12.5px;
  font-weight: 800;
}

.team-radar-bars {
  width: 92px;
  height: 58px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(34, 197, 94, .075);
  border: 1px solid rgba(34, 197, 94, .18);
}

.team-radar-bars i {
  width: 15px;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, #22c55e, #14b8a6);
  box-shadow: 0 0 16px rgba(34, 197, 94, .32);
}

.team-radar-bars i:nth-child(1) {
  height: 25px;
}

.team-radar-bars i:nth-child(2) {
  height: 38px;
}

.team-radar-bars i:nth-child(3) {
  height: 31px;
}

/* Alttaki üç fayda kartını daha kompakt ve premium yap */
.team-benefits-green {
  margin-top: 12px !important;
}

.team-benefits-green div {
  min-height: 118px;
  background:
    radial-gradient(circle at 16% 10%, rgba(34, 197, 94, .12), transparent 38%),
    rgba(255,255,255,.032) !important;
}

.team-benefits-green span {
  box-shadow: 0 0 20px rgba(34, 197, 94, .12);
}

@media (max-width: 900px) {
  .team-hero-radar-card {
    grid-template-columns: 1fr;
  }

  .team-radar-bars {
    width: 100%;
    justify-content: flex-start;
  }
}





/* KuonSports Team Hero Alignment Fix V1 */

/* Sol tanıtım alanı ile sağdaki Takım Motoru aynı üst hizada başlasın */
.code-engine-hero.team-hero-tint {
  align-items: start !important;
}

/* Sol blok yukarı hizalansın */
.team-hero-tint .code-engine-copy {
  align-self: start !important;
  padding-top: 6px !important;
}

/* Sağdaki takım motoru kartı da üstten hizalansın */
.team-hero-tint .team-tool-tint,
.team-hero-tint .code-engine-tool {
  align-self: start !important;
}

/* Sol taraftaki geri dönüş ve etiket boşlukları daha dengeli olsun */
.team-hero-tint .code-back {
  margin-top: 0 !important;
}

.team-hero-tint .code-tag {
  margin-top: 14px !important;
}

/* Başlık çok aşağıdan başlamasın */
.team-hero-tint .code-engine-copy h1 {
  margin-top: 22px !important;
}

/* Sol görsel kart ile fayda kartları arasında daha dengeli boşluk */
.team-hero-radar-card {
  margin-top: 18px !important;
  margin-bottom: 16px !important;
}

.team-benefits-green {
  margin-top: 10px !important;
}





/* KuonSports Team Page Simplify V2 */

/* Sol taraftaki tekrar/kart kalabalığını kaldır */
body.team-analysis-page-v2 .team-hero-radar-card,
body.team-analysis-page-v2 .team-benefits-green,
body.team-analysis-page-v2 .team-hero-tint > .code-bottom-callout {
  display: none !important;
}

/* Hero alanını daha sade ve dengeli yap */
body.team-analysis-page-v2 .team-hero-tint {
  align-items: start !important;
  padding-top: 34px !important;
  padding-bottom: 34px !important;
  gap: 38px !important;
}

/* Sol taraf artık kısa satış mesajı gibi dursun */
body.team-analysis-page-v2 .team-hero-tint .code-engine-copy {
  align-self: start !important;
  padding-top: 8px !important;
}

body.team-analysis-page-v2 .team-hero-tint .code-engine-copy h1 {
  max-width: 580px !important;
  margin-top: 24px !important;
  margin-bottom: 16px !important;
  font-size: clamp(38px, 3vw, 54px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.045em !important;
}

body.team-analysis-page-v2 .team-hero-tint .code-engine-copy > p {
  max-width: 620px !important;
  margin-bottom: 0 !important;
  color: rgba(226, 232, 240, .82) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

/* Kart yerine küçük net etiketler */
.team-hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.team-hero-mini-points span {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(248, 251, 255, .88);
  background: rgba(34, 197, 94, .075);
  border: 1px solid rgba(34, 197, 94, .22);
  font-size: 13px;
  font-weight: 900;
}

/* Sağdaki motor kartı ana odak olsun */
body.team-analysis-page-v2 .team-tool-tint,
body.team-analysis-page-v2 .code-engine-tool {
  align-self: start !important;
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, .10),
    0 26px 80px rgba(2, 8, 23, .44) !important;
}

/* Büyük boşluk hissini azalt */
body.team-analysis-page-v2 .team-info-section {
  margin-top: 8px !important;
}

@media (max-width: 980px) {
  body.team-analysis-page-v2 .team-hero-tint {
    grid-template-columns: 1fr !important;
  }

  body.team-analysis-page-v2 .team-hero-tint .code-engine-copy h1 {
    font-size: 36px !important;
  }
}





/* KuonSports Team Extra Modes */

.team-extra-fields {
  margin-top: 12px;
}

.team-extra-panel {
  display: none;
}

.team-extra-panel.active {
  display: block;
}

.team-odds-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 10px;
}

.team-extra-select,
.team-extra-input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border-radius: 14px;
  color: #fff;
  background: rgba(2, 11, 22, .45);
  border: 1px solid rgba(34, 197, 94, .22);
  outline: 0;
  font-weight: 850;
}

.team-extra-select option {
  color: #061322;
}

.team-mode-card:not(.locked) {
  cursor: pointer;
}

.team-mode-card:not(.locked):hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .team-odds-grid {
    grid-template-columns: 1fr;
  }
}





/* KuonSports Team Extra Mode Compact V1 */

/* İkili eşleşme ve Oran+Takım modlarında gereksiz maç tipi alanını gizle */
body[data-team-mode="head_to_head"] .team-side-label,
body[data-team-mode="head_to_head"] #teamOptions,
body[data-team-mode="head_to_head"] #teamModeHelp,
body[data-team-mode="team_odds"] .team-side-label,
body[data-team-mode="team_odds"] #teamOptions,
body[data-team-mode="team_odds"] #teamModeHelp {
  display: none !important;
}

/* Team Motor kartını daha kompakt tut */
body.team-analysis-page-v2 .team-tool-tint {
  padding: 18px !important;
}

body.team-analysis-page-v2 .team-mode-selector {
  gap: 10px !important;
  margin: 12px 0 14px !important;
}

body.team-analysis-page-v2 .team-mode-card {
  min-height: 88px !important;
  padding: 12px !important;
}

body.team-analysis-page-v2 .team-mode-card strong {
  font-size: 14px !important;
}

body.team-analysis-page-v2 .team-mode-card small {
  font-size: 11px !important;
}

body.team-analysis-page-v2 .team-mode-card em {
  padding: 4px 8px !important;
  font-size: 10px !important;
}

body.team-analysis-page-v2 .team-extra-fields {
  margin: 10px 0 10px !important;
}

body.team-analysis-page-v2 .team-extra-panel.active .engine-label {
  margin-top: 4px !important;
}

body.team-analysis-page-v2 .team-extra-panel.active .mode-help {
  margin-top: 8px !important;
  padding: 8px 10px !important;
  font-size: 12px !important;
}

/* Takım motorundaki hazır önizleme kartı sayfayı uzatmasın */
body.team-analysis-page-v2 .team-tool-tint .engine-preview {
  display: none !important;
}

body.team-analysis-page-v2 .team-tool-tint .engine-note {
  margin-top: 8px !important;
  font-size: 12px !important;
}

/* Rakip takım öneri kutusu */
.team-opponent-suggestion-box {
  margin-top: 10px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(34, 197, 94, .30);
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, .14), transparent 35%),
    linear-gradient(155deg, rgba(8, 24, 45, .98), rgba(2, 11, 22, .96));
  box-shadow: 0 18px 52px rgba(2, 8, 23, .44);
  z-index: 80;
}

.team-opponent-suggestion-box[hidden] {
  display: none !important;
}

.team-opponent-suggestion-item {
  width: 100%;
  min-height: 48px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  color: #fff;
  background: transparent;
  text-align: left;
}

.team-opponent-suggestion-item:hover {
  background: rgba(34, 197, 94, .12);
}

.team-opponent-suggestion-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .25);
  font-size: 11px;
  font-weight: 950;
}

.team-opponent-suggestion-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.team-opponent-suggestion-item small {
  display: block;
  margin-top: 3px;
  color: rgba(226, 232, 240, .60);
  font-size: 12px;
  font-weight: 800;
}

.team-opponent-suggestion-item em {
  color: rgba(226, 232, 240, .62);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}





/* KuonSports Team Market Results Polish V1 */

/* Diğer Bahis Alanları açıldığında liste kontrollü ve düzenli dursun */
body.team-analysis-page-v2 .team-market-list {
  counter-reset: marketRank;
  max-height: 640px;
  overflow-y: auto;
  padding: 0 6px 2px 0 !important;
  display: grid !important;
  gap: 10px !important;
}

body.team-analysis-page-v2 .team-market-list::-webkit-scrollbar {
  width: 8px;
}

body.team-analysis-page-v2 .team-market-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}

body.team-analysis-page-v2 .team-market-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--green));
  border-radius: 999px;
}

/* Her sonuç kartı ayrı, kompakt ve okunur */
body.team-analysis-page-v2 .team-market-card {
  counter-increment: marketRank;
  position: relative !important;
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: start !important;
  padding: 14px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(34, 197, 94, .24) !important;
  border-left: 4px solid rgba(34, 197, 94, .75) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 197, 94, .11), transparent 35%),
    linear-gradient(145deg, rgba(8, 24, 45, .82), rgba(2, 11, 22, .68)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018);
}

body.team-analysis-page-v2 .team-market-card:nth-child(even) {
  border-left-color: rgba(34, 211, 238, .72) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 211, 238, .10), transparent 35%),
    linear-gradient(145deg, rgba(8, 24, 45, .80), rgba(2, 11, 22, .66)) !important;
}

/* Sıra numarası */
body.team-analysis-page-v2 .team-market-card::before {
  content: counter(marketRank);
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #071a2f;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-size: 11px;
  font-weight: 950;
  z-index: 2;
}

/* Sol ikon daha düzgün */
body.team-analysis-page-v2 .team-market-icon {
  width: 46px !important;
  height: 46px !important;
  margin-top: 14px !important;
  border-radius: 15px !important;
  color: rgba(226, 232, 240, .92) !important;
  background: rgba(34, 197, 94, .075) !important;
  border: 1px solid rgba(34, 197, 94, .20) !important;
}

/* Başlık ve açıklama düzeni */
body.team-analysis-page-v2 .team-market-content {
  min-width: 0;
}

body.team-analysis-page-v2 .team-market-content h3 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: 17px !important;
  line-height: 1.18 !important;
  letter-spacing: -.015em;
}

body.team-analysis-page-v2 .team-market-content p {
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px !important;
  padding: 5px 9px;
  border-radius: 999px;
  color: rgba(226, 232, 240, .76) !important;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
}

/* Progress bar daha ince ve premium */
body.team-analysis-page-v2 .team-progress {
  height: 6px !important;
  margin: 6px 0 11px;
  border-radius: 999px !important;
  background: rgba(255,255,255,.075) !important;
}

body.team-analysis-page-v2 .team-progress i {
  background: linear-gradient(90deg, var(--cyan), var(--green)) !important;
}

/* Alt satır: Seç / isabet / yüzde daha düzenli */
body.team-analysis-page-v2 .team-market-footer {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
  margin-top: 0 !important;
}

body.team-analysis-page-v2 .team-market-footer button {
  min-height: 32px !important;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  color: var(--green) !important;
  background: rgba(34, 197, 94, .10) !important;
  border: 1px solid rgba(34, 197, 94, .28) !important;
  font-size: 12.5px !important;
  font-weight: 950 !important;
}

body.team-analysis-page-v2 .team-market-footer span {
  min-width: 0;
  color: rgba(226, 232, 240, .84) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.team-analysis-page-v2 .team-market-footer b {
  margin-left: 0 !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: rgba(34, 197, 94, .12) !important;
  border: 1px solid rgba(34, 197, 94, .24) !important;
  font-size: 13px !important;
  white-space: nowrap;
}

/* Panel başlığı açıkken daha güçlü görünsün */
body.team-analysis-page-v2 .team-panel-open .team-panel-title {
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}

/* Mobilde kart tek kolona düşsün */
@media (max-width: 760px) {
  body.team-analysis-page-v2 .team-market-card {
    grid-template-columns: 1fr !important;
    padding-top: 42px !important;
  }

  body.team-analysis-page-v2 .team-market-icon {
    display: none !important;
  }

  body.team-analysis-page-v2 .team-market-footer {
    grid-template-columns: 1fr !important;
  }

  body.team-analysis-page-v2 .team-market-footer span {
    white-space: normal;
  }
}





/* KuonSports Team Results Force Closed */

.team-panel-body[hidden] {
  display: none !important;
}

.team-panel-clickable {
  cursor: pointer;
  user-select: none;
  grid-template-columns: auto 1fr auto !important;
}

.team-panel-clickable:hover {
  background: rgba(34, 197, 94, .045);
}

.team-panel-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .24);
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}

.team-panel-collapsed .team-panel-title {
  margin-bottom: 0 !important;
}

.team-panel-open .team-panel-title {
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}





/* KuonSports Team Results Final Accordion */

.team-panel-body[hidden] {
  display: none !important;
}

.team-panel-title {
  position: relative;
}

.team-panel-clickable {
  cursor: pointer;
  user-select: none;
  grid-template-columns: auto 1fr auto !important;
}

.team-panel-clickable:hover {
  background: rgba(34, 197, 94, .045);
}

.team-panel-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .24);
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}

.team-panel-collapsed .team-panel-body {
  display: none !important;
}

.team-panel-collapsed .team-panel-title {
  margin-bottom: 0 !important;
}

.team-panel-open .team-panel-title {
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}





/* KuonSports Clean Team Accordion */

.team-panel-body[hidden] {
  display: none !important;
}

.team-panel-collapsed .team-panel-body {
  display: none !important;
}

.team-panel-clickable {
  cursor: pointer;
  user-select: none;
  grid-template-columns: auto 1fr auto !important;
}

.team-panel-clickable:hover {
  background: rgba(34, 197, 94, .045);
}

.team-panel-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .24);
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}

.team-panel-collapsed .team-panel-title {
  margin-bottom: 0 !important;
}

.team-panel-open .team-panel-title {
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}

.team-panel-open .team-panel-body {
  display: block;
}





/* KuonSports Team Market Force Closed */

.team-panel-collapsed .team-panel-body,
.team-panel-body[hidden] {
  display: none !important;
}

.team-panel-clickable {
  cursor: pointer;
}

.team-panel-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .24);
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}





/* KuonSports Team Market Panel Hidden Fix V2 */

/* Diğer Bahis Alanları paneli kapalıyken market list CSS tarafından tekrar açılmasın */
body.team-analysis-page-v2 .team-result-panel.team-panel-collapsed .team-panel-body.team-market-list,
body.team-analysis-page-v2 .team-result-panel.team-panel-collapsed .team-panel-body.team-market-list[hidden],
body.team-analysis-page-v2 .team-panel-body.team-market-list[hidden] {
  display: none !important;
  visibility: hidden !important;
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Panel açılınca normal liste düzenine dönsün */
body.team-analysis-page-v2 .team-result-panel.team-panel-open .team-panel-body.team-market-list {
  display: grid !important;
  visibility: visible !important;
  max-height: 640px !important;
  overflow-y: auto !important;
  padding: 0 6px 2px 0 !important;
}





/* KuonSports Team Results Master Accordion */

body.team-analysis-page-v2 .team-panel-body[hidden],
body.team-analysis-page-v2 .team-result-panel.team-panel-collapsed > .team-panel-body {
  display: none !important;
  visibility: hidden !important;
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.team-analysis-page-v2 .team-result-panel.team-panel-open > .team-panel-body {
  display: block !important;
  visibility: visible !important;
  max-height: none !important;
  overflow: visible !important;
}

body.team-analysis-page-v2 .team-result-panel.team-panel-open > .team-panel-body.team-market-list {
  display: grid !important;
  visibility: visible !important;
  max-height: 640px !important;
  overflow-y: auto !important;
  padding: 0 6px 2px 0 !important;
}

body.team-analysis-page-v2 .team-panel-clickable {
  cursor: pointer;
  user-select: none;
  grid-template-columns: auto 1fr auto !important;
}

body.team-analysis-page-v2 .team-panel-clickable:hover {
  background: rgba(34, 197, 94, .045);
}

body.team-analysis-page-v2 .team-panel-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34, 197, 94, .10);
  border: 1px solid rgba(34, 197, 94, .24);
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}

body.team-analysis-page-v2 .team-panel-collapsed .team-panel-title {
  margin-bottom: 0 !important;
}

body.team-analysis-page-v2 .team-panel-open .team-panel-title {
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 12px;
}





/* KuonSports Odds Analysis Page V1 */

.odds-engine-hero {
  width: min(1320px, calc(100% - 52px));
  margin: 30px auto 44px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
  gap: 42px;
  align-items: start;
  border-radius: 30px;
  border: 1px solid rgba(168, 85, 247, .24);
  background:
    radial-gradient(circle at 12% 16%, rgba(168, 85, 247, .15), transparent 32%),
    radial-gradient(circle at 86% 32%, rgba(34, 211, 238, .11), transparent 34%),
    linear-gradient(145deg, rgba(7,18,38,.90), rgba(2,11,22,.88));
  box-shadow: 0 30px 90px rgba(2,8,23,.52);
}

.odds-engine-copy {
  align-self: start;
  padding-top: 8px;
}

.odds-tag {
  width: max-content;
  margin-top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #c084fc;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.3px;
  border: 1px solid rgba(168,85,247,.32);
  background: rgba(168,85,247,.08);
}

.odds-engine-copy h1 {
  max-width: 590px;
  margin: 24px 0 16px;
  color: #fff;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.odds-engine-copy > p {
  max-width: 640px;
  margin: 0;
  color: rgba(226,232,240,.82);
  font-size: 16px;
  line-height: 1.55;
}

.odds-hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.odds-hero-mini-points span {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(248,251,255,.88);
  background: rgba(168,85,247,.09);
  border: 1px solid rgba(168,85,247,.24);
  font-size: 13px;
  font-weight: 900;
}

.odds-engine-tool {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(168,85,247,.35);
  background:
    radial-gradient(circle at 50% 8%, rgba(168,85,247,.16), transparent 32%),
    linear-gradient(160deg, rgba(8,24,45,.92), rgba(2,11,22,.82));
  box-shadow: 0 0 58px rgba(168,85,247,.10), inset 0 0 0 1px rgba(255,255,255,.025);
}

.odds-engine-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #c084fc;
  background: rgba(168,85,247,.10);
  border: 1px solid rgba(168,85,247,.28);
  font-size: 22px;
  font-weight: 950;
}

.odds-form-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 10px;
  margin-top: 16px;
}

.odds-select,
.odds-input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border-radius: 14px;
  color: #fff;
  background: rgba(2,11,22,.45);
  border: 1px solid rgba(168,85,247,.24);
  outline: 0;
  font-weight: 850;
}

.odds-select option {
  color: #061322;
}

.odds-input::placeholder {
  color: rgba(226,232,240,.42);
}

.odds-mode-help {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(226,232,240,.76);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 800;
  border: 1px solid rgba(168,85,247,.18);
  background: rgba(168,85,247,.055);
}

.odds-start {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  border: 0;
  border-radius: 15px;
  color: #061322;
  background: linear-gradient(135deg, #38bdf8, #a855f7);
  font-size: 15.5px;
  font-weight: 950;
  cursor: pointer;
}

.odds-preview {
  margin-top: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(168,85,247,.22);
  background: rgba(168,85,247,.06);
}

.odds-preview.active {
  border-color: rgba(168,85,247,.48);
  box-shadow: 0 0 26px rgba(168,85,247,.12);
}

.odds-preview span {
  display: block;
  color: rgba(226,232,240,.62);
  font-size: 12px;
  font-weight: 900;
}

.odds-preview strong {
  display: block;
  margin-top: 4px;
  color: #c084fc;
  font-size: 21px;
  font-weight: 950;
}

.odds-web-results {
  width: min(1180px, calc(100% - 52px));
  margin: 0 auto 52px;
}

@media (max-width: 1100px) {
  .odds-engine-hero {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 26px;
  }

  .odds-form-grid {
    grid-template-columns: 1fr;
  }

  .odds-preview {
    grid-template-columns: 1fr;
  }
}





/* KuonSports Odds Analysis App-Inspired V2 */

.odds-analysis-page-v2 .site-header nav a[href="../web-panel.html"] {
  display: none !important;
}

.odds-mobile-inspired-hero {
  width: min(1320px, calc(100% - 52px));
  margin: 30px auto 46px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  gap: 42px;
  align-items: start;
  border-radius: 30px;
  border: 1px solid rgba(34, 197, 94, .22);
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, .18), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(34, 197, 94, .14), transparent 34%),
    linear-gradient(145deg, rgba(7,18,38,.92), rgba(2,11,22,.88));
  box-shadow: 0 30px 90px rgba(2,8,23,.52);
}

.odds-copy {
  padding-top: 8px;
}

.odds-tag-v2 {
  width: max-content;
  margin-top: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.3px;
  border: 1px solid rgba(34, 197, 94, .32);
  background: rgba(34, 197, 94, .08);
}

.odds-copy h1 {
  max-width: 610px;
  margin: 24px 0 16px;
  color: #fff;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.odds-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(226,232,240,.82);
  font-size: 16px;
  line-height: 1.55;
}

.odds-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.odds-mini-points span {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(248,251,255,.88);
  background: rgba(34, 197, 94, .075);
  border: 1px solid rgba(34, 197, 94, .22);
  font-size: 13px;
  font-weight: 900;
}

.odds-phone-panel {
  min-width: 0;
}

.odds-mode-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.odds-mode-card {
  min-height: 122px;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, .28);
  color: #fff;
  background:
    radial-gradient(circle at 14% 10%, rgba(34, 211, 238, .10), transparent 36%),
    rgba(255,255,255,.035);
  cursor: pointer;
  text-align: left;
}

.odds-mode-card.selected {
  border-color: rgba(34, 197, 94, .75);
  background:
    radial-gradient(circle at 16% 10%, rgba(34, 197, 94, .18), transparent 36%),
    rgba(34, 197, 94, .08);
  box-shadow: 0 0 26px rgba(34,197,94,.12);
}

.odds-mode-card strong {
  font-size: 20px;
  line-height: 1.05;
  font-weight: 950;
}

.odds-mode-card small {
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.odds-mode-card i {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--green);
  font-style: normal;
  font-size: 24px;
  font-weight: 950;
}

.odds-mode-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 950;
}

.odds-mode-icon.one {
  color: #071a2f;
  background: var(--green);
}

.odds-mode-icon.multi {
  color: #a855f7;
  background: rgba(168,85,247,.12);
  border: 1px solid rgba(168,85,247,.28);
}

.odds-settings-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(96, 165, 250, .34);
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, .13), transparent 34%),
    linear-gradient(160deg, rgba(8, 24, 45, .94), rgba(2, 11, 22, .84));
  box-shadow: 0 0 58px rgba(34, 211, 238, .08);
}

.settings-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 2px;
}

.settings-title span {
  width: 76px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #22d3ee, #22c55e);
}

.settings-subtitle {
  margin: 18px 0 22px;
  color: rgba(226,232,240,.82);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 850;
}

.odds-market-box,
.odds-input-box,
.odds-info-pill {
  min-height: 66px;
  display: grid;
  align-items: center;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, .32);
  background: rgba(13, 36, 64, .58);
}

.odds-market-box {
  position: relative;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 11px 16px;
}

.odds-market-box .market-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.24);
  font-size: 22px;
}

.odds-market-box small {
  display: block;
  color: rgba(226,232,240,.70);
  font-size: 12px;
  font-weight: 850;
}

.odds-market-box strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.odds-market-box select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.odds-market-box b {
  color: rgba(226,232,240,.86);
  font-size: 28px;
}

.odds-input-box {
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 0 16px;
}

.odds-input-box span {
  color: rgba(226,232,240,.86);
  font-size: 30px;
  font-weight: 950;
}

.odds-input-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 28px;
  font-weight: 950;
}

.odds-input-box input::placeholder {
  color: rgba(226,232,240,.32);
}

.odds-input-box button {
  width: 42px;
  height: 42px;
  border: 0;
  color: rgba(226,232,240,.82);
  background: transparent;
  cursor: pointer;
  font-size: 32px;
}

.odds-info-pill {
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 56px;
  margin-top: 16px;
  padding: 0 16px;
  color: rgba(226,232,240,.92);
  border-color: rgba(34, 197, 94, .26);
  background: rgba(34, 197, 94, .08);
}

.odds-info-pill span {
  color: var(--green);
  font-size: 24px;
}

.odds-info-pill strong {
  font-size: 16px;
}

.odds-main-button {
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  font-size: 20px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(37,99,235,.18);
}

.odds-settings-card .engine-note {
  margin-top: 12px;
  color: rgba(226,232,240,.60);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .odds-mobile-inspired-hero {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 26px;
  }
}

@media (max-width: 760px) {
  .odds-mode-cards {
    grid-template-columns: 1fr;
  }

  .odds-settings-card {
    padding: 20px;
  }

  .odds-copy h1 {
    font-size: 36px;
  }
}





/* KuonSports Odds Page Alignment Polish V3 */

/* Ana oran sayfası: sol ve sağ kolon aynı üst hizada başlasın */
body.odds-analysis-page-v2 .odds-mobile-inspired-hero {
  align-items: start !important;
  grid-template-columns: minmax(360px, .86fr) minmax(520px, 1.14fr) !important;
  gap: 36px !important;
  padding: 34px 36px !important;
}

/* Önceki dinamik scriptin verdiği ortalama davranışlarını ez */
body.odds-analysis-page-v2 .odds-hero-copy,
body.odds-analysis-page-v2 .odds-copy {
  align-self: start !important;
  justify-content: flex-start !important;
  min-height: auto !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Sağ motor alanı da aynı üst çizgiden başlasın */
body.odds-analysis-page-v2 .odds-engine-column,
body.odds-analysis-page-v2 .odds-phone-panel {
  align-self: start !important;
  justify-content: flex-start !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Sol taraftaki geri dön ve etiket daha kompakt */
body.odds-analysis-page-v2 .odds-copy .code-back {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}

body.odds-analysis-page-v2 .odds-tag-v2 {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

/* Sol başlık: daha küçük, daha havalı ve sayfaya oturan yapı */
body.odds-analysis-page-v2 .odds-copy h1 {
  max-width: 560px !important;
  margin: 0 0 16px !important;
  font-size: clamp(38px, 3.2vw, 58px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance;
}

/* Sol açıklama daha kısa ve premium görünüm */
body.odds-analysis-page-v2 .odds-copy p {
  max-width: 610px !important;
  margin: 0 !important;
  color: rgba(226, 232, 240, .82) !important;
  font-size: 15.8px !important;
  line-height: 1.55 !important;
  font-weight: 750 !important;
}

/* Sol etiketler daha sade */
body.odds-analysis-page-v2 .odds-mini-points {
  margin-top: 20px !important;
  gap: 9px !important;
}

body.odds-analysis-page-v2 .odds-mini-points span {
  padding: 8px 12px !important;
  font-size: 12.5px !important;
  background: rgba(34, 197, 94, .07) !important;
}

/* Sağdaki Tek Oran / Çoklu Oran kartları daha kompakt */
body.odds-analysis-page-v2 .odds-mode-cards {
  gap: 12px !important;
  margin-bottom: 14px !important;
}

body.odds-analysis-page-v2 .odds-mode-card {
  min-height: 104px !important;
  padding: 15px !important;
  border-radius: 20px !important;
}

body.odds-analysis-page-v2 .odds-mode-card strong {
  font-size: 18px !important;
}

body.odds-analysis-page-v2 .odds-mode-card small {
  font-size: 13px !important;
}

body.odds-analysis-page-v2 .odds-mode-card i {
  top: 14px !important;
  right: 15px !important;
  font-size: 21px !important;
}

body.odds-analysis-page-v2 .odds-mode-icon {
  top: 14px !important;
  left: 14px !important;
  width: 30px !important;
  height: 30px !important;
}

/* Analiz ayarları kartı daha küçük ve ilk bakışta anlaşılır */
body.odds-analysis-page-v2 .odds-settings-card {
  padding: 20px !important;
  border-radius: 24px !important;
}

body.odds-analysis-page-v2 .settings-title {
  gap: 12px !important;
  font-size: 19px !important;
  letter-spacing: 1.7px !important;
}

body.odds-analysis-page-v2 .settings-title span {
  width: 62px !important;
  height: 6px !important;
}

body.odds-analysis-page-v2 .settings-subtitle {
  margin: 14px 0 18px !important;
  font-size: 15.5px !important;
  line-height: 1.45 !important;
}

/* Bahis alanı ve oran inputu daha kompakt */
body.odds-analysis-page-v2 .odds-market-box,
body.odds-analysis-page-v2 .odds-input-box {
  min-height: 56px !important;
  border-radius: 18px !important;
}

body.odds-analysis-page-v2 .odds-market-box {
  padding: 9px 14px !important;
}

body.odds-analysis-page-v2 .odds-market-box .market-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 14px !important;
  font-size: 19px !important;
}

body.odds-analysis-page-v2 .odds-market-box strong {
  font-size: 17px !important;
}

body.odds-analysis-page-v2 .odds-input-box {
  padding: 0 14px !important;
}

body.odds-analysis-page-v2 .odds-input-box span {
  font-size: 26px !important;
}

body.odds-analysis-page-v2 .odds-input-box input {
  font-size: 22px !important;
}

body.odds-analysis-page-v2 .odds-input-box button {
  width: 36px !important;
  height: 36px !important;
  font-size: 28px !important;
}

/* Bilgi satırı ve buton daha dengeli */
body.odds-analysis-page-v2 .odds-info-pill {
  min-height: 48px !important;
  margin-top: 13px !important;
  border-radius: 16px !important;
}

body.odds-analysis-page-v2 .odds-info-pill strong {
  font-size: 14px !important;
}

body.odds-analysis-page-v2 .odds-main-button {
  min-height: 50px !important;
  margin-top: 16px !important;
  border-radius: 17px !important;
  font-size: 17px !important;
}

/* Büyük ekranlarda hero çok aşağı sarkmasın */
body.odds-analysis-page-v2 main {
  padding-top: 0 !important;
}

/* Tablet / küçük ekran */
@media (max-width: 1100px) {
  body.odds-analysis-page-v2 .odds-mobile-inspired-hero {
    grid-template-columns: 1fr !important;
    width: calc(100% - 32px) !important;
    padding: 26px !important;
  }

  body.odds-analysis-page-v2 .odds-copy h1 {
    max-width: none !important;
    font-size: clamp(36px, 7vw, 52px) !important;
  }

  body.odds-analysis-page-v2 .odds-phone-panel {
    max-width: none !important;
  }
}





/* KuonSports Odds Multi Mode V1 */

.odds-market-box.single-hidden,
.odds-input-box.single-hidden {
  display: none !important;
}

.odds-multi-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(168, 85, 247, .26);
  background:
    radial-gradient(circle at 10% 0%, rgba(168, 85, 247, .12), transparent 36%),
    rgba(255,255,255,.035);
}

.odds-multi-panel[hidden] {
  display: none !important;
}

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

.odds-multi-head strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.odds-multi-head small {
  display: block;
  margin-top: 3px;
  color: rgba(226,232,240,.64);
  font-size: 12px;
  font-weight: 800;
}

.odds-multi-head button {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, .28);
  background: rgba(34, 197, 94, .10);
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.odds-condition-list {
  display: grid;
  gap: 10px;
}

.odds-condition-card {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1.2fr .75fr .75fr 34px;
  gap: 8px;
  align-items: end;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(96, 165, 250, .20);
  background: rgba(2, 11, 22, .32);
}

.condition-number {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  border-radius: 11px;
  color: #071a2f;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  font-size: 12px;
  font-weight: 950;
}

.odds-condition-card label {
  display: block;
  margin-bottom: 5px;
  color: rgba(226,232,240,.70);
  font-size: 11px;
  font-weight: 850;
}

.odds-condition-card select,
.odds-condition-card input {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border-radius: 12px;
  color: #fff;
  background: rgba(8, 24, 45, .80);
  border: 1px solid rgba(96, 165, 250, .22);
  outline: 0;
  font-size: 12.5px;
  font-weight: 850;
}

.odds-condition-card select option {
  color: #061322;
}

.remove-condition {
  width: 32px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  color: rgba(226,232,240,.82);
  background: rgba(255,255,255,.055);
  font-size: 20px;
}

.remove-condition:hover {
  color: #fecaca;
  background: rgba(239, 68, 68, .12);
}

@media (max-width: 900px) {
  .odds-condition-card {
    grid-template-columns: 32px 1fr;
  }

  .remove-condition {
    width: 100%;
    grid-column: 1 / -1;
  }

  .odds-multi-head {
    display: block;
  }

  .odds-multi-head button {
    margin-top: 10px;
  }
}





/* KuonSports Odds API Results V1 */

.odds-web-results {
  width: min(1180px, calc(100% - 52px));
  margin: 0 auto 52px;
  scroll-margin-top: 110px;
}

.odds-top-card {
  padding: 18px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(34,197,94,.28);
  background: linear-gradient(135deg, rgba(37,99,235,.90), rgba(34,197,94,.82));
}

.odds-top-card span {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
}

.odds-top-card h2 {
  margin: 6px 0;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 36px);
}

.odds-top-card p {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15.5px;
  font-weight: 900;
}

.odds-top-card small {
  color: rgba(255,255,255,.86);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 800;
}

.odds-top-side {
  width: 170px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  text-align: center;
}

.odds-top-side b {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 12px;
}

.odds-top-side strong {
  display: block;
  margin: 10px 0;
  color: #fff;
  font-size: 18px;
}

.odds-top-side button,
.odds-market-footer button {
  min-height: 34px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #071a2f;
  background: #fff;
  font-size: 13px;
  font-weight: 950;
}

.odds-analysis-chips {
  margin: 14px 0;
  padding: 13px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(96,165,250,.22);
  background: rgba(8,24,45,.76);
}

.odds-analysis-chips b {
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(226,232,240,.78);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

.odds-analysis-chips strong {
  color: #fff;
}

.odds-results-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 18px;
  align-items: start;
}

.odds-result-panel {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(96,165,250,.23);
  background: linear-gradient(155deg, rgba(13,36,64,.80), rgba(2,11,22,.72));
}

.odds-panel-title {
  padding: 15px 17px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.odds-panel-title span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.28);
}

.odds-panel-title strong {
  display: block;
  font-size: 20px;
}

.odds-panel-title em {
  display: block;
  margin-top: 3px;
  color: rgba(226,232,240,.68);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.odds-panel-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.24);
  font-style: normal;
  font-size: 18px;
  font-weight: 950;
}

.odds-panel-body[hidden] {
  display: none !important;
}

.odds-panel-body {
  padding: 0 15px 15px;
}

.odds-match-row {
  padding: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.odds-match-row strong {
  display: block;
  color: #fff;
}

.odds-match-row span {
  display: block;
  margin-top: 4px;
  color: rgba(226,232,240,.62);
  font-size: 13px;
}

.odds-match-row b {
  color: var(--green);
  white-space: nowrap;
}

.odds-market-list {
  display: grid;
  gap: 10px;
  max-height: 640px;
  overflow-y: auto;
  padding-right: 6px;
}

.odds-market-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(34,197,94,.24);
  border-left: 4px solid rgba(34,197,94,.75);
  background: linear-gradient(145deg, rgba(8,24,45,.82), rgba(2,11,22,.68));
}

.odds-market-rank {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #071a2f;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  font-size: 12px;
  font-weight: 950;
}

.odds-market-content h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 17px;
}

.odds-market-content p {
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: rgba(226,232,240,.76);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 12px;
  font-weight: 850;
}

.odds-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  overflow: hidden;
}

.odds-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
}

.odds-market-footer {
  margin-top: 11px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.odds-market-footer button {
  color: var(--green);
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.28);
}

.odds-market-footer span {
  color: rgba(226,232,240,.84);
  font-size: 13px;
  font-weight: 900;
}

.odds-market-footer b {
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.24);
  font-size: 13px;
  white-space: nowrap;
}

.odds-empty-result {
  padding: 16px;
  border-radius: 18px;
  color: rgba(226,232,240,.72);
  background: rgba(255,255,255,.04);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .odds-results-grid,
  .odds-top-card {
    grid-template-columns: 1fr;
  }

  .odds-top-side {
    width: 100%;
    text-align: left;
  }
}


/* KuonSports odds result hero explanation */
.odds-top-card .odds-condition-explain {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-width: 900px;
}

.odds-top-card .odds-condition-explain p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.98rem, 1.45vw, 1.15rem);
  font-weight: 800;
  line-height: 1.55;
}

.odds-top-card .odds-condition-explain p:nth-child(2) {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.odds-top-card .odds-condition-explain p:nth-child(3) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.odds-top-card .odds-condition-explain small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}


/* KuonSports analysis access card */
.analysis-access-card {
  margin: 26px auto 0;
  padding: clamp(18px, 3vw, 28px);
  max-width: 1180px;
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.9));
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.analysis-access-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.analysis-access-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.analysis-access-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

.analysis-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.analysis-access-grid article {
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.analysis-access-grid article.premium {
  border-color: rgba(251, 191, 36, 0.38);
  background: rgba(120, 53, 15, 0.28);
}

.analysis-access-grid b {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.98rem;
}

.analysis-access-grid ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .analysis-access-card {
    grid-template-columns: 1fr;
  }

  .analysis-access-grid {
    grid-template-columns: 1fr;
  }
}


/* KuonSports neutral mode icons */
.odds-mode-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.odds-mode-icon .odds-mode-svg {
  width: 22px;
  height: 22px;
  display: block;
}

.odds-mode-icon.multi {
  color: currentColor;
}


/* KuonSports neutral back icon */
.analysis-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  vertical-align: middle;
  flex: 0 0 auto;
}

.analysis-back-icon .analysis-back-svg {
  width: 17px;
  height: 17px;
  display: block;
}


/* KuonSports code result explanation */
.web-top-signal-card .web-condition-explain {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-width: 900px;
}

.web-top-signal-card .web-condition-explain p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.98rem, 1.45vw, 1.15rem);
  font-weight: 800;
  line-height: 1.55;
}

.web-top-signal-card .web-condition-explain p:nth-child(2) {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.web-top-signal-card .web-condition-explain p:nth-child(3) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.web-top-signal-card .web-condition-explain small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}


/* KuonSports code collapsible result panels */
.code-collapsible-panel .code-collapsible-title {
  cursor: pointer;
  user-select: none;
}

.code-collapsible-panel .code-collapsible-title:focus {
  outline: 2px solid rgba(34, 197, 94, 0.45);
  outline-offset: 4px;
  border-radius: 18px;
}

.code-panel-arrow {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #86efac;
  font-size: 1.05rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.code-panel-collapsed {
  overflow: hidden;
}

.code-panel-body-wrapper {
  margin-top: 14px;
}

.code-panel-open .code-panel-arrow {
  background: rgba(34, 197, 94, 0.22);
}


/* KuonSports force collapsed code panels */
.code-panel-collapsed .web-panel-title ~ *,
.code-panel-collapsed .league-filter-title ~ *,
.code-panel-collapsed .web-league-title ~ *,
.code-panel-collapsed > .web-panel-body,
.code-panel-collapsed > .league-filter-body,
.code-panel-collapsed > .web-league-body,
.code-panel-collapsed .web-panel-body,
.code-panel-collapsed .league-filter-body,
.code-panel-collapsed .web-league-body,
.code-panel-collapsed .web-market-list,
.code-panel-collapsed .web-match-row,
.code-panel-collapsed .web-market-card {
  display: none !important;
  visibility: hidden !important;
}

.code-panel-collapsed {
  min-height: auto !important;
}

.code-panel-open .web-panel-body,
.code-panel-open .league-filter-body,
.code-panel-open .web-league-body,
.code-panel-open .web-market-list {
  visibility: visible !important;
}\n\n
/* KuonSports neutral team mode icons */
.team-mode-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team-mode-icon .team-mode-svg {
  width: 22px;
  height: 22px;
  display: block;
}
\n


/* KuonSports team result explanation and safe accordion */
.team-top-card .team-condition-explain {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-width: 900px;
}

.team-top-card .team-condition-explain p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.98rem, 1.45vw, 1.15rem);
  font-weight: 800;
  line-height: 1.55;
}

.team-top-card .team-condition-explain p:nth-child(2) {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.team-top-card .team-condition-explain p:nth-child(3) {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.team-top-card .team-condition-explain small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}

.team-panel-body[hidden],
.team-panel-collapsed .team-panel-body,
.team-panel-collapsed .team-market-list {
  display: none !important;
  visibility: hidden !important;
}

.team-collapsible-title {
  cursor: pointer;
  user-select: none;
}

.team-collapsible-title:focus {
  outline: 2px solid rgba(34, 197, 94, 0.45);
  outline-offset: 4px;
  border-radius: 18px;
}

.team-panel-arrow {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #86efac;
  font-size: 1.05rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team-panel-open .team-panel-arrow {
  background: rgba(34, 197, 94, 0.22);
}


/* KuonSports web selections beta */
.web-selections-beta {
  margin: 26px auto 0;
  max-width: 1180px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.92));
  color: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.web-selections-beta-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 20px;
  align-items: start;
}

.web-selections-beta-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.web-selections-beta-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.web-selections-beta-head p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
}

.web-selections-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.web-selections-stats article {
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.web-selections-stats small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.web-selections-stats strong {
  font-size: 1.45rem;
}

.web-selections-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.web-selections-actions button,
.web-selections-actions .secondary-btn {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.web-selections-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.web-selection-card {
  padding: 18px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

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

.web-selection-head span {
  color: #86efac;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.web-selection-head button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.28);
  color: #fecaca;
  cursor: pointer;
}

.web-selection-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.web-selection-card p,
.web-selection-card small,
.web-selection-card em {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.5;
}

.web-selection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.web-selection-meta b,
.web-selection-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
  font-size: 0.8rem;
  font-weight: 850;
}

.web-selections-empty {
  padding: 22px;
  border: 1px dashed rgba(148, 163, 184, 0.3);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.46);
  color: rgba(255, 255, 255, 0.76);
}

.kuon-selection-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 9999;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  max-width: min(92vw, 520px);
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  border: 1px solid rgba(34, 197, 94, 0.28);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.4);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  transition: 0.2s ease;
}

.kuon-selection-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.kuon-selection-toast[data-type="premium"] {
  border-color: rgba(251, 191, 36, 0.36);
}

@media (max-width: 820px) {
  .web-selections-beta-head {
    grid-template-columns: 1fr;
  }

  .web-selections-stats {
    grid-template-columns: 1fr;
  }
}


/* KuonSports floating selections drawer */
.kuon-selections-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  width: min(360px, calc(100vw - 28px));
  color: #fff;
  font-family: inherit;
}

.kuon-selections-tab {
  margin-left: auto;
  min-width: 160px;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 999px;
  padding: 12px 14px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.2), transparent 40%),
    rgba(15, 23, 42, 0.96);
  color: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.42);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  cursor: pointer;
}

.kuon-selections-tab b {
  min-width: 30px;
  min-height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #06b6d4);
  color: #031014;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kuon-selections-panel {
  margin-top: 12px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.5);
  overflow: hidden;
}

.kuon-selections-panel-head {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.kuon-selections-panel-head span {
  display: block;
  margin-bottom: 4px;
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.kuon-selections-panel-head strong {
  display: block;
  font-size: 1.1rem;
}

.kuon-selections-panel-head small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.kuon-selections-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.28);
  color: #fecaca;
  cursor: pointer;
}

.kuon-selections-panel-list {
  display: grid;
  gap: 10px;
  max-height: 390px;
  overflow: auto;
  padding: 14px;
}

.kuon-mini-selection-card {
  padding: 13px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.76);
}

.kuon-mini-selection-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.kuon-mini-selection-head span {
  color: #86efac;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.kuon-mini-selection-head button {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(248, 113, 113, 0.22);
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.24);
  color: #fecaca;
  cursor: pointer;
}

.kuon-mini-selection-card h3 {
  margin: 0 0 6px;
  font-size: 0.92rem;
  line-height: 1.3;
}

.kuon-mini-selection-card p,
.kuon-mini-selection-card em {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.4;
}

.kuon-mini-selection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 9px 0;
}

.kuon-mini-selection-meta b,
.kuon-mini-selection-meta span {
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
  font-size: 0.72rem;
  font-weight: 850;
}

.kuon-selections-panel-empty {
  margin: 14px;
  padding: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
  color: rgba(255, 255, 255, 0.74);
}

.kuon-selections-panel-empty strong {
  display: block;
  margin-bottom: 6px;
}

.kuon-selections-panel-empty p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.kuon-selections-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.kuon-selections-panel-actions a,
.kuon-selections-panel-actions button {
  flex: 1;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 9px 10px;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 720px) {
  .kuon-selections-drawer {
    right: 12px;
    bottom: 12px;
  }
}


/* KuonSports selections nav link */
.site-nav .nav-selections-link {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
}

.site-nav .nav-selections-link:hover {
  color: #86efac;
}

.site-nav .nav-selections-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #06b6d4);
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.18s ease;
}

.site-nav .nav-selections-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}


/* KuonSports selections dashboard page */
.selections-dashboard-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 70px) 0 64px;
}

.selections-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.selections-dashboard-copy {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.72);
}

.selections-dashboard-copy .eyebrow {
  display: inline-flex;
  margin: 18px 0 10px;
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.selections-dashboard-copy h1 {
  margin: 0 0 14px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.selections-dashboard-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 700;
  line-height: 1.65;
}

.selections-dashboard-note {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.14), transparent 36%),
    rgba(15, 23, 42, 0.78);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selections-dashboard-note span {
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.selections-dashboard-note strong {
  display: block;
  margin: 10px 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.selections-dashboard-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
  line-height: 1.55;
}

.selections-main-panel {
  margin-top: 0;
}

.selections-access-note {
  margin-top: 24px;
}

@media (max-width: 880px) {
  .selections-dashboard-hero {
    grid-template-columns: 1fr;
  }
}


/* KuonSports selections page final compact layout */
.selections-dashboard-page {
  padding-top: clamp(28px, 4vw, 52px);
}

.selections-main-panel,
.web-selections-beta.selections-main-panel {
  margin-top: 0;
}

.web-selections-beta-head h2 {
  max-width: 720px;
}

.web-selections-list {
  margin-top: 10px;
}


/* KuonSports admin panel */
.admin-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px) 0 72px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.48fr);
  gap: 22px;
  align-items: stretch;
}

.admin-hero-copy,
.admin-access-card,
.admin-stat-grid article,
.admin-tab-panel,
.admin-report-card,
.admin-placeholder-grid article {
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.11), transparent 34%),
    rgba(15, 23, 42, 0.78);
  color: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
}

.admin-hero-copy {
  padding: clamp(22px, 3vw, 34px);
}

.admin-hero-copy .eyebrow,
.admin-access-card > span,
.admin-section-head span,
.admin-list-head span {
  color: #86efac;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.admin-hero-copy h1 {
  margin: 12px 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.admin-hero-copy p,
.admin-section-head p,
.admin-placeholder-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 680;
  line-height: 1.65;
}

.admin-access-card {
  padding: 22px;
}

.admin-access-card h2 {
  margin: 8px 0 16px;
  color: #fff;
}

.admin-access-card label,
.admin-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
}

.admin-access-card input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 12px 13px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  outline: none;
}

.admin-form textarea {
  resize: vertical;
}

.admin-inline-actions,
.admin-form-actions,
.admin-tool-grid,
.admin-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-inline-actions {
  margin-top: 16px;
}

.ghost-btn {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 12px 16px;
  background: transparent;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.admin-status-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.admin-status-note[data-state="ok"] { color: #86efac; }
.admin-status-note[data-state="error"] { color: #fecaca; }
.admin-status-note[data-state="loading"] { color: #fde68a; }

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.admin-stat-grid article {
  padding: 18px;
}

.admin-stat-grid small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 850;
}

.admin-stat-grid strong {
  color: #fff;
  font-size: 1.3rem;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-tabs button {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.admin-tabs button.active {
  border-color: rgba(34, 197, 94, 0.42);
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.admin-tab-panel {
  display: none;
  padding: clamp(18px, 2.5vw, 26px);
}

.admin-tab-panel.active {
  display: block;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.admin-section-head h2,
.admin-list-head h3 {
  margin: 6px 0 8px;
  color: #fff;
}

.admin-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 18px;
  align-items: start;
}

.admin-form,
.admin-list-panel {
  display: grid;
  gap: 14px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-report-list {
  display: grid;
  gap: 12px;
}

.admin-report-card {
  padding: 16px;
  border-radius: 22px;
}

.admin-report-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.admin-report-top span {
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.admin-report-card h4 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 1.05rem;
}

.admin-report-card p {
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  font-weight: 650;
}

.admin-report-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.admin-report-badges b {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.72rem;
}

.admin-report-badges .active,
.admin-report-badges .result-success {
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.admin-report-badges .passive,
.admin-report-badges .result-failed {
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
}

.admin-report-badges .result-pending {
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
}

.admin-report-badges .result-void {
  background: rgba(148, 163, 184, 0.16);
  color: #e2e8f0;
}

.admin-report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-report-meta small {
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(30, 41, 59, 0.78);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.admin-report-actions button {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 850;
  cursor: pointer;
}

.admin-empty-state,
.admin-log-box {
  border: 1px dashed rgba(148, 163, 184, 0.26);
  border-radius: 20px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(15, 23, 42, 0.52);
}

.admin-log-box {
  white-space: pre-wrap;
  min-height: 180px;
  overflow: auto;
}

.admin-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-placeholder-grid article {
  padding: 18px;
}

.admin-placeholder-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.admin-checklist {
  display: grid;
  gap: 12px;
}

.admin-checklist label {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 13px;
  background: rgba(15, 23, 42, 0.54);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

@media (max-width: 980px) {
  .admin-hero,
  .admin-two-column,
  .admin-stat-grid,
  .admin-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .admin-section-head {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-report-top {
    flex-direction: column;
  }
}


/* KuonSports admin compact hero */
.admin-shell {
  padding-top: clamp(22px, 3vw, 40px);
}

.admin-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  gap: 18px;
}

.admin-hero-copy,
.admin-access-card {
  border-radius: 24px;
}

.admin-hero-copy {
  min-height: 260px;
  padding: clamp(18px, 2.4vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.admin-hero-copy h1 {
  max-width: 620px;
  margin: 10px 0;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.admin-hero-copy p {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.admin-access-card {
  padding: 20px;
}

.admin-access-card h2 {
  margin: 6px 0 14px;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.admin-access-card input {
  padding: 10px 12px;
  border-radius: 14px;
}

.admin-inline-actions {
  margin-top: 14px;
}

.admin-inline-actions .primary-btn,
.admin-inline-actions .secondary-btn,
.admin-inline-actions .ghost-btn {
  padding: 10px 15px;
}

.admin-stat-grid {
  margin: 14px 0;
}

@media (max-width: 980px) {
  .admin-hero-copy {
    min-height: auto;
  }
}


/* KuonSports admin access bar */
.admin-shell {
  padding-top: clamp(16px, 2vw, 28px);
}

.admin-access-bar {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(240px, 1fr) minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
}

.admin-access-title {
  align-self: center;
}

.admin-access-title span {
  display: block;
  margin-bottom: 5px;
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.admin-access-title strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.15;
}

.admin-access-bar label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  font-size: 0.9rem;
}

.admin-access-bar input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  outline: none;
}

.admin-access-bar .admin-inline-actions {
  margin-top: 0;
  align-self: end;
  flex-wrap: nowrap;
}

.admin-access-bar .primary-btn,
.admin-access-bar .secondary-btn,
.admin-access-bar .ghost-btn {
  padding: 10px 14px;
  white-space: nowrap;
}

.admin-access-bar .admin-status-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 2px;
}

.admin-stat-grid {
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .admin-access-bar {
    grid-template-columns: 1fr 1fr;
  }

  .admin-access-bar .admin-inline-actions,
  .admin-access-bar .admin-status-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .admin-access-bar {
    grid-template-columns: 1fr;
  }

  .admin-access-title,
  .admin-access-bar .admin-inline-actions,
  .admin-access-bar .admin-status-note {
    grid-column: auto;
  }

  .admin-access-bar .admin-inline-actions {
    flex-wrap: wrap;
  }
}


/* KuonSports public expert reports */
.expert-public-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(26px, 4vw, 52px) 0 70px;
}

.expert-public-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.78);
  color: #fff;
}

.expert-public-header .eyebrow {
  display: inline-flex;
  margin: 16px 0 8px;
  color: #86efac;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.expert-public-header h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.expert-public-header p {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.6;
}

.expert-public-stats {
  display: grid;
  gap: 12px;
}

.expert-public-stats article {
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.7);
}

.expert-public-stats small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 850;
}

.expert-public-stats strong {
  color: #fff;
  font-size: 1.35rem;
}

.expert-public-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.expert-public-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expert-public-filters button {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.expert-public-filters button.active {
  border-color: rgba(34, 197, 94, 0.42);
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.expert-public-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.expert-public-card,
.expert-public-empty,
.expert-public-note {
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
}

.expert-public-card {
  padding: 20px;
}

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

.expert-public-card-head span {
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.expert-public-card-head b {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.expert-status-success {
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.expert-status-failed {
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
}

.expert-status-pending {
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
}

.expert-status-void,
.expert-status-canceled,
.expert-status-cancelled {
  background: rgba(148, 163, 184, 0.16);
  color: #e2e8f0;
}

.expert-public-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.expert-public-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 680;
  line-height: 1.58;
}

.expert-public-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.expert-public-meta small {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(30, 41, 59, 0.78);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 780;
}

.expert-public-lock {
  display: grid;
  gap: 5px;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 18px;
  background: rgba(251, 191, 36, 0.08);
}

.expert-public-lock strong {
  color: #fde68a;
}

.expert-public-lock span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  line-height: 1.45;
}

.expert-public-empty {
  padding: 24px;
  text-align: center;
}

.expert-public-empty strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.2rem;
}

.expert-public-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.expert-public-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 20px;
}

.expert-public-note span {
  display: block;
  margin-bottom: 5px;
  color: #fbbf24;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.expert-public-note strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.08rem;
}

.expert-public-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 680;
}

@media (max-width: 900px) {
  .expert-public-header,
  .expert-public-feed {
    grid-template-columns: 1fr;
  }

  .expert-public-toolbar,
  .expert-public-note {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* KuonSports public expert list-first layout */
.expert-public-page {
  padding-top: clamp(18px, 3vw, 34px);
}

.expert-list-top {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
}

.expert-list-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
}

.expert-list-title .eyebrow {
  display: inline-flex;
  margin: 14px 0 7px;
  color: #86efac;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.expert-list-title h1 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.expert-list-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.5;
}

.expert-inline-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(15, 23, 42, 0.68);
  color: #fff;
  white-space: nowrap;
}

.expert-inline-summary strong {
  color: #86efac;
  font-size: 1.2rem;
}

.expert-inline-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.expert-list-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.expert-list-controls .secondary-btn {
  white-space: nowrap;
}

.expert-public-feed {
  margin-top: 0;
}

@media (max-width: 780px) {
  .expert-list-title,
  .expert-list-controls {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* KuonSports expert reports direct list */
.expert-public-page {
  padding-top: clamp(12px, 2vw, 24px);
}

.expert-feed-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.16);
}

.expert-feed-controls .secondary-btn {
  white-space: nowrap;
}

.expert-public-feed {
  margin-top: 0;
}

@media (max-width: 780px) {
  .expert-feed-controls {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* KuonSports expert reports no manual refresh */
.expert-feed-controls {
  justify-content: flex-start;
}

.expert-public-filters {
  width: 100%;
}


/* KuonSports contact support page */
.contact-support-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px) 0 70px;
}

.contact-support-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.contact-support-top > div,
.contact-response-card,
.contact-channel-grid article,
.contact-form-card,
.contact-info-card {
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.10), transparent 34%),
    rgba(15, 23, 42, 0.78);
  color: #fff;
}

.contact-support-top > div,
.contact-response-card {
  padding: clamp(18px, 2.6vw, 28px);
}

.contact-support-top > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-support-top .eyebrow,
.contact-response-card span,
.contact-channel-grid span,
.contact-section-head span,
.contact-info-card span {
  color: #86efac;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-support-top .eyebrow {
  margin-bottom: 10px;
}

.contact-support-top h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 820;
  max-width: 560px;
}

.contact-support-top p,
.contact-response-card p,
.contact-channel-grid p,
.contact-section-head p,
.contact-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 620;
  line-height: 1.7;
}

.contact-support-top > div p {
  max-width: 620px;
}

.contact-response-card strong {
  display: block;
  margin: 10px 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.15;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.contact-channel-grid article {
  padding: 18px;
}

.contact-channel-grid h2 {
  margin: 8px 0;
  color: #fff;
  font-size: 1.15rem;
}

.contact-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  padding: 20px;
}

.contact-section-head h2 {
  margin: 8px 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.contact-form-card {
  display: grid;
  gap: 14px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form-card label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 12px 13px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  outline: none;
}

.contact-form-card textarea {
  resize: vertical;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.contact-form-status[data-state="ok"] {
  color: #86efac;
}

.contact-form-status[data-state="error"] {
  color: #fecaca;
}

.contact-info-panel {
  display: grid;
  gap: 14px;
}

.contact-info-card strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 1.25rem;
  word-break: break-word;
}

.contact-info-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.75;
}

.contact-info-card .secondary-btn {
  margin-top: 14px;
}

.contact-info-card.privacy {
  border-color: rgba(251, 191, 36, 0.22);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.10), transparent 32%),
    rgba(15, 23, 42, 0.78);
}

.contact-info-card.privacy span {
  color: #fbbf24;
}

@media (max-width: 920px) {
  .contact-support-top,
  .contact-channel-grid,
  .contact-workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}


/* KuonSports contact support compact hero */
.contact-support-top {
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.6fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 12px;
}

.contact-support-top > div,
.contact-response-card {
  padding: 20px 24px;
  min-height: 0;
}

.contact-support-top > div {
  justify-content: center;
}

.contact-support-top .eyebrow {
  margin-bottom: 8px;
}

.contact-support-top h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  line-height: 1.08;
  margin: 0 0 10px;
  max-width: 500px;
}

.contact-support-top > div p {
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.58;
}

.contact-response-card h3,
.contact-response-card strong,
.contact-response-card p {
  margin-top: 0;
}

.contact-response-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-support-layout {
  gap: 12px;
}

@media (max-width: 980px) {
  .contact-support-top {
    grid-template-columns: 1fr;
  }

  .contact-support-top > div,
  .contact-response-card {
    padding: 18px 20px;
  }

  .contact-support-top h1 {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
    max-width: 100%;
  }

  .contact-support-top > div p {
    max-width: 100%;
  }
}


/* KuonSports contact hero reduce left card by ~35% */
.contact-support-top {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 14px;
  align-items: stretch;
}

.contact-support-top > div:first-child {
  padding: 16px 18px;
  min-height: 210px;
  justify-content: center;
}

.contact-support-top > div:first-child .eyebrow {
  margin-bottom: 8px;
}

.contact-support-top > div:first-child h1 {
  font-size: clamp(1.15rem, 1.75vw, 1.65rem);
  line-height: 1.12;
  max-width: 360px;
  margin: 0 auto 8px;
  text-align: center;
}

.contact-support-top > div:first-child p {
  font-size: 0.90rem;
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

.contact-response-card {
  padding: 16px 18px;
  min-height: 210px;
}

.contact-response-card h3,
.contact-response-card strong {
  font-size: 1rem;
  line-height: 1.3;
}

.contact-response-card p {
  font-size: 0.90rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .contact-support-top {
    grid-template-columns: 1fr;
  }

  .contact-support-top > div:first-child,
  .contact-response-card {
    min-height: 0;
    padding: 16px;
  }

  .contact-support-top > div:first-child h1 {
    font-size: clamp(1.05rem, 5.4vw, 1.45rem);
    max-width: 100%;
  }

  .contact-support-top > div:first-child p {
    max-width: 100%;
  }
}


/* KuonSports contact hero final balance */
.contact-support-top > div:first-child h1 {
  font-size: clamp(1.32rem, 2.05vw, 1.9rem);
  line-height: 1.12;
  max-width: 410px;
}

.contact-support-top > div:first-child p {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 470px;
}

.contact-response-card {
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 18px 20px;
}

.contact-response-card span {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-response-card strong {
  max-width: 300px;
  margin: 0 auto 12px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.contact-response-card p {
  max-width: 300px;
  margin: 0 auto;
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 980px) {
  .contact-support-top > div:first-child h1 {
    font-size: clamp(1.25rem, 5.6vw, 1.65rem);
    max-width: 100%;
  }

  .contact-response-card strong,
  .contact-response-card p {
    max-width: 100%;
  }
}


/* KuonSports public program page */
.program-public-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(16px, 3vw, 34px) 0 70px;
}

.program-control-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.18);
}

.program-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-filter-tabs button {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.74);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.program-filter-tabs button.active {
  border-color: rgba(245, 158, 11, 0.42);
  background: rgba(245, 158, 11, 0.16);
  color: #fde68a;
}

.program-league-filter {
  display: grid;
  gap: 6px;
  min-width: min(360px, 100%);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
  font-size: 0.88rem;
}

.program-league-filter select {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  outline: none;
}

.program-summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.program-summary-row article,
.program-match-card,
.program-public-empty,
.program-premium-note,
.program-loading-card {
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
}

.program-summary-row article {
  padding: 14px 16px;
}

.program-summary-row small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 850;
}

.program-summary-row strong {
  color: #fff;
  font-size: 1.25rem;
}

.program-public-list {
  display: grid;
  gap: 12px;
}

.program-match-card {
  padding: 16px;
}

.program-match-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.program-match-top span {
  display: block;
  margin-bottom: 6px;
  color: #fbbf24;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.program-match-top strong {
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.program-match-top b {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.program-status-live {
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.program-status-finished {
  background: rgba(148, 163, 184, 0.16);
  color: #e2e8f0;
}

.program-status-passive {
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
}

.program-status-scheduled {
  background: rgba(251, 191, 36, 0.16);
  color: #fde68a;
}

.program-match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.program-match-meta small {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(30, 41, 59, 0.8);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 780;
}

.program-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.program-match-actions a,
.program-match-actions button {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-weight: 850;
  font-size: 0.84rem;
  cursor: pointer;
  text-decoration: none;
}

.program-match-actions button {
  font-family: inherit;
}

.program-odds-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.program-odds-preview b,
.program-odds-preview span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(245, 158, 11, 0.1);
  color: #fde68a;
  font-size: 0.8rem;
  font-weight: 850;
}

.program-loading-card,
.program-public-empty {
  padding: 18px;
  text-align: center;
}

.program-public-empty strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.program-public-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.program-premium-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 18px 20px;
}

.program-premium-note span {
  display: block;
  margin-bottom: 5px;
  color: #fbbf24;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.program-premium-note strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.08rem;
}

.program-premium-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 680;
}

@media (max-width: 850px) {
  .program-control-bar,
  .program-premium-note,
  .program-match-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-summary-row {
    grid-template-columns: 1fr;
  }

  .program-league-filter {
    width: 100%;
  }
}


/* KuonSports compact program rows */
.program-summary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.program-summary-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(15, 23, 42, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 850;
}

.program-summary-strip strong {
  color: #fde68a;
  font-size: 0.95rem;
}

.program-public-list {
  gap: 7px;
}

.program-match-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 170px 178px;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: 16px;
  padding: 9px 12px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
}

.program-row-time {
  display: grid;
  gap: 2px;
}

.program-row-time strong {
  color: #fff;
  font-size: 1rem;
}

.program-row-time span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 780;
}

.program-row-main {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.program-row-main strong {
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.program-row-main span {
  overflow: hidden;
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.program-row-info {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  align-items: center;
}

.program-row-info b,
.program-row-info small {
  border-radius: 999px;
  padding: 6px 8px;
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
}

.program-row-info small {
  background: rgba(30, 41, 59, 0.82);
  color: rgba(255, 255, 255, 0.78);
}

.program-row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.program-row-actions a,
.program-row-actions button {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 6px 8px;
  background: rgba(15, 23, 42, 0.68);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
}

.program-match-row .program-odds-preview {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 9px;
}

.program-loading-card.compact {
  padding: 14px;
}

@media (max-width: 980px) {
  .program-match-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .program-row-info,
  .program-row-actions {
    justify-content: flex-start;
  }

  .program-row-info,
  .program-row-actions,
  .program-match-row .program-odds-preview {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .program-match-row {
    grid-template-columns: 1fr;
  }

  .program-row-main strong,
  .program-row-main span {
    white-space: normal;
  }
}


/* KuonSports program without live tab */
.program-filter-tabs {
  align-items: center;
}


/* KuonSports program unavailable state */
.program-unavailable-card {
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 22px;
  padding: 28px 24px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.82);
  color: #fff;
  text-align: center;
}

.program-unavailable-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.program-unavailable-card p {
  max-width: 680px;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.6;
}

.program-unavailable-card span {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
  font-size: 0.86rem;
  font-weight: 850;
}


/* KuonSports premium and account pages */
.premium-sales-page,
.account-center-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) 0 72px;
}

.premium-sales-hero,
.account-center-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.premium-sales-copy,
.premium-access-panel,
.account-center-strip > div,
.account-center-strip aside,
.premium-benefit-grid article,
.premium-compare-card,
.premium-trust-note,
.account-action-grid article,
.account-guidance-card {
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.10), transparent 34%),
    rgba(15, 23, 42, 0.78);
  color: #fff;
}

.premium-sales-copy,
.premium-access-panel,
.account-center-strip > div,
.account-center-strip aside {
  padding: clamp(18px, 2.6vw, 28px);
}

.premium-sales-copy .eyebrow,
.premium-access-panel span,
.premium-benefit-grid span,
.premium-compare-head span,
.premium-trust-note span,
.account-center-strip .eyebrow,
.account-center-strip aside span,
.account-action-grid span,
.account-guidance-card span {
  color: #86efac;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.premium-sales-copy h1,
.account-center-strip h1 {
  margin: 10px 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.premium-sales-copy p,
.premium-access-panel p,
.premium-benefit-grid p,
.premium-compare-head p,
.premium-trust-note p,
.account-center-strip p,
.account-action-grid p,
.account-guidance-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 680;
  line-height: 1.6;
}

.premium-sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.premium-access-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-access-panel strong,
.account-center-strip aside strong {
  display: block;
  margin: 10px 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.15;
}

.premium-access-panel .secondary-btn {
  margin-top: 16px;
  width: fit-content;
}

.premium-benefit-grid,
.account-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.premium-benefit-grid article,
.account-action-grid article {
  padding: 18px;
}

.premium-benefit-grid h2,
.account-action-grid h2 {
  margin: 8px 0;
  color: #fff;
  font-size: 1.15rem;
}

.account-action-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: #86efac;
  font-weight: 900;
  text-decoration: none;
}

.premium-compare-card {
  padding: clamp(18px, 2.5vw, 24px);
  margin-bottom: 18px;
}

.premium-compare-head h2,
.account-guidance-card h2 {
  margin: 8px 0;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.premium-compare-grid {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.premium-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 160px;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.55);
}

.premium-compare-row.head {
  background: rgba(34, 197, 94, 0.12);
}

.premium-compare-row span,
.premium-compare-row strong {
  color: #fff;
}

.premium-compare-row b {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.premium-trust-note,
.account-guidance-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-color: rgba(251, 191, 36, 0.22);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.10), transparent 32%),
    rgba(15, 23, 42, 0.78);
}

.premium-trust-note span,
.account-guidance-card span {
  color: #fbbf24;
}

.premium-trust-note strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 1.15rem;
}

.account-guidance-card {
  align-items: stretch;
}

.account-guidance-list {
  display: grid;
  min-width: 300px;
  gap: 10px;
}

.account-guidance-list b {
  border-radius: 16px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.62);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .premium-sales-hero,
  .account-center-strip,
  .premium-benefit-grid,
  .account-action-grid,
  .premium-trust-note,
  .account-guidance-card {
    grid-template-columns: 1fr;
  }

  .premium-benefit-grid,
  .account-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-trust-note,
  .account-guidance-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-guidance-list {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .premium-benefit-grid,
  .account-action-grid,
  .premium-compare-row {
    grid-template-columns: 1fr;
  }
}


/* KuonSports focused premium page */
.premium-sales-page {
  padding-top: clamp(18px, 3vw, 36px);
}

.premium-focus-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.10), transparent 34%),
    rgba(15, 23, 42, 0.78);
  color: #fff;
}

.premium-focus-top .eyebrow {
  color: #86efac;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.premium-focus-top h1 {
  margin: 8px 0 8px;
  max-width: 680px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.premium-focus-top p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 680;
  line-height: 1.58;
}

.premium-focus-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: 260px;
}

.premium-compare-card {
  scroll-margin-top: 120px;
}

@media (max-width: 820px) {
  .premium-focus-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .premium-focus-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}


/* KuonSports premium direct compare layout */
.premium-sales-page {
  padding-top: clamp(16px, 2.4vw, 30px);
}

.premium-compare-card {
  margin-top: 0;
}


/* KuonSports premium trust note without contact CTA */
.premium-trust-note {
  justify-content: flex-start;
}

.premium-trust-note > div {
  max-width: 100%;
}


/* KuonSports account dashboard page */
.account-dashboard-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(18px, 3vw, 38px) 0 72px;
}

.account-dashboard-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 16px;
}

.account-identity-card,
.account-status-cards article,
.account-dashboard-card,
.account-operation-panel {
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.10), transparent 34%),
    rgba(15, 23, 42, 0.78);
  color: #fff;
}

.account-identity-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
}

.account-avatar-mark {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 1.55rem;
  font-weight: 950;
}

.account-identity-card span,
.account-dashboard-card span,
.account-operation-panel span,
.account-status-cards small {
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.account-identity-card h1 {
  margin: 6px 0 7px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.account-identity-card p,
.account-dashboard-card p,
.account-operation-panel p,
.account-status-cards span {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 680;
  line-height: 1.55;
}

.account-status-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-status-cards article {
  padding: 16px;
}

.account-status-cards strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.account-dashboard-card {
  display: flex;
  min-height: 174px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.account-dashboard-card.primary {
  border-color: rgba(251, 191, 36, 0.24);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.12), transparent 32%),
    rgba(15, 23, 42, 0.78);
}

.account-dashboard-card.primary span {
  color: #fbbf24;
}

.account-dashboard-card h2 {
  margin: 8px 0;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.16;
}

.account-dashboard-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: #86efac;
  font-weight: 900;
  text-decoration: none;
}

.account-dashboard-card.primary a {
  color: #fde68a;
}

.account-operation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-color: rgba(148, 163, 184, 0.2);
}

.account-operation-panel h2 {
  margin: 8px 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.14;
}

.account-operation-list {
  display: grid;
  gap: 10px;
}

.account-operation-list b {
  border-radius: 16px;
  padding: 12px;
  background: rgba(30, 41, 59, 0.72);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .account-dashboard-top,
  .account-operation-panel {
    grid-template-columns: 1fr;
  }

  .account-status-cards,
  .account-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .account-identity-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-status-cards,
  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }
}



/* KuonSports web auth page */
.web-auth-page { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: clamp(18px, 3vw, 38px) 0 72px; }
.web-auth-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr); gap: 16px; align-items: stretch; margin-bottom: 16px; }
.web-auth-intro > div, .web-auth-intro aside, .web-auth-card, .web-account-panel, .web-auth-benefits article {
  border: 1px solid rgba(34, 197, 94, 0.18); border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.10), transparent 34%), rgba(15, 23, 42, 0.78); color: #fff;
}
.web-auth-intro > div, .web-auth-intro aside, .web-auth-card, .web-account-panel { padding: clamp(18px, 2.4vw, 26px); }
.web-auth-intro .eyebrow, .web-auth-intro aside span, .web-auth-form-head span, .web-account-top span, .web-auth-benefits span {
  color: #86efac; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em;
}
.web-auth-intro h1 { margin: 8px 0; color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.045em; }
.web-auth-intro p, .web-auth-intro aside p, .web-auth-form-head p, .web-account-top p, .web-auth-benefits p {
  margin: 0; color: rgba(255, 255, 255, 0.74); font-weight: 680; line-height: 1.58;
}
.web-auth-intro aside { display: flex; flex-direction: column; justify-content: center; }
.web-auth-intro aside strong, .web-account-top strong { display: block; margin: 10px 0; color: #fff; font-size: 1.24rem; line-height: 1.16; }
.web-auth-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr); gap: 16px; align-items: start; margin-bottom: 16px; }
.web-auth-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.web-auth-tabs button { border: 1px solid rgba(148, 163, 184, 0.22); border-radius: 999px; padding: 10px 14px; background: rgba(15, 23, 42, 0.74); color: #fff; font-weight: 900; cursor: pointer; }
.web-auth-tabs button.active { border-color: rgba(34, 197, 94, 0.42); background: rgba(34, 197, 94, 0.16); color: #bbf7d0; }
.web-auth-form { display: none; gap: 14px; }
.web-auth-form.active { display: grid; }
.web-auth-form-head h2 { margin: 8px 0; color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.web-auth-form label { display: grid; gap: 8px; color: rgba(255, 255, 255, 0.84); font-weight: 850; }
.web-auth-form input { width: 100%; border: 1px solid rgba(148, 163, 184, 0.22); border-radius: 16px; padding: 12px 13px; background: rgba(15, 23, 42, 0.72); color: #fff; outline: none; }
.web-auth-check { display: flex !important; gap: 10px !important; align-items: flex-start; }
.web-auth-check input { width: auto; margin-top: 4px; }
.auth-text-button { width: fit-content; }
.web-auth-status { margin: 16px 0 0; color: rgba(255, 255, 255, 0.74); font-weight: 780; }
.web-auth-status[data-state="ok"] { color: #86efac; }
.web-auth-status[data-state="error"] { color: #fecaca; }
.web-auth-status[data-state="loading"] { color: #fde68a; }
.web-account-panel { display: grid; gap: 16px; }
.web-account-details { display: grid; gap: 10px; }
.web-account-details div { border: 1px solid rgba(148, 163, 184, 0.16); border-radius: 16px; padding: 12px; background: rgba(15, 23, 42, 0.54); }
.web-account-details small { display: block; margin-bottom: 5px; color: rgba(255, 255, 255, 0.62); font-weight: 850; }
.web-account-details b { color: #fff; word-break: break-word; }
.web-account-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.web-auth-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.web-auth-benefits article { padding: 18px; }
.web-auth-benefits h2 { margin: 8px 0; color: #fff; font-size: 1.16rem; }
@media (max-width: 920px) { .web-auth-intro, .web-auth-layout, .web-auth-benefits { grid-template-columns: 1fr; } }


/* KuonSports account direct auth layout */
.web-auth-page {
  padding-top: clamp(18px, 3vw, 34px);
}

.web-auth-layout {
  margin-top: 0;
}

.web-auth-card,
.web-account-panel {
  min-height: auto;
}


/* KuonSports account remove admin promo card */
.web-auth-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.web-account-actions [hidden] {
  display: none !important;
}

@media (max-width: 680px) {
  .web-auth-benefits {
    grid-template-columns: 1fr;
  }
}


/* KuonSports Google auth button */
.google-auth-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
}

.google-auth-btn:hover {
  transform: translateY(-1px);
}

.google-auth-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #2563eb;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.web-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 850;
}

.web-auth-divider::before,
.web-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(148, 163, 184, 0.18);
}


/* KuonSports auth signed-in polish */
.google-auth-btn {
  width: fit-content;
  min-width: 280px;
  max-width: 100%;
  margin: 0;
}

.web-auth-success-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 38%),
    rgba(15, 23, 42, 0.76);
}

.web-auth-success-card[hidden] {
  display: none !important;
}

.web-auth-success-card span {
  color: #86efac;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.web-auth-success-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.web-auth-success-card p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 720;
  line-height: 1.58;
}

.web-auth-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.web-account-signed-in .web-auth-tabs,
body.web-account-signed-in .google-auth-btn,
body.web-account-signed-in .web-auth-divider,
body.web-account-signed-in .web-auth-form {
  display: none !important;
}

body.web-account-signed-in .web-auth-card {
  border-color: rgba(34, 197, 94, 0.34);
  box-shadow: 0 20px 70px rgba(34, 197, 94, 0.08);
}

.web-account-panel.account-active {
  border-color: rgba(34, 197, 94, 0.38);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.18), transparent 34%),
    rgba(15, 23, 42, 0.84);
  box-shadow: 0 24px 80px rgba(34, 197, 94, 0.10);
}

.web-account-panel.account-premium {
  border-color: rgba(251, 191, 36, 0.38);
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.16), transparent 34%),
    rgba(15, 23, 42, 0.84);
}

.web-account-panel.account-active .web-account-top strong {
  color: #86efac;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.web-account-panel.account-premium .web-account-top strong {
  color: #fde68a;
}

.web-account-panel.account-active .web-account-top p {
  color: rgba(255, 255, 255, 0.82);
}

.web-account-panel.account-active .web-account-details div {
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(15, 23, 42, 0.68);
}

.web-account-panel.account-premium .web-account-details div {
  border-color: rgba(251, 191, 36, 0.20);
}

.web-account-panel.account-active .web-account-details b {
  color: #fff;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .google-auth-btn {
    width: 100%;
  }
}


/* KuonSports account CTA de-emphasis */
.web-account-actions {
  align-items: center;
}

.web-account-actions .secondary-btn[href="index.html#analizler"] {
  border-color: rgba(34, 197, 94, 0.28);
  color: #bbf7d0;
}

.web-auth-success-actions {
  margin-top: 2px;
}



/* KUON_TOP_SIGNAL_SIDE_SMALL_202606 */
.top-signal-side small,
.odds-top-side small,
.team-top-side small {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  line-height: 1.35;
  opacity: 0.78;
}

/* KuonSports selections page saved cards v2 */
.web-selections-stats {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.web-selection-card,
.kuon-mini-selection-card {
  position: relative;
  overflow: hidden;
}

.web-selection-card::before,
.kuon-mini-selection-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: rgba(148, 163, 184, 0.45);
}

.web-selection-quality-strong::before {
  background: #22c55e;
}

.web-selection-quality-readable::before {
  background: #38bdf8;
}

.web-selection-quality-limited::before {
  background: #f59e0b;
}

.web-selection-quality-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}

.web-selection-quality-row small {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.web-selection-quality-badge {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.web-selection-quality-strong .web-selection-quality-badge {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.35);
}

.web-selection-quality-readable .web-selection-quality-badge {
  color: #7dd3fc;
  border-color: rgba(56, 189, 248, 0.35);
}

.web-selection-quality-limited .web-selection-quality-badge {
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.35);
}

.web-selection-condition {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

/* KuonSports account and premium access polish v1 */
.web-account-details {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}

.web-account-details div {
  min-height: 76px;
}

.web-account-details b {
  overflow-wrap: anywhere;
}

.account-premium .web-account-details div,
.account-admin .web-account-details div {
  border-color: rgba(34, 197, 94, 0.22);
}

.premium-compare-row b {
  line-height: 1.35;
}

/* KuonSports account metrics final */
.web-account-details {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}

.web-account-details div {
  min-height: 76px;
}

.web-account-details b {
  overflow-wrap: anywhere;
}

/* KuonSports expert reports polish v1 */
.expert-public-full,
.expert-public-lock {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  background: rgba(15, 23, 42, 0.62);
}

.expert-public-full {
  border-color: rgba(34, 197, 94, 0.24);
  background: rgba(6, 78, 59, 0.18);
}

.expert-public-full strong,
.expert-public-lock strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}

.expert-public-full span,
.expert-public-lock span,
.expert-public-full p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.expert-public-meta small:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.expert-card-status-success {
  border-color: rgba(34, 197, 94, 0.28);
}

.expert-card-status-failed {
  border-color: rgba(248, 113, 113, 0.28);
}

.expert-card-status-pending {
  border-color: rgba(251, 191, 36, 0.22);
}

/* KuonSports expert access active note */
.expert-public-note-active {
  border-color: rgba(34, 197, 94, 0.28);
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.38), rgba(15, 23, 42, 0.72));
}

.expert-public-note-active span {
  color: #86efac;
}

/* KuonSports Google Play premium handoff */
.premium-play-store-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 18px;
  margin: 0 0 18px;
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid rgba(34, 197, 94, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(6, 78, 59, 0.34), rgba(15, 23, 42, 0.82));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.premium-play-store-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.premium-play-store-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.premium-play-store-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.premium-play-store-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.premium-play-store-card aside {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.72);
}

.premium-play-store-card aside strong {
  color: #fff;
  font-size: 1.15rem;
}

.premium-play-store-card aside a {
  width: 100%;
  justify-content: center;
}

.play-store-footer-link {
  color: rgba(255, 255, 255, 0.76);
}

.play-store-footer-link:hover {
  color: #86efac;
}

@media (max-width: 860px) {
  .premium-play-store-card {
    grid-template-columns: 1fr;
  }
}


/* KuonSports language switcher */
.language-switcher{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border:1px solid rgba(148,163,184,.28);
  border-radius:999px;
  background:rgba(8,24,45,.62);
  margin-left:14px;
}
.language-switcher button{
  border:0;
  border-radius:999px;
  padding:8px 10px;
  cursor:pointer;
  background:transparent;
  color:#cbd5e1;
  font-weight:950;
  font-size:12px;
  letter-spacing:.5px;
}
.language-switcher button.active{
  color:#03101c;
  background:linear-gradient(135deg,var(--cyan),var(--green));
  box-shadow:0 0 18px rgba(34,211,238,.22);
}
@media (max-width:640px){
  .language-switcher{
    margin-left:auto;
    margin-right:8px;
  }
}
