/* TBF Tema — assets/css/main.css */

:root {
  --k: #c8102e;
  --ka: #e8213f;
  --kd: #9b0b22;
  --fb: "Poppins", sans-serif;
  --fg: "Poppins", sans-serif;
  --fm: "Poppins", sans-serif;
}

[data-tema="acik"] {
  --bg: #f2f5fa;
  --bg2: #fff;
  --bgk: #fff;
  --bgh: #edf1f7;
  --cz: rgba(0, 0, 0, 0.08);
  --mt: #111827;
  --sl: rgba(17, 24, 39, 0.55);
  --cs: rgba(17, 24, 39, 0.3);
  --nb: rgba(255, 255, 255, 0.97);
  --ub: #111827;
  --rb: rgba(200, 16, 46, 0.07);
  --rr: #c8102e;
}
[data-tema="karanlik"] {
  --bg: #0c0e12;
  --bg2: #141720;
  --bgk: #1a1e28;
  --bgh: #212535;
  --cz: rgba(255, 255, 255, 0.07);
  --mt: #f0f2f5;
  --sl: rgba(240, 242, 245, 0.55);
  --cs: rgba(240, 242, 245, 0.28);
  --nb: rgba(12, 14, 18, 0.97);
  --ub: #080a0d;
  --rb: rgba(200, 16, 46, 0.12);
  --rr: #e8213f;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fg);
  background: var(--bg);
  color: var(--mt);
  overflow-x: hidden;
  transition: background 0.2s, color 0.2s;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* DUYURU BANDI */
.dband {
  background: var(--k);
  padding: 9px 0;
  overflow: hidden;
  position: relative;
}
.dband::before,
.dband::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}
.dband::before {
  left: 0;
  background: linear-gradient(90deg, var(--k), transparent);
}
.dband::after {
  right: 0;
  background: linear-gradient(-90deg, var(--k), transparent);
}
.kayan {
  display: flex;
  animation: kayan 36s linear infinite;
  white-space: nowrap;
}
.kayan:hover {
  animation-play-state: paused;
}
.kayan span {
  font-size: 11px;
  font-family: var(--fm);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 52px;
}
.ks {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}
@keyframes kayan {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ÜST BAR */
.ubar {
  background: var(--ub);
  padding: 7px 0;
  font-size: 11px;
  font-family: var(--fm);
  transition: background 0.2s;
}
.ubar-ic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ubar-sol {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.ubar-sag {
  display: flex;
  gap: 12px;
  align-items: center;
}
.ubar a {
  color: #fff;
  transition: color 0.2s;
}
.ubar a:hover {
  color: #fff;
}
.ubar-list {
  display: flex;
  list-style: none;
  gap: 12px;
}
.ubar-list li a {
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.2s;
}
.ubar-list li a:hover {
  color: #fff;
}
.uchip {
  background: var(--k);
  color: #fff;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}
.usep {
  color: rgba(255, 255, 255, 0.15);
}

/* NAV */
.custom-logo {
  max-width: 145px;
}
.nav {
  background: var(--nb);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cz);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.2s, border-color 0.2s;
}
.nav-ic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo .custom-logo {
  height: 44px;
  width: auto;
}
.lhex {
  width: 40px;
  height: 40px;
  background: var(--k);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
  font-size: 14px;
  color: #fff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}
.lt .lu {
  font-family: var(--fb);
  font-size: 15px;
  letter-spacing: 2.5px;
  color: var(--mt);
  line-height: 1.1;
  transition: color 0.2s;
}
.lt .la {
  font-family: var(--fm);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sl);
  transition: color 0.2s;
}
.nmenu {
  display: flex;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nmenu > li {
  position: relative;
}
.nmenu > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 7px 11px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--sl);
  border-bottom: 2px solid transparent;
  height: 64px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nmenu > li > a:hover,
.nmenu > li > a.ak,
.nmenu > li.current-menu-item > a,
.nmenu > li.current-menu-ancestor > a {
  color: var(--k);
  border-bottom-color: var(--k);
}
.nok {
  font-size: 7px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.has-drop:hover .nok {
  transform: rotate(180deg);
}
.drop {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--cz);
  border-top: 2px solid var(--k);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  min-width: 215px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.18s;
  z-index: 200;
}
[data-tema="karanlik"] .drop {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drop a {
  display: block;
  padding: 9px 17px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sl);
  border-bottom: 1px solid var(--cz);
  transition: all 0.16s;
}
.drop a:last-child {
  border-bottom: none;
}
.drop a:hover {
  color: var(--k);
  background: var(--rb);
  padding-left: 23px;
}
.nsag {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.tbtn {
  width: 35px;
  height: 35px;
  background: var(--bgh);
  border: 1px solid var(--cz);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.tbtn:hover {
  border-color: var(--k);
}
.sbsbtn {
  background: var(--k);
  color: #fff;
  padding: 8px 17px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  font-family: var(--fg);
}
.sbsbtn:hover {
  background: var(--ka);
  transform: translateY(-1px);
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  background: transparent;
  border: none;
}
.ham:hover {
  background: var(--bgh);
}
.ham span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--mt);
  border-radius: 2px;
  transition: all 0.3s;
}
.ham.ac span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham.ac span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham.ac span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBİL MENÜ */
.mmenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 305px;
  max-width: 90vw;
  background: var(--bg2);
  z-index: 2000;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 36px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}
[data-tema="karanlik"] .mmenu {
  box-shadow: -8px 0 36px rgba(0, 0, 0, 0.5);
}
.mmenu.ac {
  transform: translateX(0);
}
.mov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(3px);
}
.mov.ac {
  opacity: 1;
  visibility: visible;
}
.mhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid var(--cz);
  background: var(--bgk);
  position: sticky;
  top: 0;
  z-index: 10;
}
.mkapat {
  width: 33px;
  height: 33px;
  background: var(--bgh);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mt);
  transition: all 0.2s;
}
.mkapat:hover {
  background: var(--rb);
  color: var(--k);
}
.mnav {
  flex: 1;
  padding: 6px 0;
}
.mgbas {
  padding: 7px 20px;
  font-size: 8.5px;
  font-family: var(--fm);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--k);
  font-weight: 600;
  border-top: 1px solid var(--cz);
  margin-top: 6px;
}
.mgbas:first-child {
  border-top: none;
  margin-top: 0;
}
.mlnk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mt);
  border-bottom: 1px solid var(--cz);
  transition: all 0.16s;
}
.mlnk:hover {
  background: var(--rb);
  color: var(--k);
  padding-left: 26px;
}
.malt {
  display: block;
  padding: 9px 32px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sl);
  border-bottom: 1px solid var(--cz);
  background: var(--bgh);
  transition: all 0.16s;
}
.malt:hover {
  color: var(--k);
  padding-left: 40px;
}
.mfoot {
  padding: 17px 20px;
  border-top: 1px solid var(--cz);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msbs {
  background: var(--k);
  color: #fff;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  display: block;
}
.mtel {
  font-family: var(--fm);
  font-size: 10.5px;
  color: var(--sl);
  text-align: center;
  line-height: 2;
}

/* HERO */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
[data-tema="acik"] .hero {
  background: linear-gradient(140deg, #f2f6fc 0%, #e8eef8 100%);
}
[data-tema="karanlik"] .hero {
  background: linear-gradient(140deg, #0c0e12 0%, #141720 100%);
}
.hd {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hgrid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--cz) 1px, transparent 1px),
    linear-gradient(90deg, var(--cz) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
}
.hglow {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.07) 0%,
    transparent 65%
  );
  border-radius: 50%;
}
.hline {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 43%;
  width: 1px;
  background: var(--cz);
}
.heroic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 28px 64px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hustkisim {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: fuA 0.6s ease both;
}
.hrozet {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--rb);
  border: 1px solid rgba(200, 16, 46, 0.18);
  color: var(--rr);
  padding: 6px 14px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--fm);
  border-radius: 2px;
}
.rdot {
  width: 6px;
  height: 6px;
  background: var(--k);
  border-radius: 50%;
  animation: nabiz 1.8s ease-in-out infinite;
}
@keyframes nabiz {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}
.hyil {
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--cs);
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--cz);
  border-radius: 2px;
}
.hbaslik {
  font-family: var(--fb);
  font-size: clamp(50px, 5.5vw, 82px);
  line-height: 0.93;
  letter-spacing: 2px;
  color: var(--mt);
  margin-bottom: 20px;
  animation: fuA 0.65s 0.08s ease both;
  transition: color 0.2s;
}
.hbaslik .hv {
  color: var(--k);
}
.hbaslik .hi {
  font-family: var(--fg);
  font-size: 0.44em;
  letter-spacing: 5px;
  display: block;
  font-weight: 300;
  color: var(--sl);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hacik {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--sl);
  max-width: 450px;
  margin-bottom: 32px;
  animation: fuA 0.65s 0.15s ease both;
  transition: color 0.2s;
}
.hbtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fuA 0.65s 0.22s ease both;
}
.btnp {
  background: var(--k);
  color: #fff;
  padding: 13px 27px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btnp:hover {
  background: var(--ka);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.25);
}
.btns {
  background: transparent;
  color: var(--mt);
  padding: 13px 27px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--cz);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
}
.btns:hover {
  border-color: var(--k);
  color: var(--k);
}
.hstats {
  display: flex;
  margin-top: 40px;
  border: 1px solid var(--cz);
  border-radius: 6px;
  overflow: hidden;
  animation: fuA 0.65s 0.3s ease both;
}
.hst {
  padding: 17px 20px;
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--cz);
  background: var(--bgk);
  transition: background 0.2s;
}
.hst:last-child {
  border-right: none;
}
.hsn {
  font-family: var(--fb);
  font-size: 30px;
  color: var(--k);
  line-height: 1;
  display: block;
  letter-spacing: 1px;
}
.hsl {
  font-size: 9.5px;
  color: var(--cs);
  font-family: var(--fm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.herosag {
  animation: fuL 0.7s 0.1s ease both;
}
.olim {
  background: var(--bgk);
  border: 1px solid var(--cz);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 11px;
  transition: background 0.2s, border-color 0.2s;
}
[data-tema="karanlik"] .olim {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.ohead {
  background: linear-gradient(135deg, var(--kd), var(--k));
  padding: 19px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ohsol .okk {
  font-family: var(--fm);
  font-size: 8.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.ohsol .okb {
  font-family: var(--fb);
  font-size: 19px;
  letter-spacing: 2px;
  color: #fff;
  margin-top: 2px;
}
.ohsag .oy {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--fm);
}
.ohsag .os {
  font-family: var(--fb);
  font-size: 19px;
  color: #fff;
  letter-spacing: 1px;
}
.scgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cz);
}
.sck {
  background: var(--bgk);
  padding: 18px 8px;
  text-align: center;
  transition: background 0.2s;
}
.scr {
  font-family: var(--fb);
  font-size: 38px;
  color: var(--k);
  line-height: 1;
  display: block;
  letter-spacing: 1px;
}
.sce {
  font-family: var(--fm);
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cs);
  margin-top: 4px;
}
.ofoot {
  padding: 12px 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--cz);
  background: var(--bgh);
  transition: background 0.2s;
}
.ob .ol {
  font-size: 8.5px;
  font-family: var(--fm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cs);
}
.ob .ov {
  font-size: 12px;
  font-weight: 600;
  color: var(--mt);
  margin-top: 2px;
  transition: color 0.2s;
}
.minih {
  background: var(--bgk);
  border: 1px solid var(--cz);
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}
.mhtop {
  padding: 11px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--cz);
  background: var(--bgh);
  transition: background 0.2s;
}
.mhtop span {
  font-size: 8.5px;
  font-family: var(--fm);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cs);
}
.mhtop a {
  font-size: 9.5px;
  font-family: var(--fm);
  color: var(--k);
}
.mhit {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 17px;
  border-bottom: 1px solid var(--cz);
  transition: background 0.16s;
}
.mhit:last-child {
  border-bottom: none;
}
.mhit:hover {
  background: var(--bgh);
}
.mhidx {
  font-family: var(--fb);
  font-size: 22px;
  color: rgba(200, 16, 46, 0.18);
  min-width: 24px;
  line-height: 1;
}
.mht .mk {
  font-size: 8.5px;
  font-family: var(--fm);
  color: var(--k);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.mht .mb {
  font-size: 12px;
  font-weight: 600;
  color: var(--mt);
  line-height: 1.35;
  transition: color 0.2s;
}
@keyframes fuA {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fuL {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* STATİSTİK BANT */
.stbant {
  background: var(--k);
  position: relative;
  overflow: hidden;
}
.stbant::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.06) 0,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1px,
    transparent 120px
  );
}
.stic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
.si {
  padding: 21px 13px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.si:last-child {
  border-right: none;
}
.sin {
  font-family: var(--fb);
  font-size: 38px;
  color: #fff;
  display: block;
  line-height: 1;
  letter-spacing: 1px;
}
.sil {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
  font-family: var(--fm);
}

/* HIZLI ERİŞİM */
.hzalan {
  background: var(--bg);
  padding: 16px 0;
  transition: background 0.2s;
}
.hzic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}
.hzgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.hzit {
  background: var(--bgk);
  border: 1px solid var(--cz);
  padding: 19px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border-radius: 3px;
}
.hzit:first-child {
  background: var(--k);
  border-color: var(--k);
}
.hzit:not(:first-child):hover {
  background: var(--rb);
  border-color: rgba(200, 16, 46, 0.2);
}
.hzik {
  font-size: 24px;
}
.hzad {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mt);
  transition: color 0.2s;
}
.hzit:first-child .hzad {
  color: #fff;
}

