:root{
  --felt:#0B3D2E;
  --felt-dark:#072820;
  --gold:#D4AF37;
  --cream:#F2EFE6;
  --ink:#16201B;
  --line:rgba(242,239,230,0.18);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--felt-dark);
  color:var(--cream);
  font-family:'Tajawal',sans-serif;
  line-height:1.7;
}
.display{font-family:'Cairo',sans-serif;}
a{color:inherit;}

body::before{
  content:"";
  position:fixed; inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,0.06), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(212,175,55,0.05), transparent 40%);
  pointer-events:none;
  z-index:0;
}

header{
  position:relative; z-index:5;
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 6%;
  border-bottom:1px solid var(--line);
  background:var(--felt-dark);
}
.brand{display:flex;align-items:center;gap:10px;}
.brand .mark{
  width:34px;height:34px;border:2px solid var(--gold);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold); font-weight:900; font-size:16px;
}
.brand span{font-weight:900;font-size:19px;letter-spacing:0.5px;}
.brand small{display:block;font-size:11px;color:var(--gold);font-weight:500;letter-spacing:2px;}

nav{display:flex;gap:26px;font-size:14px;font-weight:600;}
nav a{text-decoration:none;color:rgba(242,239,230,0.8);position:relative;padding-bottom:4px;}
nav a.active{color:var(--gold);}
nav a:hover{color:var(--gold);}

.cta-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--gold); color:var(--ink); font-weight:800; font-size:16px;
  padding:14px 26px; border-radius:6px; text-decoration:none;
  box-shadow:0 8px 24px rgba(212,175,55,0.25);
  transition:transform .2s ease, box-shadow .2s ease;
}
.cta-btn:hover{transform:translateY(-2px); box-shadow:0 12px 30px rgba(212,175,55,0.35);}
.cta-btn.small{padding:10px 18px;font-size:13.5px;}

.eyebrow{
  color:var(--gold); font-weight:700; font-size:13px; letter-spacing:3px;
  display:flex;align-items:center;gap:10px;margin-bottom:16px;
}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--gold);}
.section-head{text-align:center;max-width:640px;margin:0 auto 50px;}
.section-head .eyebrow{justify-content:center;}
.section-head .eyebrow::before{display:none;}
.section-head h2{font-family:'Cairo',sans-serif;font-size:clamp(26px,3.5vw,38px);font-weight:800;}
.section-head p{color:rgba(242,239,230,0.7);font-size:15px;margin-top:10px;}

section{position:relative;z-index:2;padding:64px 6%;max-width:1180px;margin:0 auto;}

.disclaimer{
  max-width:780px;margin:0 auto;font-size:12.5px;
  color:rgba(242,239,230,0.5);text-align:center;line-height:1.9;
}
footer{
  position:relative;z-index:2;padding:30px 6%;text-align:center;
  font-size:12px;color:rgba(242,239,230,0.4);border-top:1px solid var(--line);
}

@media (max-width:760px){
  nav{display:none;}
}
@media (prefers-reduced-motion: reduce){*{transition:none !important;}}

