:root{
  --bg0:#040914;
  --bg1:#061225;
  --panel: rgba(10, 22, 44, .62);
  --panel2: rgba(10, 22, 44, .38);
  --stroke: rgba(82, 168, 255, .18);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --neon:#23b6ff;
  --neon2:#2b5cff;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --r: 18px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}

/* =========================
   RIOT BACKGROUND (PATCH)
   ========================= */
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, #05070d, #030611 65%, #02040a);
  overflow-x:hidden;
  position:relative;
}

/* Glow layer */
body::before{
  content:"";
  position:fixed;
  inset:-35%;
  z-index:-2;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(35,182,255,.22), transparent 60%),
    radial-gradient(900px 650px at 20% 10%, rgba(43,92,255,.16), transparent 62%),
    radial-gradient(900px 650px at 80% 18%, rgba(35,182,255,.12), transparent 62%),
    radial-gradient(900px 800px at 50% 120%, rgba(35,182,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(4,9,20,0), rgba(3,6,17,1));
  filter: blur(18px) saturate(118%);
  opacity: 1;
  transform: translate3d(0,0,0);
  animation: riotGlow 12s ease-in-out infinite alternate;
  pointer-events:none;
}

/* Texture layer */
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(1200px 800px at 50% 38%, transparent 34%, rgba(0,0,0,.70) 100%),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.020) 1px, transparent 1px),
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,.020) 0px,
      rgba(255,255,255,.020) 1px,
      transparent 4px,
      transparent 8px
    ),
    repeating-radial-gradient(circle at 15% 25%,
      rgba(255,255,255,.035) 0px,
      rgba(255,255,255,.035) 1px,
      transparent 2px,
      transparent 7px
    );
  background-size:
    auto,
    36px 36px,
    36px 36px,
    auto,
    auto;
  mix-blend-mode: overlay;
  opacity: .20;
  pointer-events:none;
}

@keyframes riotGlow{
  0%{ transform: translate3d(-1.5%, -1%, 0) scale(1.00); }
  100%{ transform: translate3d(1.5%, 1%, 0) scale(1.03); }
}