/* BÖLÜM */
.bolum {
  padding: 65px 0;
}
.bac {
  background: var(--bg);
  transition: background 0.2s;
}
.bko {
  background: var(--bg2);
  transition: background 0.2s;
}
.bic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}
.bust {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--cz);
}
.bsol .et {
  font-family: var(--fm);
  font-size: 8.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--k);
  margin-bottom: 5px;
  font-weight: 600;
}
.bsol .bas {
  font-family: var(--fb);
  font-size: clamp(25px, 3vw, 42px);
  letter-spacing: 2px;
  color: var(--mt);
  line-height: 1;
  transition: color 0.2s;
}
.bsol .bas span {
  color: var(--k);
}
.btum {
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--k);
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--rb);
  padding: 7px 13px;
  border-radius: 3px;
  transition: all 0.2s;
}
.btum:hover {
  background: var(--rb);
  gap: 9px;
}
.bos-mesaj {
  color: var(--sl);
  padding: 40px 0;
  font-size: 14px;
}

/* HABERLER */
.habgrid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.hab-arsiv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.hk {
  background: var(--bgk);
  border: 1px solid var(--cz);
  border-radius: 4px;
  overflow: hidden;
  display: block;
  transition: all 0.22s;
  position: relative;
}
.hk:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
[data-tema="karanlik"] .hk:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.hk.buy {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.hkgo {
  overflow: hidden;
  background: var(--bgh);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.hk.buy .hkgo {
  height: 270px;
}
.hk:not(.buy) .hkgo {
  height: 155px;
}
.hkgo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hkark {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(200, 16, 46, 0.04) 0,
    rgba(200, 16, 46, 0.04) 1px,
    transparent 1px,
    transparent 20px
  );
}
.hkik {
  font-size: 50px;
  opacity: 0.1;
  position: relative;
  z-index: 1;
}
.hk:not(.buy) .hkik {
  font-size: 36px;
}
.hkic {
  padding: 19px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hk.buy .hkic {
  padding: 22px;
}
.hkkat {
  display: inline-block;
  background: var(--k);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  font-family: var(--fm);
  margin-bottom: 9px;
	    max-width: 33%;
}
.hkbas {
  font-size: 13px;
  font-weight: 700;
  color: var(--mt);
  line-height: 1.4;
  margin-bottom: 7px;
  transition: color 0.2s;
}
.hk.buy .hkbas {
  font-family: var(--fb);
  font-size: 21px;
  font-weight: 400;
}
.hkoz {
  font-size: 12px;
  color: var(--sl);
  line-height: 1.65;
  margin-bottom: 11px;
  flex: 1;
}
.hktar {
  font-size: 9.5px;
  font-family: var(--fm);
  color: var(--cs);
}
.hkbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--k);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.hk:hover .hkbar {
  transform: scaleX(1);
}

/* DUYURULAR */
.dugrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.dk {
  background: var(--bgk);
  border: 1px solid var(--cz);
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s;
}
.dk:hover {
  border-color: rgba(200, 16, 46, 0.25);
  transform: translateY(-1px);
}
.dktar {
  background: var(--bgh);
  padding: 17px 14px;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 2px solid var(--k);
  flex-shrink: 0;
  transition: background 0.2s;
}
.dkg {
  font-family: var(--fb);
  font-size: 31px;
  color: var(--k);
  line-height: 1;
}
.dka {
  font-size: 8.5px;
  font-family: var(--fm);
  color: var(--cs);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.dkic {
  padding: 14px 17px;
  flex: 1;
}
.dktur {
  font-size: 8.5px;
  font-family: var(--fm);
  color: var(--k);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
}
.dkbas {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mt);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.dkoz {
  font-size: 11.5px;
  color: var(--sl);
  line-height: 1.55;
}

/* TAKVİM */
.taklay {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: start;
}
.takac {
  font-size: 13px;
  color: var(--sl);
  line-height: 1.75;
  margin: 13px 0 24px;
  transition: color 0.2s;
}
.takbtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--k);
  color: var(--k);
  padding: 10px 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--fm);
  border-radius: 4px;
  transition: all 0.2s;
}
.takbtn:hover {
  background: var(--k);
  color: #fff;
}
.taklis {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ti {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--bgk);
  border: 1px solid var(--cz);
  padding: 14px 19px;
  border-left: 3px solid transparent;
  border-radius: 4px;
  transition: all 0.2s;
}
.ti:hover,
.ti.aktif {
  border-left-color: var(--k);
  background: var(--rb);
}
.titar {
  text-align: center;
}
.tig {
  font-family: var(--fb);
  font-size: 28px;
  color: var(--mt);
  line-height: 1;
  transition: color 0.2s;
}
.tia {
  font-size: 8.5px;
  font-family: var(--fm);
  color: var(--cs);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tibad {
  display: inline-block;
  font-size: 8px;
  font-family: var(--fm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--k);
  background: var(--rb);
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 4px;
  font-weight: 600;
}
.tiad {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mt);
  line-height: 1.3;
  transition: color 0.2s;
}
.tiyer {
  font-size: 10px;
  color: var(--cs);
  font-family: var(--fm);
  margin-top: 3px;
}
.tiok {
  color: var(--cs);
  font-size: 16px;
  transition: color 0.2s;
}
.ti:hover .tiok {
  color: var(--k);
}

