:root{
  --bg:#061b13;
  --card:#102b20;
  --card2:#123827;
  --green:#19c979;
  --green2:#62f0aa;
  --text:#f4fff9;
  --muted:#b8d7c9;
  --line:rgba(255,255,255,.12);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Tahoma,Arial,sans-serif;
  direction:rtl;
  background:radial-gradient(circle at top,#0f3b2a 0,#061b13 45%,#03110c 100%);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{width:min(1150px,92%);margin:auto}
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(3,17,12,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:16px 0;gap:16px}
.logo{font-size:26px;font-weight:900;color:var(--green2)}
.menu{display:flex;gap:10px;flex-wrap:wrap}
.menu a{
  padding:9px 13px;
  border:1px solid transparent;
  border-radius:999px;
  color:var(--muted);
}
.menu a:hover,.menu a.active{border-color:var(--green);color:#fff;background:rgba(25,201,121,.12)}
.hero{padding:45px 0 25px}
.hero-card{
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(18,56,39,.92),rgba(8,26,19,.92));
  border-radius:28px;
  padding:34px;
  box-shadow:0 20px 70px rgba(0,0,0,.28);
}
.hero h1{font-size:44px;margin:0 0 12px;color:var(--green2)}
.hero p{font-size:18px;color:var(--muted);line-height:1.8;margin:0 0 22px}
.btn,.small-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:800;
}
.btn{background:var(--green);color:#03110c;padding:12px 18px}
.small-btn{border:1px solid rgba(25,201,121,.35);color:var(--green2);padding:9px 13px}
.top-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.grid{display:grid;grid-template-columns:2fr 1fr;gap:18px;margin:24px 0 40px}
.section{margin:22px 0}
.title{font-size:26px;margin:0 0 16px}
.card{
  background:rgba(16,43,32,.85);
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  margin-bottom:13px;
}
.badge,.status-pill{
  display:inline-flex;
  align-items:center;
  background:rgba(98,240,170,.13);
  color:var(--green2);
  border:1px solid rgba(98,240,170,.25);
  padding:5px 10px;
  border-radius:999px;
  font-size:13px;
}
.news-title{font-size:20px;font-weight:900;margin:8px 0}
.news-summary,.article-body{color:var(--muted);line-height:1.9}
.meta{color:var(--muted);font-size:14px;margin-top:8px;line-height:1.7}
.footer{border-top:1px solid var(--line);padding:25px 0;color:var(--muted);text-align:center;margin-top:40px}
.empty{color:var(--muted);padding:18px;border:1px dashed var(--line);border-radius:18px}

/* Timezone */
.timezone-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--line);
  border-radius:20px;
  padding:14px;
  margin:18px 0;
}
.timezone-title{font-weight:900;color:var(--green2)}
.timezone-current{display:block;color:var(--muted);font-size:13px;margin-top:4px}
.tz-select{
  min-width:240px;
  background:#071b13;
  color:var(--text);
  border:1px solid rgba(98,240,170,.35);
  border-radius:999px;
  padding:11px 14px;
  outline:none;
}

/* Stats */
.stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:16px 0 22px}
.stat-box{background:rgba(255,255,255,.045);border:1px solid var(--line);border-radius:18px;padding:16px}
.stat-num{font-size:30px;font-weight:900;color:var(--green2)}
.stat-label{color:var(--muted);font-size:14px;margin-top:4px}

/* Matches */
.match-card-v3{
  display:block!important;
  background:rgba(16,43,32,.92);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  margin-bottom:14px;
  transition:.2s ease;
}
.match-card-v3:hover{transform:translateY(-2px);border-color:rgba(25,201,121,.45)}
.match-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  color:var(--muted);
  font-size:14px;
}
.smart-time{color:var(--green2);font-weight:800}
.smart-time-muted{color:var(--muted);font-weight:700}
.match-main{
  display:grid;
  grid-template-columns:1fr 95px 1fr;
  gap:14px;
  align-items:center;
}
.team-box{display:flex;align-items:center;gap:10px;min-width:0}
.team-box.away{justify-content:flex-end}
.team-box.away .team-name{text-align:left}
.flag{
  width:40px;
  height:28px;
  border-radius:7px;
  object-fit:cover;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  flex:0 0 auto;
}
.flag-fallback{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:28px;
  border-radius:7px;
  background:rgba(98,240,170,.12);
  border:1px solid rgba(98,240,170,.28);
  color:var(--green2);
  font-size:10px;
  font-weight:900;
  flex:0 0 auto;
}
.flag-fallback-hidden{display:none}
.team-name{
  font-size:19px;
  font-weight:900;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.team-code{display:block;color:var(--muted);font-size:12px;margin-top:3px}
.score-box{
  text-align:center;
  background:rgba(25,201,121,.14);
  border:1px solid rgba(25,201,121,.35);
  border-radius:16px;
  padding:10px 12px;
  font-size:22px;
  font-weight:900;
}
.match-foot{margin-top:13px;color:var(--muted);font-size:14px;line-height:1.8}
.details-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:18px}
.detail-box{background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:16px;padding:14px}
.detail-label{color:var(--muted);font-size:13px;margin-bottom:6px}
.detail-value{font-weight:900;font-size:17px}
.big-match{display:grid;grid-template-columns:1fr auto 1fr;gap:16px;align-items:center;margin-top:22px}
.big-team{text-align:center;background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:20px;padding:18px}
.big-team img{width:70px;height:48px;object-fit:cover;border-radius:9px;margin-bottom:10px;border:1px solid rgba(255,255,255,.18)}
.big-score{font-size:34px;font-weight:900;color:var(--green2);text-align:center}

