/*
Theme Name: KORARAB Premium
Theme URI: https://korarab.com
Author: KORARAB
Version: 1.2
Text Domain: korarab
*/

/* ===============================
   KORARAB PREMIUM — FINAL CLEAN CSS
   =============================== */

:root{
  --kora-black:#050505;
  --kora-dark:#0b0b0b;
  --kora-card:#101010;
  --kora-gold:#C7A86B;
  --kora-gold-light:#E5C98F;
  --kora-white:#FFFFFF;
  --kora-muted:rgba(255,255,255,.68);
  --kora-border:rgba(199,168,107,.36);
}

*{box-sizing:border-box;}
html{margin:0;padding:0;scroll-behavior:smooth;overflow-x:hidden;}
body{
  margin:0;
  padding:0;
  background:var(--kora-black);
  color:var(--kora-white);
  direction:rtl;
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}
a{transition:.3s ease;}
img{max-width:100%;height:auto;}

/* ===============================
   HEADER
   =============================== */

.kora-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:82px;
  z-index:999;
  background:#050505;
  border-bottom:1px solid rgba(199,168,107,.18);
}

.kora-header-inner{
  max-width:1440px;
  height:82px;
  margin:0 auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  direction:ltr;
}

.kora-logo{flex:0 0 auto;}
.kora-logo img{height:58px;width:auto;display:block;}

.kora-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  direction:rtl;
}

.kora-nav a{
  position:relative;
  display:block;
  padding:30px 0;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  line-height:1;
  font-weight:800;
  opacity:.9;
  white-space:nowrap;
}

.kora-nav a:hover,
.kora-nav a.active{color:var(--kora-gold);opacity:1;}

.kora-nav a.active:after{
  content:"";
  position:absolute;
  right:0;
  bottom:6px;
  width:100%;
  height:4px;
  border-radius:20px;
  background:linear-gradient(90deg,var(--kora-gold),var(--kora-gold-light));
}

.kora-actions{
  display:flex;
  align-items:center;
  gap:18px;
  direction:rtl;
  color:#fff;
  font-weight:800;
}
.kora-search{font-size:24px;line-height:1;color:#fff;}
.kora-lang{font-size:15px;color:#fff;white-space:nowrap;}
.kora-login{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 22px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--kora-gold),var(--kora-gold-light));
  color:#111;
  text-decoration:none;
  font-weight:950;
  box-shadow:0 8px 25px rgba(199,168,107,.28);
  white-space:nowrap;
}

/* ===============================
   MAIN / HERO — KORARAB V3
   clean two-column hero, one architecture only
   =============================== */

.kora-main{
  padding-top:82px;
  background:
    radial-gradient(circle at 78% 5%, rgba(17,70,145,.45), transparent 34%),
    radial-gradient(circle at 15% 28%, rgba(199,168,107,.09), transparent 34%),
    linear-gradient(180deg,#06142d 0%, #050505 74%);
  overflow:hidden;
}

.kora-hero-wrap{
  width:100%;
  max-width:1440px;
  margin:0 auto 28px;
  padding:0 24px;
  border:none;
  background:transparent;
  box-shadow:none;
}

.kora-hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  align-items:stretch;
  min-height:470px;
  direction:ltr;
  overflow:hidden;
  border:1px solid rgba(229,201,143,.42);
  border-radius:22px;
  background:
    radial-gradient(circle at 74% 25%, rgba(21,78,150,.22), transparent 38%),
    linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.018)),
    #05070b;
  box-shadow:
    0 30px 90px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.07);
  isolation:isolate;
  animation:koraHeroFadeUp .7s ease both;
}

.kora-hero-grid:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 42%, rgba(229,193,100,.16), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.05), transparent 45%, rgba(3,9,20,.72));
  pointer-events:none;
  z-index:1;
}

.kora-hero-grid:after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:20px;
  border:1px solid rgba(199,168,107,.16);
  pointer-events:none;
  z-index:4;
}

.kora-hero-visual{
  position:relative;
  z-index:2;
  min-height:470px;
  overflow:hidden;
  background:#030303;
}

.kora-hero-visual:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent 0%, transparent 76%, rgba(5,7,11,.78) 100%);
  pointer-events:none;
}

.kora-hero-visual img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
    object-position:center center !important;
    display:block !important;
}

.kora-hero-content{
  position:relative;
  z-index:3;
  direction:rtl;
  text-align:right;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:48px 54px 48px 42px;
  background:
    linear-gradient(90deg, rgba(4,9,18,.56), rgba(7,18,39,.68)),
    rgba(255,255,255,.025);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-left:1px solid rgba(229,201,143,.15);
}

.kora-hero-content h4{
  margin:0 0 10px;
  color:#fff;
  font-size:28px;
  line-height:1.1;
  font-weight:950;
  text-shadow:0 0 22px rgba(255,255,255,.22);
}

.kora-hero-content h1{
  margin:0 0 16px;
  color:#F2C85D;
  font-size:74px;
  line-height:.95;
  font-weight:1000;
  letter-spacing:.02em;
  background:linear-gradient(180deg,#FFF1A5 0%,#F3C657 38%,#B87918 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 8px 22px rgba(199,168,107,.22));
}

.kora-hero-content h2{
  margin:0 0 12px;
  color:#fff;
  font-size:28px;
  line-height:1.22;
  font-weight:950;
}

.kora-hero-content p{
  margin:0 0 28px;
  color:rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.7;
  font-weight:750;
}

.kora-hero-features{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  margin:0 0 28px;
  padding:20px 0;
  border-top:1px solid rgba(229,201,143,.16);
  border-bottom:1px solid rgba(229,201,143,.16);
}

.kora-hero-features div{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:82px;
  color:#D9B76A;
  text-align:center;
  border-left:1px solid rgba(199,168,107,.26);
}

.kora-hero-features div:first-child{border-left:0;}

.kora-feature-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  color:#F0C963;
  font-size:22px;
  line-height:1;
  background:rgba(199,168,107,.08);
  border:1px solid rgba(229,201,143,.22);
  box-shadow:0 0 22px rgba(229,193,100,.12);
}