/* GALERİ */
.gagrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.gi {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--bgh);
  cursor: pointer;
  border-radius: 3px;
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gi:hover img {
  transform: scale(1.06);
}
.gipl {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  opacity: 0.1;
  background: linear-gradient(135deg, var(--bgk), var(--bgh));
  transition: all 0.3s;
}
.gi:hover .gipl {
  opacity: 0.22;
  transform: scale(1.06);
}
.giov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(200, 16, 46, 0.72) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 13px;
}
.gi:hover .giov {
  opacity: 1;
}
.git {
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  font-family: var(--fm);
}

/* SAYFA ÜST (iç sayfalar) */
.sayfa-ust {
  background: var(--k);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.sayfa-ust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.05) 0,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 20px
  );
}
.sayfa-ust-ic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.sayfa-baslik {
  font-family: var(--fb);
  font-size: clamp(22px, 5vw, 28px);
  letter-spacing: 1px;
  color: #fff;
  line-height: 25px;
}
.sayfa-aciklama {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  font-size: 14px;
}
.breadcrumb {
  font-family: var(--fm);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* WP İÇERİK */
.wp-content p {
  margin-bottom: 18px;
  line-height: 1.85;
  color: var(--sl);
}
.wp-content h2 {
  font-family: var(--fb);
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--mt);
  margin: 36px 0 16px;
}
.wp-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mt);
  margin: 26px 0 12px;
}
.wp-content ul,
.wp-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
  color: var(--sl);
}
.wp-content li {
  margin-bottom: 7px;
  line-height: 1.75;
}
.wp-content img {
  border-radius: 4px;
  margin: 24px 0;
}
.wp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.wp-content table th {
  background: var(--k);
  color: #fff;
  padding: 11px 15px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 1px;
}
.wp-content table td {
  padding: 11px 15px;
  border-bottom: 1px solid var(--cz);
  color: var(--sl);
  font-size: 13px;
}
.wp-content a {
  color: var(--k);
  text-decoration: underline;
}
.wp-content blockquote {
  border-left: 3px solid var(--k);
  padding: 16px 20px;
  background: var(--bgh);
  margin: 24px 0;
  font-style: italic;
  color: var(--sl);
}