/* Content + FAQ */
.content-box{
  background:rgba(16,43,32,.86);
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  margin:18px 0;
}
.content-box h2{margin:0 0 12px;font-size:24px;color:var(--green2)}
.content-box h3{margin:20px 0 10px;font-size:20px}
.content-box p{color:var(--muted);line-height:2;font-size:16px;margin:0 0 12px}
.content-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin:14px 0}
.content-item{background:rgba(255,255,255,.045);border:1px solid var(--line);border-radius:15px;padding:13px}
.content-item span{display:block;color:var(--muted);font-size:13px;margin-bottom:5px}
.content-item strong{color:#fff}
.faq-box details{background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:15px;padding:13px 15px;margin-bottom:10px}
.faq-box summary{cursor:pointer;font-weight:900;color:#fff}
.faq-box p{margin:10px 0 0}
.related-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:12px}
.related-link{display:block;background:rgba(25,201,121,.08);border:1px solid rgba(25,201,121,.22);border-radius:15px;padding:12px;color:#fff;font-weight:800}
.related-link small{display:block;margin-top:5px;color:var(--muted);font-weight:400}

/* News */
.section-lead{color:var(--muted);line-height:1.9;margin:-6px 0 18px;font-size:16px}
.news-toolbar{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin:14px 0 20px;background:rgba(255,255,255,.035);border:1px solid var(--line);border-radius:20px;padding:12px}
.news-filter{border:1px solid rgba(98,240,170,.22);background:rgba(98,240,170,.07);color:var(--text);border-radius:999px;padding:10px 14px;cursor:pointer;font-weight:800}
.news-filter span{color:var(--muted);font-weight:700;margin-inline-start:5px}
.news-filter.active,.news-filter:hover{background:var(--green);color:#03110c;border-color:var(--green)}
.news-filter.active span,.news-filter:hover span{color:#03110c}
.news-grid-v9{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.news-card-v9{position:relative;overflow:hidden}
.news-card-v9:before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(98,240,170,.08),transparent 42%);pointer-events:none}
.news-card-top{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:10px;position:relative}
.news-card-v9 .news-title{font-size:21px;line-height:1.55;position:relative}
.news-card-v9 .news-summary{min-height:72px;position:relative}
.news-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px;position:relative}
.news-actions .small-btn,.news-actions .btn{padding:8px 12px;font-size:14px}
.news-hidden{display:none!important}

/* Home */
.home-quick-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:18px 0 22px}
.home-quick-card{display:block;background:rgba(16,43,32,.86);border:1px solid var(--line);border-radius:20px;padding:18px;transition:.2s ease}
.home-quick-card:hover{transform:translateY(-2px);border-color:rgba(98,240,170,.45)}
.home-quick-card strong{display:block;color:var(--green2);font-size:18px;margin-bottom:7px}
.home-quick-card span{color:var(--muted);line-height:1.7;font-size:14px}
.home-panels{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:22px 0}
.home-panel{background:rgba(255,255,255,.035);border:1px solid var(--line);border-radius:24px;padding:16px}
.section-head{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:14px}
.section-head h2{margin:0;color:var(--green2);font-size:24px}
.section-head a{color:var(--green2);font-weight:800;font-size:14px}
.home-news-wrap{margin:26px 0 42px}
.home-news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.home-note{background:rgba(25,201,121,.08);border:1px solid rgba(25,201,121,.22);border-radius:20px;padding:16px;color:var(--muted);line-height:1.9;margin:18px 0}

/* Mobile */
@media(max-width:900px){
  .home-quick-grid,.home-panels,.home-news-grid{grid-template-columns:1fr}
}
@media(max-width:800px){
  .nav{align-items:flex-start;flex-direction:column}
  .menu{width:100%}
  .menu a{font-size:14px;padding:8px 10px}
  .hero h1{font-size:34px}
  .hero-card{padding:24px}
  .grid{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr}
  .timezone-bar{align-items:stretch;flex-direction:column}
  .tz-select{width:100%;min-width:0}
  .match-head{align-items:flex-start;flex-direction:column}
  .match-main{grid-template-columns:1fr}
  .team-box,.team-box.away{justify-content:center;text-align:center}
  .team-box.away .team-name{text-align:center}
  .score-box{width:110px;margin:auto}
  .details-grid,.content-list,.related-grid,.news-grid-v9{grid-template-columns:1fr}
  .big-match{grid-template-columns:1fr}
  .news-toolbar{align-items:stretch;flex-direction:column}
  .news-filter{width:100%;text-align:center}
}

/* Channels V14 */
.channels-grid-v14{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:18px;
}
.channel-card-v14{
  position:relative;
  overflow:hidden;
}
.channel-card-v14:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(98,240,170,.08),transparent 45%);
  pointer-events:none;
}
.channel-card-v14 h2{
  position:relative;
  margin:10px 0;
  font-size:22px;
  color:#fff;
}
.channel-card-v14 p{
  position:relative;
  color:var(--muted);
  line-height:1.9;
}
.channel-meta-v14{
  position:relative;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:10px 0;
}
.channel-status-v14{
  display:inline-flex;
  border-radius:999px;
  padding:6px 10px;
  border:1px solid rgba(98,240,170,.25);
  color:var(--green2);
  background:rgba(98,240,170,.09);
  font-size:13px;
  font-weight:900;
}
.channel-warning-v14{
  background:rgba(255,209,102,.08);
  border:1px solid rgba(255,209,102,.22);
  border-radius:20px;
  padding:16px;
  color:var(--muted);
  line-height:1.9;
  margin:16px 0;
}
.channel-notice-v14 .top-actions{
  margin-top:10px;
}
@media(max-width:800px){
  .channels-grid-v14{
    grid-template-columns:1fr;
  }
}