/* Scrollbar */
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:#050a16}
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(35,182,255,.9), rgba(43,92,255,.9));
  border-radius: 999px;
  border: 2px solid #050a16;
}
*{scrollbar-width: thin; scrollbar-color: rgba(43,92,255,.9) #050a16;}

/* Layout */
.container{
  width:min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   NAVBAR
   - Oval nav kalsın
   - Masaüstünde boydan boya siyah band yok
   ========================= */
/* ===== TOPBAR FIX (sticky + masaüstü band kaldır) ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;

  padding: 14px 0 10px;

  /* Mobilde hafif band kalsın diye default */
  background:
    radial-gradient(900px 180px at 50% 0%, rgba(35,182,255,.16), transparent 70%),
    linear-gradient(180deg, rgba(3,7,18,.86), rgba(3,7,18,.28));

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(82,168,255,.12);
}

/* Masaüstünde “boydan boya siyahlık” istemiyorsun:
   Sadece kavisli navShell görünsün */
@media (min-width: 641px){
  .topbar{
    background: transparent !important;
    border-bottom: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}


.navShell{
  position: relative;
  border: 1px solid rgba(82,168,255,.14);
  background: rgba(8,16,32,.35);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  overflow: hidden;
}
.navShell::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(420px 140px at 50% 0%, rgba(35,182,255,.20), transparent 60%),
    radial-gradient(240px 120px at 10% 60%, rgba(43,92,255,.14), transparent 60%),
    radial-gradient(240px 120px at 90% 60%, rgba(35,182,255,.12), transparent 60%);
  pointer-events:none;
}
.navRow{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
}

/* Left/Right groups */
.navGroup{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 240px;
}
.navGroup.right{justify-content:flex-end}

/* Center brand */
.brand{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  display:grid;
  place-items:center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-decoration:none;
}

/* eski logo alanları kapalı */
.brandLogo{display:none}
.brandLogo img{display:none}
.brandTitle{display:none !important;}

/* Nav links */
.navLink{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(82,168,255,.12);
  background: rgba(6,14,30,.28);
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.navLink:hover{
  transform: translateY(-1px);
  border-color: rgba(35,182,255,.30);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.navLink.active{
  border-color: rgba(35,182,255,.45);
  background: linear-gradient(135deg, rgba(35,182,255,.22), rgba(43,92,255,.18));
}

/* Brand text effect */
.brandText{
  text-align:center;
  text-transform: uppercase;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 2.8px;
  font-size: 22px;
  background: linear-gradient(180deg, #7fe0ff, #2b5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(35,182,255,.60),
    0 0 24px rgba(35,182,255,.35),
    0 0 46px rgba(43,92,255,.25);
  animation: voxGlow 2.6s ease-in-out infinite;
}
@keyframes voxGlow{
  0%{filter:brightness(1)}
  50%{filter:brightness(1.28)}
  100%{filter:brightness(1)}
}

/* =========================
   HERO (kalsın; sayfalarda varsa bozulmasın)
   ========================= */
.hero{
  margin: 18px auto 0;
  padding: 56px 28px;
  border-radius: calc(var(--r) + 6px);
  border: 1px solid rgba(82,168,255,.18);
  background:
    radial-gradient(800px 280px at 15% 0%, rgba(35,182,255,.14), transparent 60%),
    radial-gradient(700px 260px at 85% 0%, rgba(43,92,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(10,22,44,.62), rgba(10,22,44,.35));
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  text-align:center;
}
.hero::before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(520px 220px at 50% 0%, rgba(35,182,255,.18), transparent 62%);
  pointer-events:none;
}
.hero h1{
  margin:0;
  font-size: clamp(40px, 6vw, 74px);
  letter-spacing: 2.2px;
  font-weight: 950;
  line-height: 1.04;
  text-transform: uppercase;
  background: linear-gradient(180deg, #8be4ff, #2b5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 18px rgba(35,182,255,.32),
    0 0 40px rgba(43,92,255,.20);
}
.hero h1 span{
  display:block;
  margin-top: 8px;
  font-size: .62em;
  letter-spacing: 5px;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}
.hero p{
  margin: 18px auto 0;
  color: var(--muted);
  max-width: 62ch;
  font-weight: 650;
  line-height: 1.5;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top: 22px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(82,168,255,.16);
  background: rgba(8,16,32,.35);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .2px;
  text-decoration:none;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(35,182,255,.95), rgba(43,92,255,.95));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(35,182,255,.15), 0 18px 50px rgba(43,92,255,.12);
}
.btn:hover{transform: translateY(-1px); border-color: rgba(35,182,255,.35)}

/* =========================
   SECTIONS / GRID / CARDS
   ========================= */
.section{
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--r);
  border: 1px solid rgba(82,168,255,.14);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}
.sectionHead h2{margin:0;font-size:18px;font-weight:950;letter-spacing:.4px}
.sectionHead .hint{color:var(--muted);font-size:13px;font-weight:700}

.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:14px}

.card{
  grid-column: span 6;
  border-radius: 16px;
  border: 1px solid rgba(82,168,255,.14);
  background: rgba(6, 14, 30, .45);
  overflow:hidden;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover{transform: translateY(-2px); border-color: rgba(35,182,255,.30); box-shadow: 0 22px 60px rgba(0,0,0,.45)}

.thumb{
  aspect-ratio: 16/9;
  background:
    radial-gradient(14px 14px at 20% 20%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, rgba(35,182,255,.25), rgba(43,92,255,.18)),
    linear-gradient(180deg, rgba(10,22,44,.2), rgba(10,22,44,.55));
}

.meta{padding: 12px 12px 13px}
.title{font-weight:950;margin:0 0 6px;letter-spacing:.3px}
.sub{margin:0;color:var(--muted);font-size:13px;font-weight:700;line-height:1.35}

.video{
  grid-column: span 6;
  border-radius: 16px;
  border: 1px solid rgba(82,168,255,.14);
  background: rgba(6, 14, 30, .45);
  overflow:hidden;
}
.video iframe{width:100%; aspect-ratio:16/9; border:0; display:block}

/* =========================
   GALLERY + LIGHTBOX
   ========================= */
.gallery{display:grid; grid-template-columns: repeat(12, 1fr); gap: 12px}

.shot{
  grid-column: span 4;
  border-radius: 16px;
  border: 1px solid rgba(82,168,255,.14);
  overflow:hidden;
  background: rgba(6, 14, 30, .45);
  position:relative;
  aspect-ratio: 1/1;
}
.shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.02);
  transform: scale(1.01);
}

.wm{
  position:absolute; left:10px; bottom:10px;
  font-weight:950; font-size: 12px; letter-spacing:.8px;
  color: rgba(255,255,255,.90);
  text-shadow: 0 10px 25px rgba(0,0,0,.55);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  padding: 7px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.gallery.galleryPro{ gap:12px; }

.shot.shotLink{
  text-decoration:none;
  cursor: zoom-in;
  display:block;
  position:relative;
}

.shotMeta{
  position:absolute;
  left:10px;
  top:10px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.90);
  font-weight:900;
  letter-spacing:.2px;
}
.shotMeta span{ opacity:.70; font-weight:800; }

.shot.shotLink::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(520px 280px at 50% 0%, rgba(35,182,255,.18), transparent 55%);
  opacity:0;
  transition: opacity .22s ease;
  pointer-events:none;
}
.shot.shotLink:hover::after{ opacity:1; }
.shot.shotLink:hover img{ transform: scale(1.04); }
.shot img{ transition: transform .35s ease; }