/* SAYFA LAYOUT */
.sayfa-layout {
  max-width: 100%;
}
.sayfa-govde {
}

/* SINGLE */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.single-gorsel {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}
.single-gorsel img {
  width: 100%;
  height: auto;
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.single-tarih {
  font-size: 11px;
  font-family: var(--fm);
  color: var(--cs);
}
.single-baslik {
  font-family: var(--fb);
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 1px;
  color: var(--mt);
  margin-bottom: 24px;
  line-height: 40px;
  transition: color 0.2s;
}
.single-govde {
  line-height: 1.85;
  color: var(--sl);
}
.single-paylasim {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--cz);
  flex-wrap: wrap;
}
.single-paylasim span {
  font-size: 12px;
  font-weight: 600;
  color: var(--cs);
}
.paylasim-btn {
  background: var(--bgh);
  border: 1px solid var(--cz);
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  transition: all 0.2s;
}
.paylasim-btn:hover {
  background: var(--k);
  color: #fff;
  border-color: var(--k);
}
.single-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--cz);
}
.snav-prev,
.snav-next {
  font-size: 13px;
  font-weight: 600;
  color: var(--k);
}

/* SIDEBAR */
.single-sidebar {
  position: sticky;
  top: 80px;
}
.widget {
  background: var(--bgk);
  border: 1px solid var(--cz);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: background 0.2s;
}
.widget-baslik {
  font-family: var(--fb);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--mt);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cz);
  transition: color 0.2s;
}
.sidebar-liste {
  list-style: none;
}
.sidebar-liste li {
  border-bottom: 1px solid var(--cz);
}
.sidebar-liste a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sl);
  transition: color 0.2s;
}
.sidebar-liste a:hover {
  color: var(--k);
}
.sidebar-liste img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* SAYFALAMA */
.sayfalama {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.sayfalama .page-numbers {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
}
.sayfalama .page-numbers li a,
.sayfalama .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid var(--cz);
  background: var(--bgk);
  font-size: 13px;
  font-weight: 600;
  color: var(--sl);
  border-radius: 3px;
  transition: all 0.2s;
}
.sayfalama .page-numbers li a:hover,
.sayfalama .page-numbers li .current {
  background: var(--k);
  color: #fff;
  border-color: var(--k);
}