/* Mobile Header + Channels Hero V15 */
.menu a[href="/world-cup"],
.menu a[href="/channels"]{
  border-color:rgba(98,240,170,.35);
  background:rgba(98,240,170,.08);
  color:var(--green2);
  font-weight:900;
}
.menu a[href="/world-cup"]:hover,
.menu a[href="/channels"]:hover,
.menu a[href="/world-cup"].active,
.menu a[href="/channels"].active{
  background:var(--green);
  color:#03110c;
  border-color:var(--green);
}
.channels-hero-v15{
  background:linear-gradient(135deg,rgba(18,56,39,.94),rgba(5,24,17,.94));
  border:1px solid rgba(98,240,170,.18);
  border-radius:28px;
  padding:26px;
  margin:22px 0 18px;
  box-shadow:0 18px 60px rgba(0,0,0,.22);
}
.channels-hero-v15 .title{
  font-size:34px;
  color:var(--green2);
  margin-bottom:12px;
}
.channels-hero-v15 .section-lead{
  margin:0;
  max-width:920px;
}
.channels-fast-actions-v15{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.channels-fast-actions-v15 a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
}
.channels-fast-actions-v15 .main{
  background:var(--green);
  color:#03110c;
}
.channels-fast-actions-v15 .alt{
  border:1px solid rgba(98,240,170,.35);
  color:var(--green2);
}
.mobile-scroll-hint-v15{
  display:none;
  color:var(--muted);
  font-size:12px;
  margin-top:7px;
}
@media(max-width:800px){
  .header{
    position:sticky;
    top:0;
  }
  .nav{
    gap:10px;
    padding:12px 0;
  }
  .logo{
    font-size:23px;
    width:100%;
    display:flex;
    justify-content:center;
  }
  .menu{
    width:100%;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    padding:4px 0 8px;
    scrollbar-width:thin;
    -webkit-overflow-scrolling:touch;
  }
  .menu a{
    flex:0 0 auto;
    white-space:nowrap;
    font-size:14px;
    padding:9px 12px;
  }
  .menu a[href="/world-cup"],
  .menu a[href="/channels"]{
    order:-1;
  }
  .mobile-scroll-hint-v15{
    display:block;
    text-align:center;
  }
  .channels-hero-v15{
    padding:20px;
    border-radius:22px;
    margin:16px 0 14px;
  }
  .channels-hero-v15 .title{
    font-size:27px;
    line-height:1.45;
  }
  .channels-fast-actions-v15{
    flex-direction:column;
  }
  .channels-fast-actions-v15 a{
    width:100%;
  }
  .channel-warning-v14{
    margin-top:12px;
    padding:14px;
  }
  .channel-card-v14 h2{
    font-size:20px;
    line-height:1.5;
  }
}