/* ===========================================
   HOME V2 — Premium AI Predictions Homepage
   (additive — does not override existing rules)
=========================================== */
.h2-hero{
  position:relative;
  padding:70px 6% 60px;
  overflow:hidden;
  isolation:isolate;
}
.h2-hero::before{
  content:"";
  position:absolute; inset:-20% -10%;
  background:
    radial-gradient(circle at 20% 15%, rgba(212,175,55,0.18), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(46,125,82,0.35), transparent 50%),
    radial-gradient(circle at 60% 0%, rgba(212,175,55,0.08), transparent 40%);
  z-index:-1;
  filter:blur(10px);
}
.h2-eyebrow-wordmark{
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Cairo',sans-serif; font-weight:800; font-size:12.5px;
  letter-spacing:3px; color:var(--gold);
  background:rgba(212,175,55,0.1);
  border:1px solid rgba(212,175,55,0.25);
  padding:7px 16px; border-radius:30px;
  margin-bottom:22px;
}
.h2-eyebrow-wordmark .dot{width:6px;height:6px;border-radius:50%;background:#2E7D52;box-shadow:0 0 8px #2E7D52;}

.h2-title{
  font-family:'Cairo',sans-serif;
  font-size:clamp(36px,6vw,64px);
  font-weight:800; line-height:1.15;
  max-width:780px; margin-bottom:20px;
}
.h2-title .grad{
  background:linear-gradient(90deg, var(--gold) 0%, #F0DFA0 50%, var(--gold) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.h2-sub{
  font-size:17px; line-height:1.8; color:rgba(242,239,230,0.78);
  max-width:600px; margin-bottom:34px;
}
.h2-cta-row{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px;}
.h2-btn{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:800; font-size:15.5px; padding:16px 28px;
  border-radius:12px; text-decoration:none; transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .25s ease;
}
.h2-btn.primary{
  background:linear-gradient(135deg, var(--gold), #B8932C);
  color:var(--ink); box-shadow:0 10px 30px rgba(212,175,55,0.28);
}
.h2-btn.primary:hover{transform:translateY(-3px); box-shadow:0 16px 40px rgba(212,175,55,0.4);}
.h2-btn.ghost{
  background:rgba(242,239,230,0.06);
  border:1px solid rgba(242,239,230,0.18);
  color:var(--cream);
  backdrop-filter:blur(8px);
}
.h2-btn.ghost:hover{background:rgba(242,239,230,0.12); transform:translateY(-3px);}

.h2-stats{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  max-width:880px;
}
.h2-stat{
  background:rgba(242,239,230,0.05);
  border:1px solid rgba(242,239,230,0.1);
  border-radius:14px; padding:20px 16px;
  backdrop-filter:blur(10px);
  transition:border-color .25s ease, transform .25s ease;
}
.h2-stat:hover{border-color:rgba(212,175,55,0.4); transform:translateY(-3px);}
.h2-stat .v{font-family:'Cairo',sans-serif; font-size:26px; font-weight:800; color:var(--gold);}
.h2-stat .l{font-size:12px; color:rgba(242,239,230,0.6); margin-top:4px;}

/* Featured match cards (glass, dark) */
.h2-matches-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:1100px; margin:0 auto;
}
.h2-match{
  background:linear-gradient(165deg, rgba(242,239,230,0.07), rgba(242,239,230,0.02));
  border:1px solid rgba(242,239,230,0.1);
  border-radius:16px; padding:20px;
  backdrop-filter:blur(10px);
  transition:transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s ease;
}
.h2-match:hover{transform:translateY(-5px); border-color:rgba(212,175,55,0.4);}
.h2-match .league{
  display:flex; justify-content:space-between; align-items:center;
  font-size:11px; font-weight:700; color:var(--gold); letter-spacing:1px;
  margin-bottom:16px;
}
.h2-match .time{color:rgba(242,239,230,0.5); font-weight:600;}
.h2-match .teams-row{display:flex; align-items:center; justify-content:space-between; margin-bottom:18px;}
.h2-match .team{display:flex; flex-direction:column; align-items:center; gap:8px; flex:1;}
.h2-match .crest{
  width:46px;height:46px;border-radius:50%;
  background:linear-gradient(135deg, rgba(212,175,55,0.25), rgba(46,125,82,0.35));
  display:flex; align-items:center; justify-content:center;
  font-family:'Cairo',sans-serif; font-weight:800; font-size:15px; color:var(--cream);
  border:1px solid rgba(242,239,230,0.15);
}
.h2-match .team-name{font-size:12.5px; font-weight:700; text-align:center;}
.h2-match .vs-mid{font-family:'Cairo',sans-serif; color:rgba(242,239,230,0.4); font-weight:800; font-size:13px;}
.h2-confidence{margin-bottom:16px;}
.h2-confidence .row{display:flex; justify-content:space-between; font-size:11.5px; margin-bottom:6px; color:rgba(242,239,230,0.65);}
.h2-confidence .row b{color:var(--gold);}
.h2-confidence .bar{height:7px; border-radius:5px; background:rgba(242,239,230,0.1); overflow:hidden;}
.h2-confidence .bar span{display:block; height:100%; background:linear-gradient(90deg, #2E7D52, var(--gold));}
.h2-predict-btn{
  display:block; text-align:center; width:100%;
  background:rgba(212,175,55,0.12); color:var(--gold);
  border:1px solid rgba(212,175,55,0.3);
  font-weight:800; font-size:13.5px; padding:11px; border-radius:10px;
  text-decoration:none; transition:background .2s ease, color .2s ease;
}
.h2-predict-btn:hover{background:var(--gold); color:var(--ink);}

/* Why Predixo - 4 glass cards */
.h2-why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; max-width:1100px; margin:0 auto;}
.h2-why-card{
  background:rgba(242,239,230,0.04); border:1px solid rgba(242,239,230,0.1);
  border-radius:16px; padding:26px 20px; text-align:center;
  transition:transform .25s ease, border-color .25s ease;
}
.h2-why-card:hover{transform:translateY(-4px); border-color:rgba(212,175,55,0.35);}
.h2-why-card .icon{
  width:52px;height:52px;border-radius:14px;margin:0 auto 16px;
  background:linear-gradient(135deg, rgba(212,175,55,0.2), rgba(46,125,82,0.25));
  display:flex; align-items:center; justify-content:center; font-size:22px;
}
.h2-why-card h4{font-size:15px; font-weight:700; margin-bottom:8px;}
.h2-why-card p{font-size:12.5px; color:rgba(242,239,230,0.65); line-height:1.7;}

/* Bonus preview cards */
.h2-bonus-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:1000px; margin:0 auto;}
.h2-bonus-card{
  position:relative;
  background:linear-gradient(160deg, rgba(212,175,55,0.1), rgba(242,239,230,0.03));
  border:1px solid rgba(212,175,55,0.25);
  border-radius:16px; padding:26px 22px; text-decoration:none; color:var(--cream);
  display:block; transition:transform .25s ease, box-shadow .25s ease;
}
.h2-bonus-card:hover{transform:translateY(-5px); box-shadow:0 16px 36px rgba(212,175,55,0.18);}
.h2-bonus-card .badge{
  display:inline-block; font-size:10.5px; font-weight:800; letter-spacing:1px;
  background:var(--gold); color:var(--ink); padding:4px 10px; border-radius:6px; margin-bottom:14px;
}
.h2-bonus-card h4{font-family:'Cairo',sans-serif; font-size:18px; font-weight:800; margin-bottom:8px;}
.h2-bonus-card p{font-size:12.5px; color:rgba(242,239,230,0.65);}
.h2-bonus-card .arrow{position:absolute; left:20px; bottom:20px; color:var(--gold); font-weight:800;}

/* Footer v2 */
.footer-v2{padding:50px 6% 30px; border-top:1px solid var(--line);}
.footer-v2-top{
  display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap;
  max-width:1100px; margin:0 auto 30px;
}
.footer-v2-brand p{font-size:13px; color:rgba(242,239,230,0.55); max-width:280px; margin-top:10px; line-height:1.8;}
.footer-v2-links{display:flex; gap:50px; flex-wrap:wrap;}
.footer-v2-col h5{font-size:13px; font-weight:800; color:var(--gold); margin-bottom:14px;}
.footer-v2-col a{display:block; font-size:13px; color:rgba(242,239,230,0.6); margin-bottom:10px; text-decoration:none;}
.footer-v2-col a:hover{color:var(--cream);}
.footer-v2-social{display:flex; gap:10px; margin-top:16px;}
.footer-v2-social a{
  width:36px;height:36px;border-radius:50%;
  background:rgba(242,239,230,0.06); border:1px solid rgba(242,239,230,0.12);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; color:var(--cream); font-size:14px;
  transition:background .2s ease, border-color .2s ease;
}
.footer-v2-social a:hover{background:rgba(212,175,55,0.15); border-color:var(--gold);}
.footer-v2-bottom{
  max-width:1100px; margin:0 auto; padding-top:24px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:12px; color:rgba(242,239,230,0.45);
}

@media (max-width:880px){
  .h2-stats{grid-template-columns:repeat(2,1fr);}
  .h2-matches-grid, .h2-why-grid, .h2-bonus-grid{grid-template-columns:1fr;}
  .footer-v2-top{flex-direction:column;}
}
@media (prefers-reduced-motion: reduce){
  .h2-btn, .h2-stat, .h2-match, .h2-why-card, .h2-bonus-card{transition:none !important;}
}

/* ===========================================
   PREMIUM MATCH CARDS (Today's Featured Matches)
   Additive only — does not affect any other section/page
=========================================== */
.pc-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1100px; margin:0 auto;
}
.pc-card{
  position:relative;
  background:linear-gradient(165deg, rgba(242,239,230,0.08), rgba(242,239,230,0.025));
  border:1px solid rgba(242,239,230,0.12);
  border-radius:20px;
  padding:22px;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.pc-card::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 80% -10%, rgba(212,175,55,0.12), transparent 55%);
  pointer-events:none;
}
.pc-card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,175,55,0.4);
  box-shadow:0 20px 45px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.15);
}