/* SPORCULAR */
.sporcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.sporcu-kart {
  background: var(--bgk);
  border: 1px solid var(--cz);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: all 0.2s;
  display: block;
}
.sporcu-kart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.sporcu-foto {
  height: 220px;
  overflow: hidden;
  background: var(--bgh);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sporcu-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sporcu-foto-bos {
  font-size: 64px;
  opacity: 0.2;
}
.sporcu-info {
  padding: 16px;
}
.sporcu-brans {
  font-size: 8.5px;
  font-family: var(--fm);
  color: var(--k);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sporcu-ad {
  font-family: var(--fb);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--mt);
  transition: color 0.2s;
}

/* İLETİŞİM */
.iletisim-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.iletisim-kartlar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 24px;
}
.ilet-kart {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bgk);
  border: 1px solid var(--cz);
  padding: 18px 20px;
  border-radius: 4px;
  transition: all 0.2s;
}
.ilet-kart:hover {
  border-color: rgba(200, 16, 46, 0.25);
}
.ilet-ikon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ilet-baslik {
  font-size: 9px;
  font-family: var(--fm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--k);
  margin-bottom: 4px;
  font-weight: 600;
}
.ilet-deger {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mt);
  transition: color 0.2s;
}
.iletisim-harita {
  position: sticky;
  top: 80px;
}
.iletisim-harita iframe {
  border-radius: 6px;
  border: 1px solid var(--cz);
}