/* World Cup Page V16 */
.worldcup-hero-v16{
  background:linear-gradient(135deg,rgba(18,56,39,.95),rgba(5,24,17,.96));
  border:1px solid rgba(98,240,170,.18);
  border-radius:30px;
  padding:30px;
  margin:22px 0 18px;
  box-shadow:0 18px 65px rgba(0,0,0,.24);
}
.worldcup-hero-v16 h1{
  margin:10px 0 12px;
  color:var(--green2);
  font-size:40px;
  line-height:1.35;
}
.worldcup-hero-v16 p{
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
  margin:0;
}
.worldcup-actions-v16{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.worldcup-actions-v16 a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
}
.worldcup-actions-v16 .main{
  background:var(--green);
  color:#03110c;
}
.worldcup-actions-v16 .alt{
  border:1px solid rgba(98,240,170,.35);
  color:var(--green2);
}
.worldcup-grid-v16{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin:20px 0;
}
.worldcup-panel-v16{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:24px;
  padding:16px;
}
.worldcup-panel-v16 h2,
.worldcup-groups-v16 h2,
.worldcup-news-v16 h2{
  margin:0 0 14px;
  color:var(--green2);
  font-size:24px;
}
.worldcup-groups-v16{
  margin:24px 0;
}
.group-grid-v16{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.group-card-v16{
  background:rgba(16,43,32,.86);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
}
.group-card-v16 h3{
  margin:0 0 10px;
  color:#fff;
  font-size:20px;
}
.group-meta-v16{
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
  margin-bottom:10px;
}
.group-teams-v16{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin:10px 0 12px;
}
.group-team-v16{
  display:inline-flex;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(98,240,170,.08);
  border:1px solid rgba(98,240,170,.18);
  color:var(--green2);
  font-size:13px;
  font-weight:800;
}
.group-links-v16{
  display:grid;
  gap:8px;
}
.group-match-link-v16{
  display:block;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px;
  color:#fff;
  font-weight:800;
}
.group-match-link-v16 small{
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-weight:400;
}
.worldcup-news-v16{
  margin:26px 0 42px;
}
.worldcup-news-grid-v16{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media(max-width:900px){
  .worldcup-grid-v16,
  .group-grid-v16,
  .worldcup-news-grid-v16{
    grid-template-columns:1fr;
  }
  .worldcup-hero-v16{
    padding:22px;
    border-radius:24px;
  }
  .worldcup-hero-v16 h1{
    font-size:30px;
  }
  .worldcup-actions-v16{
    flex-direction:column;
  }
  .worldcup-actions-v16 a{
    width:100%;
  }
}

/* World Cup Group Pages V17 */
.worldcup-group-hero-v17{
  background:linear-gradient(135deg,rgba(18,56,39,.96),rgba(5,24,17,.96));
  border:1px solid rgba(98,240,170,.2);
  border-radius:30px;
  padding:30px;
  margin:22px 0 18px;
  box-shadow:0 18px 65px rgba(0,0,0,.24);
}
.worldcup-group-hero-v17 h1{
  margin:10px 0 12px;
  color:var(--green2);
  font-size:38px;
  line-height:1.35;
}
.worldcup-group-hero-v17 p{
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
  margin:0;
}
.group-page-grid-v17{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:16px;
  margin:22px 0;
}
.group-page-panel-v17{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:24px;
  padding:16px;
}
.group-page-panel-v17 h2{
  margin:0 0 14px;
  color:var(--green2);
  font-size:24px;
}
.group-teams-box-v17{
  display:grid;
  gap:9px;
}
.group-team-row-v17{
  background:rgba(98,240,170,.07);
  border:1px solid rgba(98,240,170,.18);
  border-radius:15px;
  padding:11px 13px;
  color:#fff;
  font-weight:900;
}
.other-groups-v17{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.other-group-link-v17{
  display:inline-flex;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(98,240,170,.26);
  color:var(--green2);
  background:rgba(98,240,170,.07);
  font-weight:900;
}
.other-group-link-v17.active{
  background:var(--green);
  color:#03110c;
  border-color:var(--green);
}
.group-news-grid-v17{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:12px;
}
.group-card-v16 h3 a{
  color:var(--green2);
}
@media(max-width:900px){
  .group-page-grid-v17,
  .group-news-grid-v17{
    grid-template-columns:1fr;
  }
  .worldcup-group-hero-v17{
    padding:22px;
    border-radius:24px;
  }
  .worldcup-group-hero-v17 h1{
    font-size:30px;
  }
}

/* Matches Filters V20 */
.matches-hero-v20{
  background:linear-gradient(135deg,rgba(18,56,39,.96),rgba(5,24,17,.96));
  border:1px solid rgba(98,240,170,.2);
  border-radius:30px;
  padding:28px;
  margin:22px 0 18px;
  box-shadow:0 18px 65px rgba(0,0,0,.24);
}
.matches-hero-v20 h1{
  margin:10px 0 12px;
  color:var(--green2);
  font-size:38px;
  line-height:1.35;
}
.matches-hero-v20 p{
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
  margin:0;
}
.matches-toolbar-v20{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:24px;
  padding:16px;
  margin:18px 0;
}
.match-status-buttons-v20{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.match-filter-btn-v20{
  border:1px solid rgba(98,240,170,.28);
  background:rgba(98,240,170,.07);
  color:var(--green2);
  border-radius:999px;
  padding:9px 12px;
  font-weight:900;
  cursor:pointer;
}
.match-filter-btn-v20.active{
  background:var(--green);
  color:#03110c;
  border-color:var(--green);
}
.match-filter-controls-v20{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:10px;
}
.match-filter-controls-v20 input,
.match-filter-controls-v20 select{
  width:100%;
  border:1px solid var(--line);
  background:rgba(0,0,0,.22);
  color:#fff;
  border-radius:14px;
  padding:11px 12px;
  outline:none;
}
.match-filter-controls-v20 option{
  color:#111;
}
.match-filter-count-v20{
  color:var(--muted);
  margin-top:12px;
  font-size:14px;
  font-weight:800;
}
.matches-grid-v20{
  display:grid;
  gap:14px;
}
.match-filter-item-v20.match-hidden-v20{
  display:none;
}
.matches-empty-v20{
  display:none;
  background:rgba(255,209,102,.08);
  border:1px solid rgba(255,209,102,.22);
  color:var(--muted);
  border-radius:20px;
  padding:16px;
  line-height:1.9;
}
.matches-empty-v20.show{
  display:block;
}
@media(max-width:800px){
  .matches-hero-v20{
    padding:22px;
    border-radius:24px;
  }
  .matches-hero-v20 h1{
    font-size:30px;
  }
  .match-filter-controls-v20{
    grid-template-columns:1fr;
  }
  .match-status-buttons-v20{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  .match-filter-btn-v20{
    width:100%;
  }
}

/* News Detail V21 */
.news-detail-v21{
  margin:22px 0 42px;
}
.news-shell-v21{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:18px;
  align-items:start;
}
.news-main-v21,
.news-side-v21{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:26px;
  padding:18px;
}
.news-hero-v21{
  background:linear-gradient(135deg,rgba(18,56,39,.96),rgba(5,24,17,.96));
  border:1px solid rgba(98,240,170,.2);
  border-radius:30px;
  padding:28px;
  margin-bottom:18px;
  box-shadow:0 18px 65px rgba(0,0,0,.24);
}
.news-hero-v21 h1{
  margin:10px 0 12px;
  color:var(--green2);
  font-size:38px;
  line-height:1.45;
}
.news-hero-v21 p{
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
  margin:0;
}
.news-meta-v21{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:14px 0 0;
}
.news-meta-v21 span{
  display:inline-flex;
  border:1px solid rgba(98,240,170,.22);
  background:rgba(98,240,170,.07);
  color:var(--green2);
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  font-weight:900;
}
.news-body-v21{
  color:#f2fff8;
  line-height:2.05;
  font-size:17px;
}
.news-body-v21 p{
  margin:0 0 16px;
}
.news-body-v21 h2{
  color:var(--green2);
  margin:24px 0 12px;
}
.news-match-box-v21{
  background:rgba(98,240,170,.07);
  border:1px solid rgba(98,240,170,.22);
  border-radius:22px;
  padding:16px;
  margin:20px 0;
}
.news-match-box-v21 h2{
  color:var(--green2);
  margin:0 0 10px;
}
.news-match-teams-v21{
  font-size:22px;
  font-weight:900;
  color:#fff;
  margin:8px 0;
}
.news-match-info-v21{
  color:var(--muted);
  line-height:1.9;
  margin:8px 0 14px;
}
.news-cta-v21{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.news-cta-v21 a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
}
.news-cta-v21 .main{
  background:var(--green);
  color:#03110c;
}
.news-cta-v21 .alt{
  border:1px solid rgba(98,240,170,.35);
  color:var(--green2);
}
.news-side-v21 h2{
  margin:0 0 12px;
  color:var(--green2);
}
.related-news-grid-v21{
  display:grid;
  gap:12px;
}
.news-side-links-v21{
  display:grid;
  gap:9px;
  margin-top:14px;
}
.news-side-links-v21 a{
  border:1px solid rgba(98,240,170,.22);
  background:rgba(98,240,170,.06);
  color:var(--green2);
  border-radius:14px;
  padding:10px 12px;
  font-weight:900;
}
.news-bottom-v21{
  margin-top:18px;
}
.news-bottom-v21 h2{
  color:var(--green2);
  margin:0 0 14px;
}
.news-bottom-grid-v21{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media(max-width:900px){
  .news-shell-v21,
  .news-bottom-grid-v21{
    grid-template-columns:1fr;
  }
  .news-hero-v21{
    padding:22px;
    border-radius:24px;
  }
  .news-hero-v21 h1{
    font-size:29px;
  }
  .news-cta-v21{
    flex-direction:column;
  }
  .news-cta-v21 a{
    width:100%;
  }
}

/* Team Pages V22 */
.teams-hero-v22,
.team-hero-v22{
  background:linear-gradient(135deg,rgba(18,56,39,.96),rgba(5,24,17,.96));
  border:1px solid rgba(98,240,170,.2);
  border-radius:30px;
  padding:28px;
  margin:22px 0 18px;
  box-shadow:0 18px 65px rgba(0,0,0,.24);
}
.teams-hero-v22 h1,
.team-hero-v22 h1{
  margin:10px 0 12px;
  color:var(--green2);
  font-size:38px;
  line-height:1.35;
}
.teams-hero-v22 p,
.team-hero-v22 p{
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
  margin:0;
}
.teams-grid-v22{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:18px;
}
.team-card-v22{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  transition:.2s;
}
.team-card-v22:hover{
  transform:translateY(-2px);
  border-color:rgba(98,240,170,.35);
}
.team-card-v22 h2{
  margin:0 0 10px;
  color:#fff;
  font-size:20px;
}
.team-card-v22 .meta{
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}
.team-card-v22 .actions{
  margin-top:12px;
}
.team-card-v22 .actions a{
  display:inline-flex;
  border:1px solid rgba(98,240,170,.28);
  color:var(--green2);
  border-radius:999px;
  padding:8px 11px;
  font-weight:900;
}
.team-top-v22{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:16px;
  margin:18px 0;
}
.team-panel-v22{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:24px;
  padding:16px;
}
.team-panel-v22 h2{
  margin:0 0 12px;
  color:var(--green2);
}
.team-facts-v22{
  display:grid;
  gap:10px;
}
.team-fact-v22{
  display:flex;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid var(--line);
  padding:10px 0;
  color:var(--muted);
}
.team-fact-v22 strong{
  color:#fff;
}
.team-section-v22{
  margin-top:22px;
}
.team-section-v22 h2{
  color:var(--green2);
  margin:0 0 14px;
}
.team-matches-grid-v22{
  display:grid;
  gap:14px;
}
.team-news-grid-v22{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.team-breadcrumb-v22{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:0 0 12px;
  color:var(--muted);
}
.team-breadcrumb-v22 a{
  color:var(--green2);
  font-weight:900;
}
.team-links-v22{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.team-links-v22 a{
  display:inline-flex;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
}
.team-links-v22 .main{
  background:var(--green);
  color:#03110c;
}
.team-links-v22 .alt{
  border:1px solid rgba(98,240,170,.35);
  color:var(--green2);
}
@media(max-width:950px){
  .teams-grid-v22,
  .team-news-grid-v22{
    grid-template-columns:1fr 1fr;
  }
  .team-top-v22{
    grid-template-columns:1fr;
  }
}
@media(max-width:620px){
  .teams-grid-v22,
  .team-news-grid-v22{
    grid-template-columns:1fr;
  }
  .teams-hero-v22,
  .team-hero-v22{
    padding:22px;
    border-radius:24px;
  }
  .teams-hero-v22 h1,
  .team-hero-v22 h1{
    font-size:29px;
  }
}

/* Home SEO Conversion V23 */
.home-hero-v23{
  background:
    radial-gradient(circle at top right,rgba(98,240,170,.18),transparent 38%),
    linear-gradient(135deg,rgba(18,56,39,.98),rgba(5,24,17,.98));
  border:1px solid rgba(98,240,170,.22);
  border-radius:32px;
  padding:34px;
  margin:22px 0 18px;
  box-shadow:0 22px 75px rgba(0,0,0,.28);
}
.home-hero-v23 h1{
  margin:10px 0 12px;
  color:var(--green2);
  font-size:44px;
  line-height:1.35;
}
.home-hero-v23 p{
  color:var(--muted);
  line-height:1.95;
  font-size:18px;
  max-width:900px;
  margin:0;
}
.home-actions-v23{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.home-actions-v23 a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:11px 15px;
  font-weight:900;
}
.home-actions-v23 .main{
  background:var(--green);
  color:#03110c;
}
.home-actions-v23 .alt{
  border:1px solid rgba(98,240,170,.35);
  color:var(--green2);
  background:rgba(98,240,170,.06);
}
.home-grid-v23{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:18px;
  align-items:start;
  margin-top:18px;
}
.home-panel-v23{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:26px;
  padding:18px;
}
.home-panel-v23 h2{
  margin:0 0 14px;
  color:var(--green2);
  font-size:24px;
}
.home-panel-head-v23{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}
.home-panel-head-v23 h2{
  margin:0;
}
.home-panel-head-v23 a{
  color:var(--green2);
  font-weight:900;
  border:1px solid rgba(98,240,170,.28);
  border-radius:999px;
  padding:8px 11px;
}
.home-match-list-v23{
  display:grid;
  gap:13px;
}
.home-card-grid-v23{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.home-teams-grid-v23{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.home-team-mini-v23{
  background:rgba(98,240,170,.065);
  border:1px solid rgba(98,240,170,.18);
  border-radius:18px;
  padding:13px;
}
.home-team-mini-v23 h3{
  margin:0 0 8px;
  color:#fff;
  font-size:18px;
}
.home-team-mini-v23 p{
  color:var(--muted);
  margin:0 0 10px;
  line-height:1.7;
  font-size:13px;
}
.home-team-mini-v23 a{
  color:var(--green2);
  font-weight:900;
}
.home-links-grid-v23{
  display:grid;
  gap:9px;
}
.home-links-grid-v23 a{
  border:1px solid rgba(98,240,170,.22);
  background:rgba(98,240,170,.06);
  color:var(--green2);
  border-radius:15px;
  padding:11px 12px;
  font-weight:900;
}
.home-seo-text-v23{
  color:var(--muted);
  line-height:2;
  font-size:16px;
}
.home-seo-text-v23 strong{
  color:#fff;
}
@media(max-width:950px){
  .home-grid-v23,
  .home-card-grid-v23,
  .home-teams-grid-v23{
    grid-template-columns:1fr;
  }
}
@media(max-width:620px){
  .home-hero-v23{
    padding:24px;
    border-radius:24px;
  }
  .home-hero-v23 h1{
    font-size:31px;
  }
  .home-actions-v23{
    flex-direction:column;
  }
  .home-actions-v23 a{
    width:100%;
  }
}

/* Match Detail Conversion V24 */
.match-detail-v24{
  margin:22px 0 42px;
}
.match-hero-v24{
  background:
    radial-gradient(circle at top right,rgba(98,240,170,.18),transparent 38%),
    linear-gradient(135deg,rgba(18,56,39,.98),rgba(5,24,17,.98));
  border:1px solid rgba(98,240,170,.22);
  border-radius:32px;
  padding:30px;
  margin:22px 0 18px;
  box-shadow:0 22px 75px rgba(0,0,0,.28);
}
.match-hero-v24 h1{
  margin:10px 0 12px;
  color:var(--green2);
  font-size:40px;
  line-height:1.35;
}
.match-hero-v24 p{
  color:var(--muted);
  line-height:1.9;
  font-size:17px;
  margin:0;
}
.match-teams-v24{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:14px;
  align-items:center;
  margin:20px 0;
}
.match-team-v24{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  min-height:95px;
}
.match-team-v24.left{
  text-align:right;
}
.match-team-v24.right{
  text-align:left;
}
.match-team-v24 h2{
  margin:0 0 8px;
  color:#fff;
  font-size:25px;
}
.match-team-v24 a{
  color:var(--green2);
  font-weight:900;
}
.match-vs-v24{
  width:74px;
  height:74px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--green);
  color:#03110c;
  font-weight:1000;
  font-size:20px;
}
.match-meta-v24{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:12px 0 0;
}
.match-meta-v24 span{
  display:inline-flex;
  border:1px solid rgba(98,240,170,.22);
  background:rgba(98,240,170,.07);
  color:var(--green2);
  border-radius:999px;
  padding:7px 10px;
  font-size:13px;
  font-weight:900;
}
.match-actions-v24{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.match-actions-v24 a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
}
.match-actions-v24 .main{
  background:var(--green);
  color:#03110c;
}
.match-actions-v24 .alt{
  border:1px solid rgba(98,240,170,.35);
  color:var(--green2);
  background:rgba(98,240,170,.06);
}
.match-detail-grid-v24{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:18px;
  align-items:start;
  margin-top:18px;
}
.match-panel-v24{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:26px;
  padding:18px;
}
.match-panel-v24 h2{
  margin:0 0 14px;
  color:var(--green2);
  font-size:24px;
}
.match-links-v24{
  display:grid;
  gap:9px;
}
.match-links-v24 a{
  border:1px solid rgba(98,240,170,.22);
  background:rgba(98,240,170,.06);
  color:var(--green2);
  border-radius:15px;
  padding:11px 12px;
  font-weight:900;
}
.match-related-news-v24{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.match-related-matches-v24{
  display:grid;
  gap:14px;
}
.match-seo-text-v24{
  color:var(--muted);
  line-height:2;
  font-size:16px;
}
.match-seo-text-v24 strong{
  color:#fff;
}
@media(max-width:950px){
  .match-detail-grid-v24,
  .match-related-news-v24{
    grid-template-columns:1fr;
  }
}
@media(max-width:650px){
  .match-hero-v24{
    padding:22px;
    border-radius:24px;
  }
  .match-hero-v24 h1{
    font-size:30px;
  }
  .match-teams-v24{
    grid-template-columns:1fr;
  }
  .match-team-v24.left,
  .match-team-v24.right{
    text-align:center;
  }
  .match-vs-v24{
    margin:auto;
  }
  .match-actions-v24{
    flex-direction:column;
  }
  .match-actions-v24 a{
    width:100%;
  }
}

/* Channels SEO Safe V25 */
.channels-v25{
  margin:22px 0 42px;
}
.channels-hero-v25{
  background:
    radial-gradient(circle at top right,rgba(98,240,170,.18),transparent 38%),
    linear-gradient(135deg,rgba(18,56,39,.98),rgba(5,24,17,.98));
  border:1px solid rgba(98,240,170,.22);
  border-radius:32px;
  padding:32px;
  margin:22px 0 18px;
  box-shadow:0 22px 75px rgba(0,0,0,.28);
}
.channels-hero-v25 h1{
  margin:10px 0 12px;
  color:var(--green2);
  font-size:40px;
  line-height:1.35;
}
.channels-hero-v25 p{
  color:var(--muted);
  line-height:1.95;
  font-size:17px;
  margin:0;
  max-width:920px;
}
.channels-actions-v25{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.channels-actions-v25 a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
}
.channels-actions-v25 .main{
  background:var(--green);
  color:#03110c;
}
.channels-actions-v25 .alt{
  border:1px solid rgba(98,240,170,.35);
  color:var(--green2);
  background:rgba(98,240,170,.06);
}
.channels-warning-v25{
  background:rgba(255,205,86,.09);
  border:1px solid rgba(255,205,86,.28);
  color:#ffe7a3;
  border-radius:22px;
  padding:15px;
  line-height:1.9;
  margin:18px 0;
}
.channels-layout-v25{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:18px;
  align-items:start;
}
.channels-panel-v25{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:26px;
  padding:18px;
}
.channels-panel-v25 h2{
  margin:0 0 14px;
  color:var(--green2);
  font-size:24px;
}
.channels-official-grid-v25{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.channel-official-card-v25{
  background:rgba(98,240,170,.06);
  border:1px solid rgba(98,240,170,.2);
  border-radius:22px;
  padding:16px;
}
.channel-official-card-v25 h3{
  margin:0 0 8px;
  color:#fff;
  font-size:20px;
}
.channel-official-card-v25 p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}
.channel-badge-v25{
  display:inline-flex;
  margin-bottom:9px;
  border:1px solid rgba(98,240,170,.26);
  color:var(--green2);
  border-radius:999px;
  padding:6px 9px;
  font-size:12px;
  font-weight:900;
}
.channels-links-v25{
  display:grid;
  gap:9px;
}
.channels-links-v25 a{
  border:1px solid rgba(98,240,170,.22);
  background:rgba(98,240,170,.06);
  color:var(--green2);
  border-radius:15px;
  padding:11px 12px;
  font-weight:900;
}
.channels-country-grid-v25{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.country-card-v25{
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  border-radius:18px;
  padding:13px;
}
.country-card-v25 h3{
  margin:0 0 7px;
  color:#fff;
  font-size:17px;
}
.country-card-v25 p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
  font-size:13px;
}
.channels-match-grid-v25{
  display:grid;
  gap:14px;
}
.channels-news-grid-v25{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.channels-faq-v25{
  display:grid;
  gap:10px;
}
.channels-faq-v25 details{
  border:1px solid rgba(98,240,170,.18);
  background:rgba(98,240,170,.045);
  border-radius:16px;
  padding:12px;
}
.channels-faq-v25 summary{
  cursor:pointer;
  color:#fff;
  font-weight:900;
}
.channels-faq-v25 p{
  color:var(--muted);
  line-height:1.9;
  margin:10px 0 0;
}
.channels-seo-text-v25{
  color:var(--muted);
  line-height:2;
  font-size:16px;
}
.channels-seo-text-v25 strong{
  color:#fff;
}
@media(max-width:950px){
  .channels-layout-v25,
  .channels-official-grid-v25,
  .channels-country-grid-v25,
  .channels-news-grid-v25{
    grid-template-columns:1fr;
  }
}
@media(max-width:650px){
  .channels-hero-v25{
    padding:22px;
    border-radius:24px;
  }
  .channels-hero-v25 h1{
    font-size:30px;
  }
  .channels-actions-v25{
    flex-direction:column;
  }
  .channels-actions-v25 a{
    width:100%;
  }
}
