
:root{
  --bg:#05090d;
  --panel:rgba(6,13,20,.58);
  --panel-strong:rgba(5,10,15,.82);
  --text:#f7f8fa;
  --muted:rgba(247,248,250,.66);
  --line:rgba(255,255,255,.12);
  --red:#e12626;
  --max:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:#020406}
body{
  margin:0;
  min-height:100%;
  background:transparent;
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  position:relative;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{max-width:100%}

.ocean-bg{
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05) 0%,
            rgba(0,0,0,.18) 40%,
            rgba(0,0,0,.55) 70%,
            rgba(0,0,0,.80) 100%
        ),
        url("/assets/ocean-hero.png");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.ocean-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,var(--depth,0));
    transition:background .15s linear;
}
.page-bg{
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    linear-gradient(180deg,rgba(0,0,0,.30),rgba(0,0,0,.78)),
    url("/assets/ocean-hero.png") center top/cover no-repeat;
}

/* Mobilde arka plan düzeltmeleri */
@media(max-width:768px){
  .ocean-bg{
    background-image:
      linear-gradient(
        to bottom,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.18) 40%,
        rgba(0,0,0,.55) 70%,
        rgba(0,0,0,.80) 100%
      ),
      url("/assets/ocean-mobile.png");
    background-attachment:scroll;
    position:absolute;
    background-size:cover;
    background-position:center top;
  }
  .page-bg{
    background:
      linear-gradient(180deg,rgba(0,0,0,.30),rgba(0,0,0,.78)),
      url("/assets/ocean-mobile.png") center top/cover no-repeat;
    position:absolute;
  }
}
.grain{
  position:fixed; inset:0; z-index:-2; pointer-events:none; opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.header-wrap{
  position:fixed;
  top:22px;
  left:0;
  right:0;
  z-index:50;
  padding:0 var(--side-pad,4vw);
  transition:top .35s ease;
}
.header-wrap.scrolled{
  top:14px;
}
.header{
  width:100%;max-width:var(--max);
  min-height:70px;
  margin:auto;
  padding:0 28px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(6,14,22,.42);
  backdrop-filter:blur(18px) saturate(125%);
  box-shadow:0 20px 80px rgba(0,0,0,.16);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  justify-self:start;
  font-weight:800;
  letter-spacing:.03em;
}
.brand img{width:34px;height:34px}
.brand .red{color:var(--red)}
.nav{display:flex;gap:42px;color:rgba(255,255,255,.82)}
.nav a:hover,.footer a:hover{color:#fff}
.lang{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.88rem;
}
.lang button{
  border:0;background:transparent;color:rgba(255,255,255,.5);cursor:pointer;padding:4px 0
}
.lang button.active{color:#fff}
.lang .slash{color:rgba(255,255,255,.25)}

.hero{
  min-height:100svh;
  display:flex;
  align-items:center;
  padding:130px 5vw 70px;
}
.hero-inner{
  width:100%;max-width:var(--max);
  margin:auto;
}
.hero-copy{
  width:min(670px,100%);
  padding-top:40px;
}
.kicker,.section-kicker{
  margin:0 0 18px;
  color:var(--red);
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
}
h1{
  margin:0 0 24px;
  font-size:clamp(3.2rem,7vw,6.7rem);
  line-height:.94;
  letter-spacing:-.06em;
  font-weight:700;
}
h1 .red{color:var(--red)}
.hero-copy>p:not(.kicker){
  width:min(540px,100%);
  margin:0;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.65;
}
.actions{display:flex;gap:14px;margin-top:34px;flex-wrap:wrap}
.btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:0 26px;
  border:1px solid var(--line);
  border-radius:9px;
  font-size:.82rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  transition:.2s ease;
}
.btn.primary{background:var(--red);border-color:var(--red)}
.btn:hover{transform:translateY(-2px);background:rgba(255,255,255,.08)}
.btn.primary:hover{background:#f12c2c}
.scroll-cue{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.5);
  font-size:.72rem;
  letter-spacing:.1em;
}
.chev{width:13px;height:13px;border-right:1px solid #fff;border-bottom:1px solid #fff;transform:rotate(45deg)}

.intro-section{
  padding:110px 5vw 130px;
  background:
    linear-gradient(90deg,rgba(2,6,10,.98),rgba(6,15,24,.90) 48%,rgba(2,6,10,.98));
  border-top:1px solid var(--line);
}
.intro-inner{
  width:100%;max-width:var(--max);
  margin:auto;
}
.intro-head{
  width:min(660px,100%);
  margin-bottom:42px;
}
.intro-head h2,.page-hero h1{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:1.05;
  letter-spacing:-.045em;
}
.intro-head p{
  margin:0;color:var(--muted);line-height:1.65
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.category{
  min-height:260px;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid var(--line);
  border-radius:15px;
  background:rgba(5,10,15,.46);
  backdrop-filter:blur(12px);
  transition:.22s ease;
}
.category:hover{transform:translateY(-4px);background:rgba(10,18,27,.72);border-color:rgba(255,255,255,.2)}
.icon-box{
  width:52px;height:52px;border-radius:13px;
  display:grid;place-items:center;
  color:var(--red);background:rgba(225,38,38,.08);
  border:1px solid rgba(225,38,38,.12);
  font-size:1.45rem;
}
.category h3{margin:24px 0 10px;font-size:1.08rem}
.category p{margin:0;color:var(--muted);line-height:1.6;font-size:.93rem}
.learn{display:flex;align-items:center;gap:10px;margin-top:30px;color:#fff;font-size:.78rem;letter-spacing:.04em;text-transform:uppercase}
.learn span{color:var(--red);font-size:1.1rem}

.about-strip{
  padding:130px 5vw;
  background:#020508;
}
.about-strip .inner{
  width:min(900px,100%);
  margin:auto;
  text-align:center;
}
.about-strip h2{
  margin:0 0 20px;
  font-size:clamp(2.3rem,5vw,5rem);
  letter-spacing:-.055em;
}
.about-strip p{margin:0 auto;color:var(--muted);line-height:1.75;max-width:700px}

.footer{
  padding:30px 5vw;
  border-top:1px solid var(--line);
  background:#010203;
}
.footer-inner{
  width:100%;max-width:var(--max);
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:rgba(255,255,255,.5);
  font-size:.82rem;
}
.footer nav{display:flex;gap:24px}

.page-main{padding:150px 5vw 80px;min-height:100svh}
.page-hero,.page-content{
  width:100%;max-width:var(--max);
  margin:auto;
}
.page-hero{padding:70px 0 80px}
.page-hero p{max-width:680px;color:var(--muted);font-size:1.05rem;line-height:1.7}
.page-content{
  padding:70px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(3,8,12,.72);
  backdrop-filter:blur(16px);
}
.page-content h2{margin:0 0 18px;font-size:2rem}
.page-content p{color:var(--muted);line-height:1.75}
.empty-state{
  margin-top:40px;
  padding:32px;
  border:1px dashed rgba(255,255,255,.18);
  border-radius:14px;
  text-align:center;
  color:var(--muted)
}

@media(max-width:600px){
  .header-wrap{top:10px;padding:0 12px}
  .header{min-height:60px;padding:0 16px;border-radius:14px}
  .hero{padding-left:20px;padding-right:20px}
  .intro-section,.about-strip,.page-main{padding-left:20px;padding-right:20px}
  .category-grid{grid-template-columns:1fr}
  .page-content{padding:28px}
  .footer-inner{flex-direction:column}
}

/* Hamburger ikonu */
.hamburger{
  display:none;
  width:40px;
  height:40px;
  background:transparent;
  border:1px solid var(--line);
  border-radius:8px;
  cursor:pointer;
  position:absolute;
  visibility:hidden;
  z-index:60;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  transition:all .3s ease;
}
.hamburger span{position:relative;top:9px;left:11px}
.hamburger span::before{content:"";position:absolute;top:-6px;left:0}
.hamburger span::after{content:"";position:absolute;top:6px;left:0}
.hamburger.open span{background:transparent}
.hamburger.open span::before{top:0;transform:rotate(45deg)}
.hamburger.open span::after{top:0;transform:rotate(-45deg)}

/* Mobil menü */
.mobile-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(4px);
  z-index:98;
  opacity:0;
  transition:opacity .3s ease;
}
.mobile-overlay.open{
  display:block;
  opacity:1;
}
.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  width:280px;
  height:100%;
  background:rgba(4,12,19,.96);
  backdrop-filter:blur(20px);
  z-index:99;
  transform:translateX(-100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  padding:80px 28px 30px;
  display:flex;
  flex-direction:column;
  gap:0;
  border-right:1px solid var(--line);
  overflow-y:auto;
}
.mobile-menu.open{
  transform:translateX(0);
}
.mobile-menu-close{
  position:absolute;
  top:20px;
  right:20px;
  width:36px;
  height:36px;
  background:transparent;
  border:1px solid var(--line);
  border-radius:8px;
  color:var(--text);
  font-size:1.2rem;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:border-color .2s;
}
.mobile-menu-close:hover{border-color:rgba(255,255,255,.3)}
.mobile-menu a{
  display:block;
  padding:14px 0;
  font-size:1.05rem;
  font-weight:500;
  color:rgba(255,255,255,.78);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:color .2s;
}
.mobile-menu a:hover{color:#fff}
.mobile-menu .mobile-lang{
  display:flex;
  gap:12px;
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.mobile-menu .mobile-lang button{
  padding:10px 22px;
  border:1px solid var(--line);
  border-radius:8px;
  background:transparent;
  color:rgba(255,255,255,.5);
  font-size:.88rem;
  font-weight:600;
  cursor:pointer;
  transition:all .2s;
}
.mobile-menu .mobile-lang button.active{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}

@media(max-width:900px){
  .hamburger{display:grid;visibility:visible}
  .header{grid-template-columns:1fr auto}
  .nav{display:none}
  .lang{display:none}
}

/* Mobilde brand text düzeltmesi */
@media(max-width:600px){
  .brand span:last-child{display:inline}
}

/* ═══════════════════════════════════════
   KAPSAMLI MOBİL UYUMLULUK
   ═══════════════════════════════════════ */

@media(max-width:600px){
  /* Header */
  .header-wrap{top:8px;padding:0 10px}
  .header{min-height:52px;padding:0 14px;border-radius:10px}
  .brand{font-size:.82rem;gap:6px}
  .brand img{width:22px;height:22px}
  .lang{font-size:.72rem;gap:6px}

  /* Hero */
  .hero{padding:100px 16px 40px;min-height:auto}
  .hero-inner{min-height:auto}
  .hero-copy{padding-top:20px}
  .hero-wordmark{font-size:clamp(2.5rem,13vw,4.5rem);width:100%}
  .hero-copy>p:not(.kicker){font-size:.95rem}
  .actions{gap:10px}
  .btn{min-height:44px;padding:0 18px;font-size:.76rem}
  .hero-stats{grid-template-columns:1fr;margin-top:40px}
  .hero-stats .stat-item{min-height:80px}
  .hero-stats strong{font-size:1.8rem}

  /* Haber kartları */
  .news-grid{gap:18px}
  .news-card h3{font-size:.95rem;line-height:1.4}
  .news-card p{font-size:.85rem}
  .news-meta{font-size:.7rem}
  .home-section{padding:60px 16px}

  /* Kategori kartları */
  .work-grid{grid-template-columns:1fr;gap:14px}
  .work-card{min-height:auto;padding:22px}
  .category-grid{grid-template-columns:1fr;gap:12px}

  /* Alt sayfalar */
  .simple-page{padding:110px 16px 50px}
  .simple-hero{padding:30px 0 40px}
  .simple-hero h1{font-size:clamp(2rem,10vw,3.5rem)}
  .simple-hero p{font-size:.95rem}
  .page-content{padding:24px 18px;border-radius:12px}
  .page-content h2{font-size:1.4rem}

  /* Catalog */
  .catalog-grid{grid-template-columns:1fr;gap:14px}
  .catalog-card{padding:22px;min-height:auto}
  .catalog-card h2{font-size:1.1rem;margin:16px 0 8px}
  .tech-tags{gap:5px}
  .tech-tags span{padding:4px 7px;font-size:.65rem}

  /* About */
  .about-layout{grid-template-columns:1fr;gap:30px}
  .about-copy h1{font-size:clamp(2rem,8vw,3.2rem)}
  .about-copy p{font-size:.95rem}
  .about-stats{grid-template-columns:1fr 1fr;gap:10px}
  .about-stat{min-height:120px;padding:20px}
  .about-stat strong{font-size:1.8rem}
  .about-stat b{font-size:.85rem}

  /* Info grid */
  .info-grid{grid-template-columns:1fr}
  .info-card{padding:22px;min-height:auto}

  /* Products page */
  .products-page-grid{grid-template-columns:1fr}
  .product-page-card{min-height:auto;padding:22px}

  /* Contact */
  .contact-box{margin-top:24px;padding:22px}
  .contact-box h2{font-size:1.1rem}
  .contact-box h2 a{word-break:break-all}

  /* Footer */
  .footer{padding:0 16px}
  .footer-inner{min-height:auto;padding:24px 0}
  .footer-grid{grid-template-columns:1fr;justify-items:center;padding:20px 0;gap:14px}
  .footer-brand,.footer-copy,.footer-social{justify-self:center}
  .footer-brand{font-size:.82rem}
  .footer-social{gap:20px}
  .footer-social a{font-size:.72rem}
  .footer-copy{font-size:.65rem}
}

/* Tablet (600-900px) */
@media(min-width:601px) and (max-width:900px){
  .hero-wordmark{font-size:clamp(3rem,10vw,5.5rem)}
  .about-layout{grid-template-columns:1fr;gap:40px}
  .catalog-grid{grid-template-columns:1fr 1fr}
  .work-grid{grid-template-columns:1fr 1fr}
}


/* Ayrı sayfalar */
.simple-page{
  min-height:100svh;
  padding:150px 5vw 90px;
  position:relative;
  z-index:2;
}

.simple-page-inner{
  width:100%;max-width:var(--max);
  margin:auto;
}

.simple-hero{
  padding:70px 0 90px;
  max-width:850px;
}

.simple-hero h1{
  font-size:clamp(3rem,7vw,6.5rem);
}

.simple-hero p{
  max-width:700px;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.75;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.info-card{
  padding:34px;
  min-height:230px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(4,10,15,.68);
  backdrop-filter:blur(16px);
}

.info-card h2,
.info-card h3{
  margin:0 0 14px;
}

.info-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.products-page-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.product-page-card{
  min-height:300px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(4,10,15,.68);
  backdrop-filter:blur(16px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.2s ease;
}

.product-page-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.22);
  background:rgba(8,16,24,.82);
}

.product-page-card h2{
  margin:22px 0 12px;
  font-size:2rem;
}

.product-page-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.contact-box{
  margin-top:40px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(4,10,15,.68);
  backdrop-filter:blur(16px);
}

@media(max-width:760px){
  .info-grid,
  .products-page-grid{
    grid-template-columns:1fr;
  }
}


/* Yeni içerik bölümleri */
.home-section{
  position:relative;
  z-index:2;
  padding:110px 5vw;
  background:#020406;
  border-top:1px solid var(--line);
}

.home-section-inner{
  width:100%;max-width:var(--max);
  margin:auto;
}

.statement-section{
  text-align:center;
}

.statement-title{
  margin:0 auto 26px;
  max-width:980px;
  font-size:clamp(3.2rem,7.5vw,7.6rem);
  line-height:.92;
  letter-spacing:-.07em;
  font-weight:700;
}

.statement-title .red{
  color:var(--red);
}

.statement-text{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:clamp(1rem,1.8vw,1.22rem);
  line-height:1.75;
}

.stats-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:70px;
}

.stat-item{
  text-align:center;
  padding:22px;
}

.stat-item strong{
  display:block;
  color:var(--red);
  font-size:clamp(2rem,4vw,3.5rem);
  line-height:1;
}

.stat-item span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section-centered-head{
  text-align:center;
  margin:0 auto 50px;
  max-width:760px;
}

.section-centered-head h2{
  margin:0 0 14px;
  font-size:clamp(2.4rem,5vw,4.8rem);
  letter-spacing:-.055em;
}

.work-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.work-card{
  padding:28px;
  min-height:225px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(7,12,17,.78);
}

.work-card h3{
  margin:22px 0 10px;
  font-size:1.08rem;
}

.work-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:.93rem;
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.news-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(7,12,17,.8);
}

.news-image{
  height:150px;
  display:grid;
  place-items:center;
  margin-bottom:22px;
  border:1px solid rgba(255, 255, 255, 0);
  border-radius:12px;
  background:rgba(225,38,38,.035);
  color:rgba(255, 255, 255, 0);
  font-size:2rem;
}

.news-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:rgba(255,255,255,.42);
  font-size:.75rem;
}

.news-badge{
  padding:5px 9px;
  border-radius:6px;
  background:rgba(225,38,38,.1);
  color:var(--red);
  font-weight:700;
}

.news-card h3{
  margin:0 0 10px;
  font-size:1.06rem;
  line-height:1.45;
}

.news-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:.92rem;
}

.about-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:70px;
  align-items:center;
}

.about-copy h1{
  font-size:clamp(3rem,6vw,5.8rem);
}

.about-copy p{
  color:var(--muted);
  line-height:1.75;
  font-size:1.05rem;
}

.about-copy p + p{
  margin-top:14px;
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.about-stat{
  padding:28px;
  min-height:150px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(7,12,17,.8);
}

.about-stat strong{
  color:var(--red);
  font-size:2.3rem;
}

.about-stat b{
  display:block;
  margin-top:14px;
}

.about-stat span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:.78rem;
}

.catalog-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.catalog-card{
  padding:30px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(7,12,17,.82);
}

.catalog-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.catalog-tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:6px;
  background:rgba(225,38,38,.09);
  color:var(--red);
  font-size:.74rem;
  font-weight:700;
}