.pc-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:18px; position:relative; z-index:1;
}
.pc-comp{display:flex; align-items:center; gap:8px;}
.pc-comp-icon{
  width:22px;height:22px;border-radius:6px;
  background:linear-gradient(135deg, var(--gold), #8a6d1f);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; flex-shrink:0;
}
.pc-comp-name{font-size:11.5px; font-weight:700; color:var(--gold); letter-spacing:0.4px;}
.pc-datetime{text-align:left; font-size:10.5px; color:rgba(242,239,230,0.5); line-height:1.5;}
.pc-datetime .time{display:block; font-weight:800; font-size:12.5px; color:rgba(242,239,230,0.85); font-family:'Cairo',sans-serif;}

.pc-teams{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:20px; position:relative; z-index:1;
}
.pc-team{display:flex; flex-direction:column; align-items:center; gap:10px; flex:1; min-width:0;}
.pc-crest{
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(150deg, rgba(212,175,55,0.22), rgba(46,125,82,0.3));
  border:1px solid rgba(242,239,230,0.18);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cairo',sans-serif; font-weight:800; font-size:16px; color:var(--cream);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.04);
}
.pc-team-name{font-size:12.5px; font-weight:700; text-align:center; max-width:90px; line-height:1.4;}
.pc-vs{
  display:flex; flex-direction:column; align-items:center; gap:4px; padding:0 6px; flex-shrink:0;
}
.pc-vs .x{font-family:'Cairo',sans-serif; font-weight:800; font-size:13px; color:rgba(242,239,230,0.35);}
.pc-vs .prob{font-family:'Cairo',sans-serif; font-weight:800; font-size:15px; color:var(--gold);}

.pc-confidence{margin-bottom:14px; position:relative; z-index:1;}
.pc-confidence .label-row{
  display:flex; justify-content:space-between; align-items:baseline;
  font-size:10.5px; color:rgba(242,239,230,0.55); margin-bottom:7px; letter-spacing:0.3px;
}
.pc-confidence .label-row b{
  font-family:'Cairo',sans-serif; font-size:14px; color:var(--gold); font-weight:800;
}
.pc-bar{height:8px; border-radius:6px; background:rgba(242,239,230,0.08); overflow:hidden; position:relative;}
.pc-bar span{
  display:block; height:100%; border-radius:6px;
  background:linear-gradient(90deg, #2E7D52, var(--gold));
  box-shadow:0 0 10px rgba(212,175,55,0.4);
  transition:width 1s ease;
}

.pc-prediction{
  font-size:12px; line-height:1.6; color:rgba(242,239,230,0.7);
  background:rgba(242,239,230,0.04);
  border-right:2px solid var(--gold);
  padding:9px 12px; border-radius:8px;
  margin-bottom:18px; position:relative; z-index:1;
}
.pc-prediction b{color:var(--cream);}

.pc-btn{
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; text-align:center;
  background:rgba(212,175,55,0.1);
  border:1px solid rgba(212,175,55,0.35);
  color:var(--gold);
  font-weight:800; font-size:13.5px; padding:12px;
  border-radius:11px; text-decoration:none;
  position:relative; z-index:1;
  transition:background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.pc-btn:hover{
  background:linear-gradient(135deg, var(--gold), #B8932C);
  color:var(--ink);
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(212,175,55,0.3);
}
.pc-btn .arrow{transition:transform .25s ease;}
.pc-btn:hover .arrow{transform:translateX(-3px);}

@media (max-width:880px){
  .pc-grid{grid-template-columns:1fr;}
  .pc-team-name{max-width:100px;}
}
@media (prefers-reduced-motion: reduce){
  .pc-card, .pc-btn, .pc-bar span{transition:none !important;}
}