.infoBox{
  margin-top:16px;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(82,168,255,.14);
  background: rgba(6,14,30,.40);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.infoTop{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  font-weight:950;
  letter-spacing:.2px;
}
.infoTop i{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:10px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(240,250,255,.92);
}
.infoBox p{
  margin:0;
  color: rgba(235,245,255,.78);
  font-size: 13.6px;
  line-height:1.55;
  font-weight:650;
}

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  display:none;
  place-items:center;
  z-index:9999;
  padding: 22px;
}
.lightbox.open{ display:grid; }
.lbImg{
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}
.lbCap{
  margin-top:12px;
  color: rgba(255,255,255,.78);
  font-weight:700;
  font-size: 13px;
  text-align:center;
}
.lbClose{
  position:fixed;
  top:16px;
  right:16px;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(10,20,40,.55);
  color: rgba(255,255,255,.92);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.2s;
}
.lbClose:hover{
  transform: translateY(-2px);
  border-color: rgba(35,182,255,.40);
  box-shadow: 0 0 16px rgba(35,182,255,.25);
}

/* =========================
   LIVE: meta + go button + info
   ========================= */
.liveMeta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}

.goBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  font-weight:900;
  font-size:13px;
  text-decoration:none;
  letter-spacing:.3px;
  color:white;
  background: linear-gradient(135deg,#23b6ff,#2b5cff);
  position:relative;
  overflow:hidden;
  transition:.25s;
}

.goBtn::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35), transparent 70%);
  transform: translateX(-120%);
  transition:.5s;
}
.goBtn:hover::before{ transform: translateX(120%); }
.goBtn:hover{
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(35,182,255,.45);
}
.goBtn i{ font-size:12px; }

