:root{
  --text: #ffffff;
  --active-bg: rgba(255,255,255,.15);
  --accent: #e11d48;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{
  font-family:'Montserrat',sans-serif;
  color:var(--text);
  background:#000;
}

/* ===== NAVBAR ===== */

/* Navbar başlangıçta şeffaf */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  transition: background .4s ease, box-shadow .4s ease;
}

/* Navbar opak hali */
.nav-solid {
  background: rgba(10, 20, 30, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.navbar.scrolled a.item {
  color: #111 !important;
}


/* NAV: başlangıçta saydam */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: transparent;                 /* tamamen saydam */
  display: flex; justify-content: center;
  transition: background .3s ease, box-shadow .3s ease;
}

/* Link renkleri (hero üzerindeyken beyaz) */
.site-nav .menu .item,
.site-nav .brand{
  color:#fff;
  transition: color .3s ease;
}

/* Kayınca opak + beyaz metin */
.site-nav.scrolled{
  background: #0047B3;      /* istediğin opak renk */
  backdrop-filter: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);   /* gölge siyah olmalı */
}
.site-nav.scrolled .menu .item,
.site-nav.scrolled .brand{
  color:#fff;                               /* opakta da beyaz kalsın */
}

/* Mobil menü açıldığında arka plan rengi kobalt mavisi olsun */
.site-nav.open,
.menu.show {
  background: #0047B3 !important;
  backdrop-filter: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.menu.show a.item {
  color: #fff !important;
}




.nav-inner{
  width:100%;
  max-width:1280px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 40px;
}

.brand{
  font-weight:800;
  font-size:1.2rem;
  text-decoration:none;
  color:var(--text);
}

.menu{
  display:flex;
  gap:28px;
  align-items:center;
}

.item{
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.6px;
  color:var(--text);
  text-decoration:none;
  padding:10px 16px;
  border-radius:8px;
  transition:background .2s ease, opacity .2s ease;
}

.item:hover{
  opacity:1;
  background:rgba(255,255,255,.1);
}

.item.active{
  background:var(--active-bg);
}

.item::after{
  display:none; /* alt çizgiyi tamamen kaldırdık */
}

/* Hamburger (mobil) */
.hamburger{
  display:none;
  background:none;
  border:none;
  color:var(--text);
  font-size:1.8rem;
  cursor:pointer;
}

@media (max-width:900px){
  .hamburger{display:block}
  .menu{
    display:none;
    position:fixed;
    top:64px; right:16px; left:16px;
    flex-direction:column;
    background:rgba(0,0,0,.9);
    border-radius:10px;
    padding:12px;
  }
  .menu.show{display:flex}
}

/* ===== HERO ===== */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.5);
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.headline{
  font-weight:300;
  font-size:clamp(2rem,5vw,3.8rem);
  line-height:1.2;
  margin-bottom:24px;
}

.headline b{font-weight:800}

.cta{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:16px 28px;
  border-radius:100px;
  font-weight:800;
  text-decoration:none;
  letter-spacing:.6px;
  box-shadow:0 8px 24px rgba(225,29,72,.3);
  transition:transform .15s ease;
}
.cta:hover{transform:translateY(-2px)}

/* ===== FOOTER ===== */
.footer{
  background: #0047B3; /* kobalt mavisi */
  color: #fff;
  padding:60px 8% 40px;
  font-family:'Montserrat',sans-serif;
}

footer a {
  color: #ffffff;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 0.85;
}


.footer-content{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:40px;
}

/* Sol taraf */
.footer-left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}

.footer-brand{
  font-size:1.5rem;
  font-weight:800;
  color:#fff;
}
.footer-brand span{
  font-weight:600;
  opacity:.9;
}

/* Menü */
.footer-menu{
  display:flex;
  gap:28px;
}
.footer-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.9rem;
  letter-spacing:.5px;
  opacity:.85;
  transition:opacity .2s;
}
.footer-menu a:hover{opacity:1;}

/* Sağ taraf: ikonlar */
.footer-right{
  display:flex;
  align-items:center;
  gap:20px;
}
.footer-right a{
  color:#fff;
  font-size:1.1rem;
  opacity:.85;
  transition:opacity .2s;
}
.footer-right a:hover{opacity:1;}

/* Alt çizgi */
.footer-line{
  width:100%;
  max-width:1280px;
  margin:40px auto 20px;
  border:0;
  border-top:1px solid rgba(255,255,255,.1);
}

/* En alt */
.footer-bottom{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  font-size:.85rem;
  color:rgba(255,255,255,.75);
}

.footer-links{
  display:flex;
  gap:20px;
}
.footer-links a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  transition:color .2s;
}
.footer-links a:hover{color:#fff;}

@media(max-width:800px){
  .footer-content{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .footer-left{align-items:center;}
  .footer-menu{justify-content:center;flex-wrap:wrap;}
  .footer-right{justify-content:center;}
  .footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:10px;
  }
}

/* ---------- About teaser (home) ---------- */
.about-teaser {
  background:#fff;
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

/* video kaybolsun */
body.scrolled .hero-video {
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}

/* grid yapısı */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.teaser-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  display: block;
  margin: 0 auto;
}


/* solda yazı */
.teaser-text h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  font-weight: 900;
  color:#111;
  margin-bottom: 16px;
}
.teaser-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color:#5c6878;
  margin-bottom: 18px;
  text-align: justify;
}