/* FORMLAR */
.form-listesi {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.form-kart {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bgk);
  border: 1px solid var(--cz);
  padding: 18px 20px;
  border-radius: 4px;
  transition: all 0.2s;
}
.form-kart:hover {
  border-color: rgba(200, 16, 46, 0.2);
}
.form-ikon {
  font-size: 28px;
  flex-shrink: 0;
}
.form-ad {
  font-size: 14px;
  font-weight: 700;
  color: var(--mt);
  transition: color 0.2s;
}
.form-acik {
  font-size: 12px;
  color: var(--sl);
  margin-top: 2px;
}
.form-kart .takbtn {
  margin-left: auto;
  white-space: nowrap;
}

/* SPONSORLAR */
.spsec {
  background: var(--bg2);
  border-top: 1px solid var(--cz);
  border-bottom: 1px solid var(--cz);
  padding: 28px 0;
  transition: background 0.2s;
}
.spic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.spet {
  font-size: 9px;
  font-family: var(--fm);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cs);
  white-space: nowrap;
  min-width: 85px;
}
.splis {
  display: flex;
  gap: 3px;
  flex: 1;
  flex-wrap: wrap;
}
.splo {
  background: var(--bgk);
  border: 1px solid var(--cz);
  padding: 11px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cs);
  font-family: var(--fm);
  border-radius: 3px;
  transition: all 0.2s;
  white-space: nowrap;
}
.splo:hover {
  border-color: rgba(200, 16, 46, 0.3);
  color: var(--k);
}