.liveInfo{
  margin-top:18px;
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(82,168,255,.14);
  background: rgba(6,14,30,.40);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.liveInfoTop{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  font-weight:900;
  letter-spacing:.2px;
}
.liveInfoTop i{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(240,250,255,.92);
}
.liveInfo p{
  margin:0;
  color: rgba(235,245,255,.78);
  font-size:13.6px;
  line-height:1.55;
  font-weight:650;
}

/* =========================
   FOOTER PRO
   ========================= */
.footerPro{
  margin-top:70px;
  padding:55px 20px 40px;
  text-align:center;
  position:relative;
  background: transparent;
  border-top: 1px solid rgba(82,168,255,.10);
}
.footerPro::before{
  content:"";
  position:absolute;
  top:-1px; left:0; right:0;
  height:120px;
  background:
    linear-gradient(180deg, rgba(3,6,14,0), rgba(3,6,14,.85)),
    radial-gradient(900px 220px at 50% 0%, rgba(35,182,255,.12), transparent 65%);
  pointer-events:none;
  z-index:-1;
}
.footerPro::after{
  content:"";
  position:absolute;
  top:0; left:50%;
  transform:translateX(-50%);
  width:520px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(35,182,255,.55), transparent);
  opacity:.65;
  pointer-events:none;
}
.footerBrand{
  font-size:22px;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
}
.footerSlogan{
  margin-top:10px;
  font-size:14px;
  color:rgba(255,255,255,.55);
  letter-spacing:.4px;
}
.footerSocial{
  margin:26px 0 22px;
  display:flex;
  justify-content:center;
  gap:18px;
}
.footerSocial a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: rgba(10,20,40,.35);
  border: 1px solid rgba(82,168,255,.12);
  color: rgba(200,230,255,.85);
  font-size:18px;
  transition:.25s ease;
}
.footerSocial a:hover{
  transform:translateY(-4px);
  color:white;
  border-color: rgba(35,182,255,.40);
  box-shadow: 0 0 16px rgba(35,182,255,.25);
}
.footerBottom{
  font-size:12.5px;
  color:rgba(255,255,255,.42);
  line-height:1.7;
}

/* Bottom nav (mobile app feel) */
.bottomNav{
  display:none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 10px 12px 14px;
  background: linear-gradient(180deg, rgba(3,7,18,0), rgba(3,7,18,.75) 40%, rgba(3,7,18,.90));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.bottomNav .bar{
  width:min(var(--max), calc(100% - 16px));
  margin:0 auto;
  border-radius: 22px;
  border: 1px solid rgba(82,168,255,.16);
  background: rgba(8,16,32,.55);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  display:flex;
  gap: 10px;
  padding: 10px;
}
.bBtn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(82,168,255,.12);
  background: rgba(6,14,30,.35);
  color: rgba(255,255,255,.88);
  text-decoration:none;
  font-weight: 950;
  font-size: 13px;
  letter-spacing:.2px;
  flex-direction:column;
}
.bBtn.active{
  background: linear-gradient(135deg, rgba(35,182,255,.25), rgba(43,92,255,.18));
  border-color: rgba(35,182,255,.38);
}
.bBtn i{
  font-size:18px;
  color:#23b6ff;
  text-shadow:0 0 12px rgba(35,182,255,.6);
  display:block;
}
.bBtn span{
  font-size:12px;
  margin-top:4px;
}

/* Responsive */
@media (max-width: 980px){
  .video,.card{grid-column: span 12;}
  .shot{grid-column: span 6;}
  .navGroup{min-width: 120px}
}
@media (max-width: 640px){
  .topbar{padding: 10px 0 8px}
  .navGroup{display:none}
  .brand{position: static; transform:none; margin: 0 auto}
  .navRow{justify-content:center}
  .bottomNav{display:block}
  .hero{padding: 46px 18px}
  .hero h1{letter-spacing: 1.6px}
  .hero h1 span{letter-spacing: 4px}
}

/* ABOUT PRO */
.aboutPro .aboutGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:18px;
}
.aboutPro .aboutCard{
  padding:16px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(16,92,140,.35), rgba(7,20,40,.35));
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  position:relative;
  overflow:hidden;
  min-height: 180px;
}
.aboutPro .aboutCard::before{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle, rgba(0,175,255,.18), transparent 55%);
  transform: rotate(12deg);
  pointer-events:none;
}
.aboutPro .cardTop{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(0,175,255,.16), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.08);
}
.aboutPro .cardTop i{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:10px;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(240,250,255,.92);
  font-size:16px;
}
.aboutPro .cardTop span{
  font-weight:800;
  letter-spacing:.2px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
}
.aboutPro .meta{ margin-top:12px; }
.aboutPro .sub{
  margin:0;
  line-height:1.55;
  color: rgba(235,245,255,.78);
  font-size: 13.6px;
}
.aboutPro b{ color: rgba(255,255,255,.92); }