/* sağa-sola ters çevirmek için */
.teaser-reverse {
  grid-template-columns: 1.1fr 1fr;
}

/* responsive */
@media (max-width: 900px){
  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .teaser-image img {
    max-width: 320px;
    margin: 0 auto;
  }
  .teaser-text p { text-align: left; }
}

/* Kobalt mavisi buton */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.3px;
  transition:transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

.btn-cobalt{
  background:#0047B3;                  /* kobalt mavisi */
  color:#fff;
  box-shadow:0 12px 24px rgba(0,71,179,.28);
}
.btn-cobalt:hover{
  transform:translateY(-1px);
  filter:brightness(1.05);
}
.btn-cobalt:focus-visible{
  outline:3px solid rgba(0,71,179,.35);
  outline-offset:2px;
}


/* ======= FOOTER FİNAL TEMİZ VERSİYON ======= */
footer {
  background: #0047B3;
  color: #fff;
  padding: 60px 24px 40px;
  font-family: 'Montserrat', sans-serif;
}

/* Genel yapı */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* PC'de sola hizalı */
  gap: 28px;
}

/* Marka */
.footer-brand {
  font-weight: 900;
  font-size: 1.6rem;
}
.footer-brand span {
  font-weight: 600;
}

/* Menü */
.footer-menu {
  display: flex;
  flex-wrap: wrap;             /* Satır kırılabilir ama dengeli */
  justify-content: flex-start; /* PC'de sola hizalı */
  gap: 22px;
  row-gap: 8px;                /* Satır aralığı */
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 0.95rem); /* Ekrana göre boyut ayarı */
  white-space: nowrap;
  transition: opacity .2s;
}
.footer-menu a:hover { opacity: 0.8; }

/* Sosyal ikonlar */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Alt kısım */
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ======= MOBİL ======= */
@media (max-width: 900px) {
  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .footer-menu {
    justify-content: center; /* ortala */
    gap: clamp(10px, 3vw, 18px);
    flex-wrap: nowrap;        /* tek satırda tut */
    flex-shrink: 1;
    flex-grow: 1;
  }

  .footer-menu a {
    font-size: clamp(0.75rem, 3.2vw, 0.9rem);
    white-space: nowrap;
  }

  /* Eğer taşacak gibi olursa otomatik küçülür */
  .footer-inner {
    width: 100%;
    overflow: hidden;
  }
}

/* ===== Yeni Çıkan Oyunumuz - Temiz Beyaz Versiyon ===== */
.new-release {
  background: #ffffff; /* beyaz arka plan */
  padding: 70px 0;
}

.nr-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nr-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  border: 1px solid #e8ebef; /* hafif çerçeve */
}

.nr-media {
  position: relative;
  background: #f6f7fa;
}

.nr-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain; /* ekraft logosu bozulmasın */
  background: #ffffff;
  padding: 24px; /* logoyu ortalar */
}

.nr-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0047B3;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  box-shadow: 0 10px 24px rgba(0, 71, 179, 0.25);
}

.nr-body {
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nr-eyebrow {
  color: #0047B3;
  font-weight: 900;
  letter-spacing: 0.7px;
  font-size: 0.9rem;
}

.nr-title {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  line-height: 1.2;
  font-weight: 900;
  color: #111827;
}

.nr-desc {
  margin: 2px 0 6px;
  color: #5a6b7b;
  line-height: 1.7;
}

.nr-features {
  margin: 6px 0 10px;
  padding-left: 18px;
  color: #536273;
  line-height: 1.7;
}
.nr-features li {
  margin: 2px 0;
}

/* Sadece mağaza butonları kalsın */
.nr-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.nr-store {
  display: inline-flex;
  border-radius: 12px;
  overflow: hidden;
  transform: translateZ(0);
}
.nr-store img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.nr-store:hover img {
  transform: scale(1.05);
  filter: brightness(1.06);
}

/* Responsive */
@media (max-width: 980px) {
  .nr-card {
    grid-template-columns: 1fr;
  }
  .nr-body {
    padding: 20px;
  }
  .nr-media img {
    min-height: 200px;
    padding: 16px;
  }
}
.new-release {
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08); /* 👈 İnce gri ayırıcı çizgi */
}

/* ===== Founders Section ===== */
.founders {
  background: #ffffff;
  padding: 100px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.founders-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.founders-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.founders-text {
  flex: 1;
  min-width: 320px;
}

.founders-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
}

.founders-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}

.founders-image {
  flex: 1;
  min-width: 320px;
  text-align: right;
}

.founders-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Mobil uyum */
@media (max-width: 900px) {
  .founders-content {
    flex-direction: column;
    text-align: center;
  }
  .founders-image {
    text-align: center;
  }
  .founders-image img {
    max-width: 300px;
  }
}