.catalog-arrow{
  color:rgba(255,255,255,.35);
}

.catalog-card h2{
  margin:24px 0 10px;
  font-size:1.4rem;
}

.catalog-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.tech-tags{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-top:24px;
}

.tech-tags span{
  padding:6px 9px;
  border-radius:6px;
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.45);
  font-size:.72rem;
}

@media(max-width:900px){
  .work-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .news-grid{
    grid-template-columns:1fr;
  }

  .about-layout{
    grid-template-columns:1fr;
  }
}

@media(max-width:650px){
  .stats-row,
  .about-stats,
  .catalog-grid,
  .work-grid{
    grid-template-columns:1fr;
  }
}






/* RED SHARK VOL6 — final layout corrections */
.header{
  grid-template-columns:auto minmax(0,1fr) auto;
}
.nav{
  justify-self:center;
  gap:clamp(16px,2vw,30px);
  font-size:.82rem;
  white-space:nowrap;
}

.hero{
  min-height:100svh;
  padding:140px 5vw 0;
  align-items:stretch;
}
.hero-inner{
  min-height:calc(100svh - 140px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-copy{
  width:min(1050px,100%);
  padding-top:clamp(30px,7vh,90px);
}
.hero-wordmark{
  display:inline-flex;
  flex-direction:column;
  align-items:stretch;
  width:max-content;
  max-width:100%;
  margin:0 0 32px;
  font-size:clamp(4.25rem,9vw,9rem);
  line-height:.84;
  letter-spacing:-.078em;
  text-align:left;
}
.hero-wordmark > span{
  display:block;
  white-space:nowrap;
}
.hero-wordmark .games-line{
  align-self:center;
  padding:0;
}
.hero-wordmark .tools-line{
  padding:0;
}
.hero-stats{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:72px;
  border-top:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg,rgba(2,5,8,.08),rgba(2,5,8,.62));
  backdrop-filter:blur(7px);
}
.hero-stats .stat-item{
  min-height:132px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:7px;
  border-right:1px solid rgba(255,255,255,.12);
}
.hero-stats .stat-item:last-child{border-right:0}
.hero-stats strong{
  font-size:clamp(2rem,3.4vw,3.2rem);
  line-height:1;
  letter-spacing:-.055em;
}
.hero-stats span{
  color:rgba(255,255,255,.55);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.13em;
}
.home-section:first-of-type{
  border-top:1px solid rgba(255,255,255,.08);
}

@media(max-width:1100px){
  .nav{gap:14px;font-size:.74rem}
  .header{padding-inline:20px}
}
@media(max-width:900px){
  .hero-wordmark{width:100%;font-size:clamp(3.6rem,13vw,6.5rem)}
  .hero-wordmark > span{white-space:normal}
  .hero-wordmark .games-line{align-self:flex-start}
}
@media(max-width:640px){
  .hero{padding-top:110px}
  .hero-inner{min-height:calc(100svh - 110px)}
  .hero-stats{grid-template-columns:1fr}
  .hero-stats .stat-item{min-height:92px;border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
  .hero-stats .stat-item:last-child{border-bottom:0}
}


/* RED SHARK VOL7 — hizalama, navbar, about ve footer */
.header-wrap{
  top:16px;
  transition:top .4s cubic-bezier(.4,0,.2,1),padding .4s cubic-bezier(.4,0,.2,1);
}
.header{
  min-height:58px;
  padding:0 20px;
  border-radius:10px;
  background:rgba(4,12,19,.50);
  box-shadow:0 14px 42px rgba(0,0,0,.18);
  transition:min-height .4s cubic-bezier(.4,0,.2,1),padding .4s cubic-bezier(.4,0,.2,1);
}
.brand{font-size:.88rem;gap:8px;transition:font-size .4s cubic-bezier(.4,0,.2,1)}
.brand img{width:27px;height:27px;transition:width .4s cubic-bezier(.4,0,.2,1),height .4s cubic-bezier(.4,0,.2,1)}
.nav{gap:8px;font-size:.78rem;transition:font-size .4s cubic-bezier(.4,0,.2,1),gap .4s cubic-bezier(.4,0,.2,1)}
.nav a{
  padding:8px 11px;
  border:1px solid transparent;
  border-radius:3px;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}

/* Navbar scroll'da küçülme */
.header-wrap.scrolled{top:8px}
.header-wrap.scrolled .header{min-height:44px;padding:0 16px}
.header-wrap.scrolled .brand{font-size:.82rem}
.header-wrap.scrolled .brand img{width:22px;height:22px}
.header-wrap.scrolled .nav{gap:6px;font-size:.72rem}
.header-wrap.scrolled .nav a{padding:6px 9px}
.nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.10);
}
.lang{font-size:.79rem}

