:root{
  --bg:#0b0f17;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#e8eefc;
  --muted:rgba(232,238,252,.72);
  --border:rgba(255,255,255,.14);
  --accent1:#ff8a00;
  --accent2:#ffd000;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.bg{
  position:fixed; inset:0; z-index:-2;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255,138,0,.22), transparent 55%),
    radial-gradient(1000px 520px at 80% 30%, rgba(255,208,0,.16), transparent 60%),
    radial-gradient(900px 520px at 40% 90%, rgba(80,160,255,.10), transparent 60%),
    linear-gradient(180deg, #070a11 0%, #0b0f17 55%, #070a11 100%);
}
#bgCanvas{
  position:fixed; inset:0; width:100%; height:100%; z-index:-1;
  opacity:.55; mix-blend-mode: screen;
}

.container{width:min(1140px, calc(100% - 40px)); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,15,23,.55);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:42px; height:42px; object-fit:contain; filter: drop-shadow(0 10px 24px rgba(0,0,0,.45))}
.brand .name{font-weight:750; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted); margin-top:2px}

.links{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.links a{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
  transition: all .2s ease;
}
.links a:hover{color:var(--text); background: rgba(255,255,255,.06)}
.links a.active{color:#111; background: linear-gradient(90deg, var(--accent1), var(--accent2))}
.lang{display:flex; gap:8px; align-items:center}
.lang button{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
  transition: all .2s ease;
  font-size:13px;
}
.lang button.active{color:#111; border-color: transparent; background: linear-gradient(90deg,var(--accent1),var(--accent2))}
.lang button:hover{color:var(--text); background: rgba(255,255,255,.07)}

.hero{padding:56px 0 28px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
@media (max-width: 960px){
  .heroGrid{grid-template-columns:1fr}
  .links{display:none}
}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  border:1px solid rgba(255,138,0,.25);
  background: rgba(255,138,0,.08);
  padding:10px 14px;
  border-radius:999px;
  color: #ffdcae;
  font-size:13px;
}
.h1{
  margin:18px 0 12px;
  font-size: clamp(36px, 4vw, 56px);
  line-height:1.03;
  letter-spacing:-.02em;
  background: linear-gradient(90deg, #ffd7a1 0%, #ffe87a 45%, #ffb55e 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.sub{color:var(--muted); font-size:16px; line-height:1.6; max-width:70ch}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:650;
  cursor:pointer;
  transition: all .22s ease;
}
.btn.primary{
  border:0;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color:#111;
}
.btn:hover{transform: translateY(-2px); box-shadow: var(--shadow)}
.heroCard{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:24px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.heroCard .imgWrap{height:100%; min-height:300px; background: #0a0d14}
.heroCard img{width:100%; height:100%; object-fit:cover; opacity:.95}

.section{padding:34px 0}
.sectionTitle{
  font-size:22px; margin:0 0 12px;
  letter-spacing:-.01em;
}
.sectionLead{color:var(--muted); margin:0 0 16px; line-height:1.6}
.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:14px}
@media (max-width: 960px){.grid3{grid-template-columns:1fr}.grid2{grid-template-columns:1fr}}

.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius:20px;
  padding:16px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover{transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,255,255,.24)}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.mediaCard{padding:0; overflow:hidden}
.mediaCard .media{height:180px; background:#0a0d14}
.mediaCard .media img{width:100%; height:100%; object-fit:cover}
.mediaCard .body{padding:14px}

.footer{
  margin-top:34px;
  border-top:1px solid var(--border);
  background: rgba(11,15,23,.55);
  backdrop-filter: blur(10px);
}
.footerInner{padding:22px 0; display:flex; gap:16px; justify-content:space-between; flex-wrap:wrap}
.footer small{color:var(--muted)}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.fadeUp{opacity:0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease}
.fadeUp.show{opacity:1; transform: translateY(0)}

.cookie{
  position:fixed; left:18px; right:18px; bottom:18px;
  z-index:200;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(9,12,18,.78);
  backdrop-filter: blur(12px);
  border-radius:18px;
  padding:14px;
  box-shadow: var(--shadow);
  display:none;
}
.cookie.show{display:block; animation: pop .35s ease}
@keyframes pop{from{opacity:0; transform: translateY(10px)}to{opacity:1; transform: translateY(0)}}
.cookieRow{display:flex; gap:12px; justify-content:space-between; align-items:center; flex-wrap:wrap}
.cookie p{margin:0; color:var(--muted); line-height:1.5}
.cookie .actions{display:flex; gap:10px; flex-wrap:wrap}


/* sticky-footer-fix */
body{min-height:100vh; display:flex; flex-direction:column;}
main{flex:1;}
.footer{margin-top:auto;}