.kora-hero-features span:not(.kora-feature-icon){
  display:block;
  color:#E5C98F;
  font-size:13px;
  line-height:1.2;
  font-weight:950;
  white-space:nowrap;
}

.kora-hero-buttons{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.hero-btn{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  font-weight:950;
  transition:.28s ease;
  transform:translateZ(0);
}

.hero-btn-gold{
  color:#101010;
  border:1px solid #F8D978;
  background:linear-gradient(135deg,#FFF2A8 0%,#F2C85D 36%,#C99628 100%);
  box-shadow:
    0 12px 34px rgba(229,193,100,.46),
    0 0 32px rgba(229,193,100,.32),
    inset 0 1px 0 rgba(255,255,255,.65);
  animation:koraHeroGoldPulse 2.8s ease-in-out infinite;
}

.hero-btn-dark{
  color:#fff;
  background:rgba(3,5,10,.44);
  border:1px solid rgba(229,201,143,.64);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10),0 8px 22px rgba(0,0,0,.28);
}

.hero-btn:hover{transform:translateY(-2px) translateZ(0);}
.hero-btn-gold:hover{filter:saturate(1.08) brightness(1.05);}
.hero-btn-dark:hover{background:rgba(199,168,107,.14);color:#E5C98F;border-color:#E5C98F;}

@keyframes koraHeroGoldPulse{
  0%,100%{box-shadow:0 12px 34px rgba(229,193,100,.46),0 0 32px rgba(229,193,100,.32),inset 0 1px 0 rgba(255,255,255,.65);}
  50%{box-shadow:0 17px 48px rgba(229,193,100,.66),0 0 46px rgba(229,193,100,.54),inset 0 1px 0 rgba(255,255,255,.78);}
}

@keyframes koraHeroFadeUp{
  from{opacity:0;transform:translateY(18px);}
  to{opacity:1;transform:translateY(0);}
}

/* ===============================
   SHARED SECTIONS
   =============================== */

.kora-section,
.kora-matches-section,
.kora-bookmakers-section{
  width:100%;
  max-width:1440px;
  margin-left:auto;
  margin-right:auto;
  padding-left:24px;
  padding-right:24px;
}

.kora-section{margin-top:54px;}
.kora-matches-section{margin-top:0;padding-top:14px;padding-bottom:40px;}
.kora-bookmakers-section{margin-top:22px;}

.kora-section-head,
.kora-bookmakers-head,
.kora-leagues-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.kora-section-title,
.kora-bookmakers-title{
  display:flex;
  align-items:center;
  gap:12px;
  direction:ltr;
  text-align:left;
}

.kora-section-title h2,
.kora-bookmakers-title h2{
  margin:0;
  color:#fff;
  font-size:34px;
  line-height:1.08;
  font-weight:950;
  text-shadow:0 0 22px rgba(255,255,255,.16);
}

.kora-section-title p{
  margin:6px 0 0;
  color:#D9B76A;
  font-size:13px;
  font-weight:800;
}

.kora-title-icon,
.kora-bookmakers-title span{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(199,168,107,.45);
  color:#C7A86B;
  background:rgba(199,168,107,.08);
  box-shadow:0 0 18px rgba(199,168,107,.14);
}

.kora-view-all{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border:1px solid rgba(199,168,107,.45);
  border-radius:11px;
  color:#C7A86B;
  background:rgba(255,255,255,.025);
  text-decoration:none;
  font-size:14px;
  font-weight:900;
}
.kora-view-all:hover{background:#C7A86B;color:#000;}

/* ===============================
   MATCHES
   =============================== */

.kora-matches-grid,
.kora-api-matches-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.kora-match-card,
.kora-api-match-card{
  background:#0F0F0F;
  border:1px solid rgba(199,168,107,.28);
  border-radius:18px;
  padding:22px;
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  transition:.35s ease;
}

.kora-match-card:hover,
.kora-api-match-card:hover{
  transform:translateY(-6px);
  border-color:rgba(199,168,107,.75);
  box-shadow:0 25px 60px rgba(199,168,107,.15),0 10px 30px rgba(0,0,0,.45);
}

.kora-league{font-size:13px;color:var(--kora-muted);text-align:center;margin-bottom:8px;}
.kora-time{text-align:center;color:#fff;font-size:34px;font-weight:950;margin-bottom:18px;letter-spacing:1px;}
.kora-teams{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px;}
.kora-team{width:40%;text-align:center;}
.kora-team-logo{
  width:46px;height:46px;margin:0 auto 8px;border-radius:50%;
  background:linear-gradient(135deg,#111,#2a2a2a);
  border:1px solid rgba(199,168,107,.45);
  display:flex;align-items:center;justify-content:center;
  color:#C7A86B;font-weight:950;font-size:20px;
}
.kora-team span{font-size:13px;font-weight:850;color:#fff;}
.kora-vs{color:#C7A86B;font-size:12px;font-weight:950;opacity:.9;}
.kora-odds{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;}
.kora-odds span{background:#0B0B0B;border:1px solid rgba(199,168,107,.26);border-radius:8px;padding:8px 4px;text-align:center;font-size:15px;font-weight:950;color:#fff;}
.kora-odds small{display:block;color:#C7A86B;font-size:10px;margin-bottom:3px;}

/* ===============================
   BOOKMAKERS
   =============================== */

.kora-bookmakers-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px;}
.kora-bookmaker-card{
  position:relative;
  text-align:center;
  background:#0d0d0d;
  border:1px solid rgba(199,168,107,.3);
  border-radius:14px;
  padding:16px;
  color:#fff;
  transition:.3s ease;
}
.kora-bookmaker-card:hover{transform:translateY(-5px);border-color:#C7A86B;}
.rank{position:absolute;top:0;left:0;background:#C7A86B;color:#000;font-weight:950;padding:4px 10px;border-radius:14px 0 10px 0;}
.bookmaker-logo{height:54px;margin:16px auto 10px;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.bookmaker-logo img{width:auto!important;height:auto!important;max-width:170px!important;max-height:58px!important;object-fit:contain!important;display:block;}
.logo{font-size:28px;font-weight:950;margin-top:18px;color:#fff;}
.bonus{font-size:42px;font-weight:950;color:#C7A86B;margin:10px 0;}
.rating{color:#fff;font-size:14px;margin-bottom:14px;}
.promo{border:1px solid #C7A86B;border-radius:10px;padding:12px;font-size:24px;font-weight:950;color:#fff;margin-bottom:12px;}
.buttons{display:flex;gap:8px;}
.buttons a{flex:1;text-decoration:none;background:#151515;border:1px solid rgba(199,168,107,.3);padding:10px;border-radius:8px;color:#fff;font-size:13px;font-weight:800;}
.buttons a:hover{background:#C7A86B;color:#000;}

/* ===============================
   CONTENT CARDS
   =============================== */

.kora-content-row{display:grid;grid-template-columns:.95fr 1.35fr .95fr;gap:24px;align-items:stretch;}
.kora-news-box,.kora-analysis-box,.kora-prediction-box,.kora-standing-card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  border:1px solid rgba(199,168,107,.38);
  border-radius:20px;
  padding:24px;
  box-shadow:0 18px 50px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.045);
  color:#fff;
}
.kora-news-box:before,.kora-analysis-box:before,.kora-prediction-box:before,.kora-standing-card:before{
  content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 0%,rgba(199,168,107,.13),transparent 55%);pointer-events:none;
}
.kora-box-head{position:relative;z-index:2;display:flex;align-items:center;gap:10px;margin-bottom:20px;}
.kora-box-head span{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(199,168,107,.42);border-radius:10px;background:rgba(199,168,107,.08);}
.kora-box-head h3{color:#fff;font-size:24px;line-height:1.15;margin:0;font-weight:950;text-shadow:0 0 18px rgba(255,255,255,.22);}
.kora-news-item{position:relative;z-index:2;display:grid;grid-template-columns:86px 1fr;gap:12px;align-items:center;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.08);}
.kora-news-item:last-of-type{border-bottom:0;}
.kora-news-item img{width:86px;height:62px;object-fit:cover;border-radius:10px;border:1px solid rgba(199,168,107,.25);}
.kora-news-item h4{color:#fff;font-size:14px;line-height:1.35;margin:0 0 6px;font-weight:850;}
.kora-news-item span{color:#D9B76A;font-size:12px;font-weight:800;}
.kora-analysis-hero{position:relative;z-index:2;min-height:210px;border-radius:16px;overflow:hidden;border:1px solid rgba(199,168,107,.32);background:#0b0b0b;margin-bottom:18px;}
.kora-analysis-hero img{width:100%;height:100%;min-height:210px;object-fit:cover;display:block;opacity:.72;}
.kora-analysis-overlay{position:absolute;inset:auto 0 0 0;padding:24px;background:linear-gradient(180deg,transparent,rgba(0,0,0,.88));}
.kora-analysis-overlay span{display:inline-block;color:#D9B76A;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.12em;margin-bottom:8px;}
.kora-analysis-overlay h2{color:#fff;font-size:30px;margin:0;line-height:1.1;font-weight:950;}
.kora-analysis-box p{position:relative;z-index:2;color:rgba(255,255,255,.78);font-size:15px;line-height:1.7;margin:0 0 18px;}
.kora-analysis-metrics{position:relative;z-index:2;display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:18px;}
.kora-analysis-metrics div{border:1px solid rgba(199,168,107,.28);border-radius:12px;padding:14px 10px;text-align:center;background:rgba(0,0,0,.22);}
.kora-analysis-metrics span{display:block;color:rgba(255,255,255,.62);font-size:11px;margin-bottom:5px;}
.kora-analysis-metrics strong{color:#fff;font-size:15px;font-weight:950;}
.prediction-match{position:relative;z-index:2;min-height:260px;display:flex;flex-direction:column;justify-content:center;text-align:center;}
.prediction-league,.prediction-label{color:#C7A86B;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.04em;}
.prediction-teams{color:#fff;font-size:20px;line-height:1.25;font-weight:950;margin:12px 0 14px;}
.prediction-score{font-size:58px;line-height:1;font-weight:1000;color:#C7A86B;text-shadow:0 0 22px rgba(199,168,107,.22);margin:14px 0 10px;}
.prediction-result{color:#fff;font-size:17px;font-weight:900;margin-bottom:18px;}
.prediction-confidence-row{display:flex;align-items:center;justify-content:space-between;gap:12px;border-top:1px solid rgba(199,168,107,.24);padding-top:14px;color:#fff;}
.prediction-confidence-row span{color:rgba(255,255,255,.7);font-size:13px;font-weight:800;}
.prediction-confidence-row strong{font-size:24px;color:#fff;}
.prediction-stars{color:#C7A86B;letter-spacing:2px;margin-top:8px;}
.kora-box-btn{position:relative;z-index:2;display:block;text-align:center;padding:14px 18px;border:1px solid rgba(199,168,107,.72);border-radius:12px;color:#fff;text-decoration:none;font-weight:950;transition:.3s ease;}
.kora-box-btn:hover{background:#C7A86B;color:#060606;}
.kora-box-btn.gold{background:linear-gradient(90deg,#C7A86B,#FFD56B,#C7A86B);color:#080808;border-color:transparent;}

/* ===============================
   LEAGUES / LIVE / STANDINGS
   =============================== */

.kora-leagues-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px;}
.kora-league-card{position:relative;display:block;min-height:178px;text-decoration:none;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));border:1px solid rgba(199,168,107,.38);border-radius:18px;padding:24px 16px;text-align:center;color:#fff;overflow:hidden;box-shadow:0 18px 45px rgba(0,0,0,.35);transition:.35s ease;}
.kora-league-card:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at top,rgba(199,168,107,.18),transparent 55%);}
.kora-league-card>*{position:relative;z-index:2;}
.kora-league-card .league-icon{display:block;font-size:34px;margin-bottom:14px;}
.kora-league-card h3{font-size:17px;line-height:1.2;font-weight:950;margin:0 0 8px;color:#fff;}
.kora-league-card p{font-size:13px;line-height:1.45;color:rgba(255,255,255,.72);margin:0 0 16px;}
.kora-league-card small{color:#D9B76A;font-size:12px;font-weight:950;}
.kora-league-card:hover{transform:translateY(-6px);border-color:#C7A86B;box-shadow:0 25px 65px rgba(199,168,107,.18);}
.kora-live-panel{display:flex;align-items:center;justify-content:space-between;gap:28px;border:1px solid rgba(199,168,107,.40);border-radius:22px;padding:28px;background:linear-gradient(90deg,rgba(224,0,0,.16),rgba(199,168,107,.08),rgba(255,255,255,.025));box-shadow:0 18px 55px rgba(0,0,0,.35);}
.kora-live-badge{display:inline-flex;align-items:center;padding:7px 12px;border-radius:999px;background:#e00000;color:#fff;font-size:12px;font-weight:950;box-shadow:0 0 18px rgba(224,0,0,.55);margin-bottom:12px;}
.kora-live-panel h2{color:#fff;font-size:30px;margin:0 0 8px;}
.kora-live-panel p{color:rgba(255,255,255,.72);margin:0;}
.kora-live-panel-stats{display:flex;gap:12px;}
.kora-live-panel-stats div{min-width:110px;text-align:center;padding:16px 12px;border:1px solid rgba(199,168,107,.30);border-radius:14px;background:rgba(0,0,0,.24);}
.kora-live-panel-stats strong{display:block;color:#fff;font-size:24px;font-weight:950;}
.kora-live-panel-stats span{color:#D9B76A;font-size:12px;font-weight:800;}
.kora-standings-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.kora-standing-card h3{position:relative;z-index:2;color:#fff;font-size:22px;margin:0 0 10px;}
.kora-standing-card p{position:relative;z-index:2;color:rgba(255,255,255,.72);line-height:1.6;margin:0 0 18px;}
.kora-standing-card a{position:relative;z-index:2;color:#D9B76A;font-weight:950;text-decoration:none;}

/* ===============================
   RESPONSIVE
   =============================== */

@media(max-width:1200px){
  .kora-matches-grid,.kora-api-matches-grid{grid-template-columns:repeat(2,1fr);}
  .kora-bookmakers-grid,.kora-leagues-grid{grid-template-columns:repeat(3,1fr);}
  .kora-content-row{grid-template-columns:1fr;}
  .kora-live-panel{flex-direction:column;align-items:flex-start;}
}

@media(max-width:900px){
  .kora-header{height:72px!important;}
  .kora-header-inner{height:72px!important;padding:0 14px!important;gap:14px!important;}
  .kora-logo img{height:42px!important;}
  .kora-actions{display:none!important;}
  .kora-nav{
    flex:1 1 auto!important;
    max-width:calc(100% - 160px)!important;
    gap:18px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    white-space:nowrap!important;
    scrollbar-width:none!important;
    direction:rtl!important;
    justify-content:flex-start!important;
  }
  .kora-nav::-webkit-scrollbar{display:none!important;}
  .kora-nav a{flex:0 0 auto!important;font-size:14px!important;line-height:1!important;padding:27px 0 24px!important;}
  .kora-nav a.active:after{bottom:5px!important;height:4px!important;}

  .kora-main{padding-top:72px!important;}
.kora-section,.kora-matches-section,.kora-bookmakers-section{max-width:100%!important;padding-left:14px!important;padding-right:14px!important;}
  .kora-matches-section{padding-top:8px!important;padding-bottom:32px!important;margin-top:0!important;}
  .kora-section{margin-top:38px!important;}
  .kora-section-head,.kora-bookmakers-head,.kora-leagues-head{flex-direction:column-reverse!important;align-items:center!important;justify-content:center!important;text-align:center!important;gap:14px!important;margin-bottom:18px!important;}
  .kora-section-title,.kora-bookmakers-title{width:100%!important;justify-content:center!important;text-align:center!important;direction:ltr!important;}
  .kora-section-title h2,.kora-bookmakers-title h2{font-size:32px!important;text-align:center!important;}
  .kora-section-title p{text-align:center!important;font-size:15px!important;}
  .kora-title-icon,.kora-bookmakers-title span{width:48px!important;height:48px!important;border-radius:14px!important;}
  .kora-view-all{width:100%!important;min-height:54px!important;border-radius:16px!important;font-size:16px!important;}
  .kora-matches-grid,.kora-api-matches-grid{grid-template-columns:1fr!important;gap:16px!important;}
  .kora-match-card,.kora-api-match-card{border-radius:18px!important;padding:18px 14px!important;}
  .kora-bookmakers-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;}
  .kora-content-row{grid-template-columns:1fr!important;gap:18px!important;margin-top:32px!important;}
  .kora-leagues-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;}
  .kora-standings-grid{grid-template-columns:1fr!important;}
  .kora-live-panel{padding:22px!important;}
  .kora-live-panel-stats{width:100%!important;min-width:0!important;display:grid!important;grid-template-columns:1fr!important;}
}

@media(max-width:560px){
  .kora-header-inner{padding:0 12px!important;}
  .kora-logo img{height:40px!important;}
  .kora-nav{max-width:calc(100% - 148px)!important;gap:17px!important;}
  .kora-nav a{font-size:14px!important;}
.kora-section-title h2,.kora-bookmakers-title h2{font-size:30px!important;}
  .kora-bookmakers-grid,.kora-leagues-grid{grid-template-columns:1fr!important;}
}

@media(max-width:430px){
  .kora-logo img{height:38px!important;}
  .kora-nav{max-width:calc(100% - 138px)!important;gap:16px!important;}
  .kora-nav a{font-size:13px!important;}
.kora-section-title h2,.kora-bookmakers-title h2{font-size:28px!important;}
  .kora-section-title p{font-size:14px!important;}
}

@media(max-width:390px){
.kora-section-title h2,.kora-bookmakers-title h2{font-size:26px!important;}
}

/* KORARAB API MATCH CARDS — moved from plugin */
.kora-api-matches-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;direction:rtl;align-items:stretch;}
.kora-api-match-card{position:relative;overflow:hidden;background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));border:1px solid rgba(199,168,107,.42);border-radius:18px;padding:18px 16px;color:#fff;text-align:center;box-shadow:0 16px 45px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.05);transition:.35s ease;min-height:235px;}
.kora-api-match-card:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 50% 0%,rgba(199,168,107,.18),transparent 46%);pointer-events:none;}
.kora-api-match-card:hover{transform:translateY(-5px);border-color:rgba(199,168,107,.92);box-shadow:0 25px 60px rgba(199,168,107,.16),0 10px 30px rgba(0,0,0,.48);}
.kora-api-league{position:relative;font-size:13px;font-weight:800;color:rgba(255,255,255,.76);min-height:20px;margin-bottom:9px;}
.kora-api-live{display:inline-block;margin-right:6px;padding:2px 8px;border-radius:20px;background:#e00000;color:#fff;font-size:10px;font-weight:900;box-shadow:0 0 14px rgba(255,0,0,.55);animation:korarabPulse 1.2s infinite;}
@keyframes korarabPulse{0%,100%{opacity:1}50%{opacity:.45}}
.kora-api-time{position:relative;font-size:34px;line-height:1;font-weight:950;color:#fff;margin-bottom:18px;text-shadow:0 0 22px rgba(255,255,255,.32);}
.kora-api-time small{display:block;margin-top:6px;font-size:11px;line-height:1;font-weight:900;color:#D9B76A;text-shadow:none;}
.kora-api-time.is-live-minute{color:#fff;background:linear-gradient(90deg,rgba(224,0,0,.18),rgba(199,168,107,.10));border-radius:12px;padding:8px 6px;margin-bottom:12px;}
.kora-api-time.is-live-minute:after{content:"";display:inline-block;width:7px;height:7px;margin-right:7px;border-radius:50%;background:#ff0000;box-shadow:0 0 12px rgba(255,0,0,.9);animation:korarabPulse 1.2s infinite;vertical-align:middle;}
.kora-api-teams{position:relative;display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:17px;}
.kora-api-team{width:40%;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;gap:8px;min-height:82px;}
.kora-api-team img,.kora-api-team-fallback{width:50px;height:50px;border-radius:50%;object-fit:contain;background:#101010;border:1px solid rgba(199,168,107,.55);box-shadow:0 0 22px rgba(199,168,107,.14);display:flex;align-items:center;justify-content:center;color:#C7A86B;font-size:20px;font-weight:900;}
.kora-api-team span{font-size:13px;font-weight:900;color:#fff;line-height:1.25;max-width:100%;}
.kora-api-score{width:20%;color:#D9B76A;font-size:15px;font-weight:950;text-shadow:0 0 14px rgba(199,168,107,.28);}
.kora-api-odds{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  direction:ltr;
}
.kora-api-odds span{background:rgba(10,10,10,.72);border:1px solid rgba(199,168,107,.36);border-radius:9px;padding:8px 4px;text-align:center;font-size:15px;font-weight:950;color:#fff;}
.kora-api-odds small{display:block;color:#C7A86B;font-size:10px;margin-bottom:3px;}
@media(max-width:1000px){.kora-api-matches-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:640px){.kora-api-matches-grid{grid-template-columns:1fr}.kora-api-match-card{min-height:auto}}


/* ===============================
   HERO V3 RESPONSIVE
   =============================== */

@media(max-width:1200px){
  .kora-hero-grid{grid-template-columns:1fr .96fr;min-height:430px;}
  .kora-hero-visual,.kora-hero-visual img{min-height:430px;}
  .kora-hero-content{padding:40px 38px 40px 30px;}
  .kora-hero-content h1{font-size:62px;}
  .kora-hero-content h2{font-size:24px;}
  .kora-hero-content h4{font-size:24px;}
  .kora-hero-features span:not(.kora-feature-icon){font-size:12px;}
}

@media(max-width:900px){
  .kora-main{padding-top:72px!important;}
  .kora-hero-wrap{max-width:100%!important;margin:0 auto 12px!important;padding:0 10px!important;}
  .kora-hero-grid{grid-template-columns:1fr;min-height:auto;border-radius:18px;}
  .kora-hero-grid:before{background:linear-gradient(180deg,transparent 0%,rgba(5,7,11,.82) 55%,rgba(5,7,11,.96) 100%);}
  .kora-hero-visual{min-height:300px;}
  .kora-hero-visual img{min-height:300px;object-position:center center;}
  .kora-hero-visual:after{background:linear-gradient(180deg,transparent 0%,rgba(5,7,11,.78) 100%);}
  .kora-hero-content{padding:28px 18px 24px;border-left:0;border-top:1px solid rgba(229,201,143,.15);text-align:center;align-items:center;}
  .kora-hero-content h4{font-size:22px;}
  .kora-hero-content h1{font-size:48px;}
  .kora-hero-content h2{font-size:22px;}
  .kora-hero-content p{font-size:14px;margin-bottom:20px;}
  .kora-hero-features{width:100%;grid-template-columns:repeat(2,1fr);gap:12px;border:0;padding:0;margin-bottom:22px;}
  .kora-hero-features div{border:1px solid rgba(199,168,107,.22);border-radius:14px;min-height:86px;background:rgba(255,255,255,.025);}
  .kora-hero-buttons{width:100%;grid-template-columns:1fr;gap:12px;}
  .hero-btn{min-height:54px;font-size:16px;}
}

@media(max-width:560px){
  .kora-hero-visual{min-height:250px;}
  .kora-hero-visual img{min-height:250px;}
  .kora-hero-content h1{font-size:42px;}
  .kora-hero-content h2{font-size:19px;}
  .kora-feature-icon{width:38px;height:38px;font-size:20px;}
}

@media(max-width:390px){
  .kora-hero-visual{min-height:220px;}
  .kora-hero-visual img{min-height:220px;}
  .kora-hero-content h1{font-size:36px;}
}


/* ===============================
   HERO BUTTON LINKS — FINAL TUNING
   Active external buttons, desktop + mobile safe
   =============================== */
.kora-hero-buttons .hero-btn{
  cursor:pointer !important;
  user-select:none !important;
}

.kora-hero-buttons .hero-btn:focus-visible{
  outline:2px solid rgba(255,242,168,.9) !important;
  outline-offset:3px !important;
}

.kora-hero-buttons .hero-btn-gold{
  color:#101010 !important;
  background:linear-gradient(135deg,#FFF2A8 0%,#F2C85D 36%,#C99628 100%) !important;
  border:1px solid #F8D978 !important;
  box-shadow:
    0 12px 34px rgba(229,193,100,.46),
    0 0 32px rgba(229,193,100,.32),
    inset 0 1px 0 rgba(255,255,255,.65) !important;
}

.kora-hero-buttons .hero-btn-dark{
  color:#fff !important;
  background:rgba(3,5,10,.50) !important;
  border:1px solid rgba(229,201,143,.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 8px 24px rgba(0,0,0,.30) !important;
}

.kora-hero-buttons .hero-btn:hover{
  transform:translateY(-2px) translateZ(0) !important;
}

.kora-hero-buttons .hero-btn-gold:hover{
  filter:saturate(1.1) brightness(1.05) !important;
}

.kora-hero-buttons .hero-btn-dark:hover{
  background:rgba(199,168,107,.16) !important;
  border-color:#E5C98F !important;
  color:#E5C98F !important;
}


/* ===============================
   WORLD CUP ANALYSIS BLOCK — FINAL
   premium stadium article card
   =============================== */
.kora-worldcup-analysis-box{
  padding:0 !important;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022)) !important;
  border:1px solid rgba(229,201,143,.42) !important;
  box-shadow:0 22px 65px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.kora-worldcup-analysis-box:before{
  background:radial-gradient(circle at 50% 0%,rgba(229,201,143,.18),transparent 58%) !important;
}

.kora-worldcup-banner{
  position:relative;
  z-index:2;
  min-height:245px;
  overflow:hidden;
  border-radius:20px 20px 0 0;
  background:#050505;
  border-bottom:1px solid rgba(229,201,143,.28);
}

.kora-worldcup-banner img{
  width:100%;
  height:100%;
  min-height:245px;
  display:block;
  object-fit:cover;
  object-position:center center;
  filter:saturate(1.08) contrast(1.06) brightness(.82);
  transform:scale(1.02);
}

.kora-worldcup-banner:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.06) 0%,rgba(0,0,0,.46) 48%,rgba(0,0,0,.92) 100%),
    radial-gradient(circle at 80% 20%,rgba(229,193,100,.26),transparent 34%);
  pointer-events:none;
}

.kora-worldcup-banner-overlay{
  position:absolute;
  z-index:3;
  left:0;
  right:0;
  bottom:0;
  padding:26px 28px;
  text-align:right;
  direction:rtl;
}

.kora-worldcup-banner-overlay span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  color:#FFD56B;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.kora-worldcup-banner-overlay span:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#FFD56B;
  box-shadow:0 0 16px rgba(255,213,107,.8);
}

.kora-worldcup-banner-overlay h2{
  margin:0 0 8px;
  color:#fff;
  font-size:32px;
  line-height:1.16;
  font-weight:1000;
  text-shadow:0 8px 26px rgba(0,0,0,.6),0 0 18px rgba(255,255,255,.13);
}

.kora-worldcup-banner-overlay p{
  max-width:720px;
  margin:0;
  color:rgba(255,255,255,.80);
  font-size:15px;
  line-height:1.7;
  font-weight:800;
}

.kora-worldcup-content{
  position:relative;
  z-index:2;
  padding:26px 28px 30px;
}

.kora-worldcup-kicker{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  color:#080808;
  background:linear-gradient(135deg,#FFF2A8,#F2C85D,#C99628);
  font-size:11px;
  line-height:1;
  font-weight:1000;
  box-shadow:0 0 26px rgba(229,193,100,.26);
  margin-bottom:14px;
}

.kora-worldcup-content h3{
  margin:0 0 14px;
  color:#fff;
  font-size:27px;
  line-height:1.25;
  font-weight:1000;
  text-shadow:0 0 18px rgba(255,255,255,.13);
}

.kora-worldcup-content p{
  margin:0 0 16px;
  color:rgba(255,255,255,.78);
  font-size:15px;
  line-height:1.85;
  font-weight:750;
}

.kora-worldcup-picks{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin:20px 0;
}

.kora-worldcup-picks div{
  padding:14px 16px;
  border-radius:14px;
  background:linear-gradient(90deg,rgba(199,168,107,.12),rgba(255,255,255,.025));
  border:1px solid rgba(229,201,143,.25);
}

.kora-worldcup-picks strong{
  display:block;
  color:#fff;
  font-size:15px;
  line-height:1.3;
  font-weight:1000;
  margin-bottom:5px;
}

.kora-worldcup-picks span{
  display:block;
  color:#E5C98F;
  font-size:13px;
  line-height:1.5;
  font-weight:850;
}

.kora-worldcup-article{
  max-height:310px;
  overflow:auto;
  padding:18px 18px 6px;
  margin:0 0 20px;
  border-radius:16px;
  background:rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.08);
  scrollbar-width:thin;
  scrollbar-color:rgba(229,201,143,.7) rgba(255,255,255,.08);
}

.kora-worldcup-article::-webkit-scrollbar{width:7px;}
.kora-worldcup-article::-webkit-scrollbar-track{background:rgba(255,255,255,.08);border-radius:999px;}
.kora-worldcup-article::-webkit-scrollbar-thumb{background:rgba(229,201,143,.72);border-radius:999px;}

.kora-worldcup-article h4{
  margin:0 0 8px;
  color:#FFD56B;
  font-size:16px;
  line-height:1.4;
  font-weight:1000;
}

.kora-worldcup-article p{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.85;
  color:rgba(255,255,255,.75);
}

.kora-worldcup-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  width:100%;
  border-radius:14px;
  text-decoration:none;
  color:#080808;
  background:linear-gradient(135deg,#FFF2A8 0%,#F2C85D 38%,#C99628 100%);
  border:1px solid rgba(255,242,168,.82);
  font-size:17px;
  line-height:1;
  font-weight:1000;
  box-shadow:0 14px 42px rgba(229,193,100,.42),0 0 34px rgba(229,193,100,.28),inset 0 1px 0 rgba(255,255,255,.62);
}

.kora-worldcup-cta:hover{
  transform:translateY(-2px);
  filter:saturate(1.08) brightness(1.05);
  box-shadow:0 18px 54px rgba(229,193,100,.56),0 0 46px rgba(229,193,100,.42),inset 0 1px 0 rgba(255,255,255,.75);
}

@media(max-width:1200px){
  .kora-worldcup-banner{min-height:220px;}
  .kora-worldcup-banner img{min-height:220px;}
  .kora-worldcup-banner-overlay h2{font-size:28px;}
}

@media(max-width:900px){
  .kora-worldcup-banner{min-height:240px;}
  .kora-worldcup-banner img{min-height:240px;}
  .kora-worldcup-banner-overlay{padding:22px 20px;}
  .kora-worldcup-banner-overlay h2{font-size:26px;}
  .kora-worldcup-content{padding:22px 18px 24px;}
  .kora-worldcup-content h3{font-size:24px;}
  .kora-worldcup-article{max-height:420px;}
}

@media(max-width:560px){
  .kora-worldcup-banner{min-height:210px;}
  .kora-worldcup-banner img{min-height:210px;}
  .kora-worldcup-banner-overlay h2{font-size:22px;}
  .kora-worldcup-banner-overlay p{font-size:13px;}
  .kora-worldcup-content h3{font-size:21px;}
  .kora-worldcup-content p{font-size:14px;}
  .kora-worldcup-article{max-height:460px;padding:16px 14px 4px;}
}
.kora-content-row{
    align-items:start !important;
}

.kora-prediction-box,
.korarab-prediction-card,
.prediction-card{
    height:auto !important;
    min-height:0 !important;
    align-self:start !important;
}


/* KORARAB 7.3.3 — Premium compact header, Telegram CTA and language dropdown */
.kora-header{backdrop-filter:blur(12px);background:rgba(5,5,5,.94)!important;}
.kora-header-inner{direction:ltr!important;}
.kora-nav{gap:34px!important;flex:1 1 auto!important;}
.kora-nav a{font-size:15px!important;}
.kora-actions{gap:14px!important;}
.kora-search{display:none!important;}
.kora-telegram-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  min-width:56px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--kora-gold),var(--kora-gold-light));
  color:#111!important;
  text-decoration:none!important;
  box-shadow:0 10px 32px rgba(199,168,107,.32);
  border:1px solid rgba(255,255,255,.24);
}
.kora-telegram-button svg{width:27px;height:27px;display:block;filter:drop-shadow(0 3px 8px rgba(0,0,0,.18));}
.kora-telegram-button:hover{transform:translateY(-2px);box-shadow:0 16px 42px rgba(199,168,107,.42);}
.kora-language-switcher{position:relative;z-index:1002;direction:rtl;}
.kora-lang-trigger{
  border:0;
  background:transparent;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  cursor:pointer;
  padding:10px 4px;
  font-family:inherit;
  white-space:nowrap;
}
.kora-lang-trigger:hover{color:var(--kora-gold-light);}
.kora-lang-globe{font-size:18px;line-height:1;}
.kora-lang-caret{font-size:13px;opacity:.86;}
.kora-lang-menu{
  position:absolute;
  top:calc(100% + 12px);
  right:0;
  width:190px;
  display:none;
  padding:8px;
  margin:0;
  list-style:none;
  border:1px solid rgba(199,168,107,.36);
  border-radius:16px;
  background:linear-gradient(180deg,rgba(12,18,32,.98),rgba(5,8,16,.98));
  box-shadow:0 24px 70px rgba(0,0,0,.45);
}
.kora-language-switcher.is-open .kora-lang-menu{display:block;}
.kora-lang-menu button{
  width:100%;
  border:0;
  border-radius:11px;
  background:transparent;
  color:#fff;
  padding:11px 12px;
  text-align:right;
  font-weight:900;
  cursor:pointer;
  font-family:inherit;
}
.kora-lang-menu button:hover,
.kora-lang-menu button.is-active{background:rgba(199,168,107,.16);color:var(--kora-gold-light);}
#google_translate_element,.goog-te-banner-frame,.skiptranslate{display:none!important;}
body{top:0!important;}
html.translated-ltr body,html.translated-rtl body{top:0!important;}
@media(max-width:900px){
  .kora-actions{display:flex!important;gap:8px!important;}
  .kora-telegram-button{width:44px;min-width:44px;height:40px;border-radius:12px;}
  .kora-telegram-button svg{width:22px;height:22px;}
  .kora-lang-current{display:none;}
  .kora-lang-trigger{padding:8px 2px;}
  .kora-nav{max-width:calc(100% - 168px)!important;gap:18px!important;}
  .kora-nav a{font-size:13px!important;}
  .kora-lang-menu{right:auto;left:0;width:168px;}
}
@media(max-width:560px){
  .kora-nav{max-width:calc(100% - 146px)!important;gap:14px!important;}
  .kora-nav a{font-size:12px!important;}
}


/* KORARAB 7.3.4 — Arabic UI normalization */
body.korarab-arabic-ui{direction:rtl;}
body.korarab-arabic-ui .korarab-section-head,
body.korarab-arabic-ui .korarab-highlight-player,
body.korarab-arabic-ui .korarab-news-section,
body.korarab-arabic-ui .korarab-players-section,
body.korarab-arabic-ui .korarab-standings-section{
  direction:rtl;
}
body.korarab-arabic-ui .kora-lang-current{font-weight:950;}
body.korarab-arabic-ui .korarab-section-head small,
body.korarab-arabic-ui .korarab-empty{line-height:1.7;}


/* KORARAB 7.3.5 — Mobile language switcher viewport fix */
@media (max-width: 900px){
  .kora-header,
  .kora-header-inner{
    overflow:visible!important;
  }
  .kora-header{
    z-index:99999!important;
  }
  .kora-header-inner{
    max-width:100%!important;
    width:100%!important;
    box-sizing:border-box!important;
    padding-left:10px!important;
    padding-right:10px!important;
    gap:8px!important;
  }
  .kora-logo{
    flex:0 0 auto!important;
    min-width:0!important;
  }
  .kora-logo img{
    max-width:132px!important;
    height:40px!important;
    object-fit:contain!important;
  }
  .kora-actions{
    display:flex!important;
    flex:0 0 auto!important;
    align-items:center!important;
    gap:7px!important;
    position:relative!important;
    z-index:100050!important;
  }
  .kora-language-switcher{
    position:static!important;
    z-index:100060!important;
  }
  .kora-lang-trigger{
    width:38px!important;
    min-width:38px!important;
    height:40px!important;
    padding:0!important;
    border-radius:12px!important;
    justify-content:center!important;
    gap:3px!important;
    background:rgba(255,255,255,.03)!important;
    border:1px solid rgba(199,168,107,.20)!important;
  }
  .kora-lang-current{
    display:none!important;
  }
  .kora-lang-globe{
    font-size:17px!important;
    line-height:1!important;
  }
  .kora-lang-caret{
    font-size:10px!important;
    line-height:1!important;
  }
  .kora-lang-menu{
    position:fixed!important;
    top:76px!important;
    left:10px!important;
    right:10px!important;
    width:auto!important;
    max-width:none!important;
    min-width:0!important;
    box-sizing:border-box!important;
    padding:10px!important;
    margin:0!important;
    display:none!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:8px!important;
    direction:rtl!important;
    text-align:center!important;
    border-radius:18px!important;
    border:1px solid rgba(199,168,107,.45)!important;
    background:linear-gradient(180deg,rgba(11,17,31,.98),rgba(4,7,14,.98))!important;
    box-shadow:0 24px 70px rgba(0,0,0,.62)!important;
    z-index:100070!important;
    backdrop-filter:blur(14px)!important;
  }
  .kora-language-switcher.is-open .kora-lang-menu{
    display:grid!important;
  }
  .kora-lang-menu li{
    display:block!important;
    min-width:0!important;
    margin:0!important;
    padding:0!important;
  }
  .kora-lang-menu button{
    width:100%!important;
    min-height:46px!important;
    box-sizing:border-box!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:11px 10px!important;
    border-radius:13px!important;
    text-align:center!important;
    white-space:nowrap!important;
    font-size:15px!important;
    line-height:1.1!important;
    background:rgba(255,255,255,.035)!important;
    border:1px solid rgba(255,255,255,.08)!important;
  }
  .kora-lang-menu button:hover,
  .kora-lang-menu button.is-active{
    background:rgba(199,168,107,.18)!important;
    border-color:rgba(199,168,107,.38)!important;
    color:var(--kora-gold-light)!important;
  }
  .kora-nav{
    flex:1 1 auto!important;
    min-width:0!important;
    max-width:none!important;
  }
}
@media (max-width: 430px){
  .kora-header-inner{
    padding-left:8px!important;
    padding-right:8px!important;
    gap:6px!important;
  }
  .kora-logo img{
    max-width:122px!important;
    height:38px!important;
  }
  .kora-telegram-button{
    width:42px!important;
    min-width:42px!important;
    height:40px!important;
  }
  .kora-lang-trigger{
    width:34px!important;
    min-width:34px!important;
  }
  .kora-nav{
    gap:12px!important;
  }
  .kora-nav a{
    font-size:12px!important;
  }
  .kora-lang-menu{
    top:74px!important;
    left:8px!important;
    right:8px!important;
    grid-template-columns:1fr 1fr!important;
  }
  .kora-lang-menu button{
    font-size:14px!important;
    min-height:44px!important;
  }
}
body.admin-bar .kora-lang-menu{
  top:118px!important;
}
@media (min-width: 901px){
  body.admin-bar .kora-lang-menu{
    top:calc(100% + 12px)!important;
  }
}