.hero{padding-top:110px}
.hero-inner{align-items:center}
.hero-copy{
  width:min(1120px,100%);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero-wordmark{
  display:flex;
  width:fit-content;
  align-items:center;
  text-align:center;
}
.hero-wordmark .games-line,
.hero-wordmark .tools-line{align-self:center;padding:0}
.hero-copy>p:not(.kicker){margin-inline:auto}
.actions{justify-content:center}
.hero-stats{align-self:stretch}

.page-content{
  border-radius:14px;
  padding:58px;
}
.empty-state{
  border-radius:6px;
  font-size:1rem;
  font-weight:600;
  letter-spacing:.01em;
  background:rgba(255,255,255,.018);
}

.about-layout{
  grid-template-columns:minmax(0,1.05fr) minmax(480px,.95fr);
  gap:72px;
  align-items:center;
}
.about-copy{max-width:690px}
.about-copy h1{font-size:clamp(3.1rem,5.7vw,5.5rem);line-height:.96}
.about-stats{gap:12px}
.about-stat{
  min-height:164px;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-radius:10px;
  background:linear-gradient(145deg,rgba(6,14,21,.88),rgba(3,8,12,.82));
}
.about-stat strong{font-size:2.45rem;line-height:1}
.about-stat b{margin-top:16px;font-size:.94rem}
.about-stat span{margin-top:7px;font-size:.76rem;line-height:1.45}

.footer{
  padding:0 5vw;
  background:#020304;
}
.footer-grid{
  min-height:112px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:30px;
}
.footer-brand{
  justify-self:start;
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:.88rem;
  font-weight:800;
  letter-spacing:.08em;
}
.footer-brand img{width:28px;height:28px}
.footer-brand .red{color:var(--red)}
.footer-social{
  justify-self:center;
  display:flex;
  gap:30px;
}
.footer-social a{
  padding:8px 4px;
  color:rgba(255,255,255,.56);
  font-size:.78rem;
  transition:color .18s ease;
}
.footer-social a:hover{color:#fff}
.footer-copy{
  justify-self:end;
  color:rgba(255,255,255,.42);
  font-size:.72rem;
  letter-spacing:.11em;
}

@media(max-width:1050px){
  .about-layout{grid-template-columns:1fr;gap:44px}
  .about-copy{max-width:760px}
}
@media(max-width:900px){
  .header{min-height:56px}
  .footer-grid{grid-template-columns:1fr;justify-items:center;padding:28px 0;gap:16px}
  .footer-brand,.footer-copy,.footer-social{justify-self:center}
}
@media(max-width:650px){
  .hero-wordmark{font-size:clamp(3.15rem,15vw,5.5rem)}
  .page-content{padding:30px 22px}
  .footer-social{gap:20px}
}


/* VOL 8 — Haber kartlarında kutu ve hover kaldırıldı */
.news-grid{gap:28px;}
.news-card{padding:0 !important;border:none !important;border-radius:0 !important;background:transparent !important;box-shadow:none !important;backdrop-filter:none !important;overflow:visible !important;transition:transform .6s cubic-bezier(.4,0,.2,1),opacity .6s cubic-bezier(.4,0,.2,1) !important;}
.news-card:hover,.news-card:focus-within{transform:none !important;border-color:transparent !important;background:transparent !important;box-shadow:none !important;}
.news-image{width:100%;height:auto;aspect-ratio:16/9;margin:0 0 16px;padding:0;overflow:hidden;border:none !important;border-radius:0 !important;background:transparent !important;box-shadow:none !important;}
.news-image img{width:100%;height:100%;display:block;object-fit:cover;border:0;border-radius:0;transition:none !important;}
.news-card:hover .news-image img{transform:none !important;filter:none !important;}
.news-meta{margin-bottom:14px;}

/* Scroll animasyonu — haber kartları */
.news-card{
  opacity:0;
  transform:scaleX(1.4);
  transform-origin:center;
}
.news-card.visible{
  opacity:1;
  transform:scaleX(1);
}

/* Scroll animasyonu — work kartları */
.work-card{
  opacity:0;
  transform:scaleX(1.3);
  transform-origin:center;
  transition:transform .5s cubic-bezier(.4,0,.2,1),opacity .5s cubic-bezier(.4,0,.2,1);
}
.work-card.visible{
  opacity:1;
  transform:scaleX(1);
}

/* Mobilde animasyonları kapat */
@media(max-width:900px){
  .news-card,.work-card{
    opacity:1;
    transform:none;
  }
}