@media (max-width: 920px){
  .aboutPro .aboutGrid{ grid-template-columns: 1fr; }
}

/* Mini grid option (kalsın) */
.grid.gridMini{ gap: 10px; }
.grid.gridMini > .video.videoMini,
.grid.gridMini > .card.cardMini{
  grid-column: span 4;
  border-radius: 14px;
  border: 1px solid rgba(82,168,255,.14);
  background: rgba(6, 14, 30, .40);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.video.videoMini iframe{
  width:100%;
  aspect-ratio: 16/10;
  border:0;
  display:block;
}
.thumb.thumbMini{
  aspect-ratio: 16/10;
  background:
    radial-gradient(12px 12px at 20% 20%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, rgba(35,182,255,.18), rgba(43,92,255,.12)),
    linear-gradient(180deg, rgba(10,22,44,.16), rgba(10,22,44,.50));
}
.meta.metaMini{ padding: 9px 10px 10px; }
.meta.metaMini .title{
  font-size: 12.5px;
  margin: 0 0 4px;
  letter-spacing: .25px;
}
.meta.metaMini .sub{
  font-size: 11.5px;
  margin: 0;
  color: rgba(255,255,255,.66);
  line-height: 1.25;
}
.miniTitle{
  margin: 6px 0 10px;
  font-weight: 950;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.78);
}
.miniTitle::after{
  content:"";
  height:1px;
  flex:1;
  background: linear-gradient(90deg, rgba(35,182,255,.22), rgba(43,92,255,.10), transparent);
}
@media (max-width: 980px){
  .grid.gridMini > .video.videoMini,
  .grid.gridMini > .card.cardMini{ grid-column: span 6; }
}
@media (max-width: 640px){
  .grid.gridMini > .video.videoMini,
  .grid.gridMini > .card.cardMini{ grid-column: span 12; }
}
/* ===== STICKY GARANTİ FIX ===== */
/* Sticky, parent’ta overflow/transform varsa bozulur.
   Bu patch yapıyı bozmadan engeller. */
html, body{ overflow-x: hidden; }
body{ overflow-y: auto; }

main, .container, header, .topbar{
  overflow: visible !important;
  transform: none !important;
  filter: none !important;
}
/* ===== PRO PROTECTION LAYER ===== */
:root { --protectBlur: 10px; }

html.protect-lock body{
  filter: blur(var(--protectBlur));
  pointer-events: none;
  user-select: none;
}

/* Pro overlay */
.protectOverlay{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(900px 600px at 50% 30%, rgba(35,182,255,.10), transparent 60%),
    rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

html.protect-lock .protectOverlay{ display: grid; }

.protectBox{
  width: min(560px, 92vw);
  border-radius: 18px;
  border: 1px solid rgba(82,168,255,.20);
  background: rgba(6,14,30,.55);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
  padding: 18px 18px 16px;
  text-align: center;
}

.protectTitle{
  font-weight: 950;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin: 0;
}

.protectDesc{
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  line-height: 1.55;
  font-size: 13.5px;
}

.protectRow{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.protectBtn{
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(82,168,255,.18);
  background: rgba(8,16,32,.45);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  text-decoration: none;
  transition: .2s;
}
.protectBtn:hover{
  transform: translateY(-2px);
  border-color: rgba(35,182,255,.40);
  box-shadow: 0 0 18px rgba(35,182,255,.25);
}

/* Seçme/sürükleme kapatma (global) */
*{
  -webkit-user-select:none !important;
  user-select:none !important;
  -webkit-user-drag:none !important;
}

/* İstersen input/textarea seçilebilir kalsın */
input, textarea{
  -webkit-user-select:text !important;
  user-select:text !important;
}
