:root{
  --bg:#0B0B10;
  --paper:#141129;
  --paper2:#1A1636;
  --text:#F4F2FF;
  --muted:#BDB7E6;
  --line:#2A2357;
  --dark:#07070A;
  --accent:#9B5CFF;     /* premium gold */
  --accent2:#26E5FF;    /* vivid mint */
  --shadow:0 10px 30px rgba(0,0,0,.35);
}


*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(46,229,157,.18), transparent 60%), radial-gradient(900px 500px at 90% 0%, rgba(245,196,81,.18), transparent 55%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.wrap{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header{
  background: rgba(13,20,38,.78);
  border-bottom: 1px solid rgba(30,42,74,.8);
  backdrop-filter: blur(10px);
}

.header-top{padding:22px 0 10px}

.brand-name{font-weight:800;letter-spacing:.5px;font-size:22px}
.crumb{margin-top:8px;font-size:12px;color:var(--muted)}
.crumb a{color:var(--accent);text-decoration:none;font-weight:700}

.nav{background: rgba(5,7,13,.92); border-top:1px solid rgba(30,42,74,.6); border-bottom:1px solid rgba(30,42,74,.6)}
.nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
}
.nav-list a{
  display:block;
  padding:12px 16px;
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  border-right:1px solid rgba(255,255,255,.08);
  white-space: nowrap;
}
.nav-list a:hover{background: rgba(255,255,255,.06)}
.nav-list a.active{background: rgba(255,255,255,.06)}

.layout{
  display:grid;
  grid-template-columns: 1fr 340px;
  gap:22px;
  padding:22px 0;
}

.content{
  background:var(--paper2);
  border:1px solid var(--line);
  padding:22px;
  border-radius:14px;
  box-shadow: var(--shadow);
}

.sidebar{display:flex;flex-direction:column;gap:18px}

.page-title{margin:0 0 12px;font-size:28px;font-weight:800}

.logo-row{display:flex;align-items:center;gap:14px;margin:8px 0 14px}
.site-logo{height:46px;width:auto}
.logo-fallback{font-size:34px;font-weight:900;letter-spacing:.2px}

/* Eğer banner'ı <a class="cta-banner cta-link"> yaptınsa */
.cta-link{ text-decoration:none; cursor:pointer; display:flex; }
.cta-link:hover{ opacity:.92; }

.cta-banner{
  background: linear-gradient(135deg, rgba(245,196,81,.16), rgba(46,229,157,.10));
  border:1px solid rgba(245,196,81,.25);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  color:var(--text);
  border-radius:10px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:6px 0 14px;
}
.cta-left{font-weight:900;font-size:20px;color:var(--accent2)}
.cta-mid{font-weight:700;opacity:.95}

.cta-button{
  display:inline-block;
  border:1px solid rgba(245,196,81,.55);
  color: var(--text);
  font-weight:900;
  padding:12px 14px;
  text-decoration:none;
  border-radius:12px;
  margin:6px 0 16px;
  background: linear-gradient(135deg, rgba(245,196,81,.18), rgba(46,229,157,.10));
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.cta-button:hover{transform: translateY(-1px); background: linear-gradient(135deg, rgba(245,196,81,.28), rgba(46,229,157,.18));}

.content h2{margin:22px 0 8px;font-size:22px}
.content p{margin:0 0 12px;color: rgba(234,240,255,.88)}

.photo-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin:14px 0 18px
}
.photo{
  margin:0;
  border:1px solid rgba(30,42,74,.85);
  background: rgba(13,20,38,.65);
  padding:10px;
  border-radius:12px;
}
.photo img{
  width: 100%;
  height: auto;
  aspect-ratio: 764 / 466;   /* 764x466 oranını korur */
  display:block;
  object-fit:cover;
  background:rgba(30,42,74,.85);
  max-width:100%;
  border-radius:6px;
}
.photo figcaption{font-size:12px;color:var(--muted);margin-top:8px}

.box{background:var(--paper);border:1px solid var(--line);padding:14px}
.box-title{
  font-weight:900;
  font-size:13px;
  letter-spacing:.4px;
  padding-bottom:10px;
  border-bottom:2px solid var(--accent);
  margin-bottom:10px;
}
.list{list-style:none;margin:0;padding:0}
.list li{border-bottom:1px dotted var(--line)}
.list a{display:block;padding:9px 2px;text-decoration:none;color: rgba(234,240,255,.88);font-size:13px}
.list a:hover{color:var(--accent)}

.tags{display:flex;flex-direction:column;gap:8px}
.tag{
  background:rgba(16,27,51,.90);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  font-size:11px;
  padding:8px 10px;
  border-radius:2px;
}
.tag:hover{background:rgba(7,11,20,.98)}

.footer{background: rgba(5,7,13,.96); color: rgba(234,240,255,.85); margin-top:18px; border-top:1px solid rgba(30,42,74,.6)}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 0;
  font-size:13px;
  flex-wrap: wrap;
}
.footer-mini{opacity:.85}

.to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(245,196,81,1), rgba(46,229,157,1));
  color:#0b1020;
  text-decoration:none;
  border-radius:10px;
  font-weight:900;
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .layout{grid-template-columns:1fr !important}
  .sidebar{order:2}
  .content{order:1}
}

/* Telefonlarda daha ferah, menü/CTA düzeltmeleri */
@media (max-width: 720px){
  .header-top{padding:16px 0 8px}
  .brand-name{font-size:20px}
  .wrap{width: min(1200px, 94vw)}
  .content{padding:16px}
  .page-title{font-size:24px}

  .nav-list{justify-content:center}
  .nav-list a{
    padding:12px 12px;
    font-size:12px;
  }

  .cta-banner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .cta-mid{
    width:100%;
    text-align:left;
  }

  .cta-button{
    width:100%;
    text-align:center;
    box-sizing:border-box;
  }

  .footer-inner{
    justify-content:center;
    text-align:center;
  }
}


a, .cta-button, .tag, .nav-list a{transition: all .18s ease;}

.lead{margin:10px 0 18px; color: rgba(234,240,255,.85); font-size:15px}