/* FOOTER */
.site-footer {
  background: #0c0e12;
  border-top: 2px solid var(--k);
}
[data-tema="acik"] .site-footer {
  background: #111827;
}
.fic {
  max-width: 1440px;
  margin: 0 auto;
  padding: 52px 28px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.flogo {
  font-family: var(--fb);
  font-size: 19px;
  letter-spacing: 2px;
  color: #ffffffe3;
  margin-bottom: 4px;
}
.flogo-img img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.falt2 {
  font-family: var(--fm);
  font-size: 8.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 15px;
}
.fac {
  font-size: 12px;
  color: #ffffffe3;
  line-height: 1.75;
  margin-bottom: 18px;
}
.fil {
  list-style: none;
}
.fil li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 11.5px;
  color: #ffffffe3;
}
.fik {
  color: #ffffffe3;
  font-size: 11.5px;
  margin-top: 1px;
  flex-shrink: 0;
}
.fil a {
  color: #ffffffe3;
  transition: color 0.2s;
}
.fil a:hover {
  color: #ffffffe3;
}
.fbas {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--k);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 600;
}
.flnk {
  list-style: none;
}
.flnk li,
.flnk li a {
  display: flex;
  align-items: center;
}
.flnk li {
  margin-bottom: 5px;
}
.flnk li a,
.flnk a {
  font-size: 12px;
  color: #ffffffe3;
  gap: 6px;
  transition: all 0.16s;
  display: flex;
  align-items: center;
}
.flnk li a::before,
.flnk a::before {
  content: "—";
  color: rgba(200, 16, 46, 0.4);
  font-size: 8px;
}
.flnk li a:hover,
.flnk a:hover {
  color: #fff;
  padding-left: 3px;
}
.fab {
  max-width: 1440px;
  margin: 0 auto;
  padding: 17px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-family: var(--fm);
  color: rgba(255, 255, 255, 0.26);
  flex-wrap: wrap;
  gap: 10px;
}
.fabl {
  display: flex;
  gap: 16px;
}
.fabl a {
  color: rgba(255, 255, 255, 0.26);
  transition: color 0.2s;
}
.fabl a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.fsos {
  display: flex;
  gap: 5px;
}
.fsb {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: all 0.2s;
}
.fsb:hover {
  background: var(--k);
  border-color: var(--k);
  color: #fff;
}

/* SEARCH FORM */
.search-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
}
.search-field {
  flex: 1;
  padding: 11px 16px;
  background: var(--bgk);
  border: 1px solid var(--cz);
  color: var(--mt);
  font-family: var(--fg);
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}
.search-field:focus {
  border-color: var(--k);
}
.search-submit {
  background: var(--k);
  color: #fff;
  border: none;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  font-family: var(--fg);
  transition: background 0.2s;
}
.search-submit:hover {
  background: var(--ka);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nmenu {
    display: none;
  }
  .ham {
    display: flex;
  }
  .heroic,
  .taklay,
  .single-layout,
  .iletisim-layout {
    grid-template-columns: 1fr;
  }
  .herosag {
    display: none;
  }
  .stic {
    grid-template-columns: repeat(3, 1fr);
  }
  .habgrid,
  .hab-arsiv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hk.buy {
    grid-row: span 1;
  }
  .hzgrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fic {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .dugrid {
    grid-template-columns: 1fr 1fr;
  }
  .sporcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dugrid,
  .habgrid,
  .hab-arsiv-grid,
  .sporcu-grid {
    grid-template-columns: 1fr;
  }
  .gagrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hzgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stic {
    grid-template-columns: repeat(2, 1fr);
  }
  .spic {
    flex-direction: column;
    gap: 12px;
  }
  .fic {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .heroic {
    padding: 52px 20px 36px;
  }
  .bolum {
    padding: 48px 0;
  }
  .taklay {
    grid-template-columns: 1fr;
  }
}
