* { margin:0; padding:0; box-sizing:border-box; } 
body {
  font-family: Arial, sans-serif;
  background:#0b1b3a;
  color:#fff;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px; /* mobilde kenarlara yapışmayı engeller */
}


/* TOPBAR */
.topbar {
  background:#0e224a;
  padding:15px 0;
  box-shadow:0 3px 10px rgba(0,0,0,.4);
}
.topbar-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo {
  font-size:20px;
  font-weight:bold;
}
.social-buttons .social {
  margin-left:10px;
  padding:8px 14px;
  border-radius:6px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
}
.discord { background:#5865F2; }
.telegram { background:#229ED9; }
.twitch { background:#9146FF; }
.instagram { background:#E1306C; }
.youtube { background:#FF0000; }

.social i {
  margin-right:6px;
}

.social {
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(255,255,255,0);
}

.social:hover {
  transform: translateY(-2px) scale(1.05);
}

/* Platforma özel glow renkleri */
.discord:hover { box-shadow: 0 0 12px #5865F2; }
.telegram:hover { box-shadow: 0 0 12px #229ED9; }
.twitch:hover { box-shadow: 0 0 12px #9146FF; }
.instagram:hover { box-shadow: 0 0 12px #E1306C; }
.youtube:hover { box-shadow: 0 0 12px #FF0000; }


/* HERO */
.hero-banner {
  margin:30px 0;
  border-radius:20px;
  overflow:hidden;
}
.hero-banner img { width:100%; display:block; }

/* GRID */
.cards-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

/* PROMO CARD */
.promo-card {
  position:relative;
  padding:20px;
  border-radius:18px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:140px;
  box-shadow:0 10px 20px rgba(0,0,0,.4);
  transition:.3s;
}
.promo-card:hover { transform:translateY(-5px); }

.brand-logo { width:110px; margin-bottom:10px; }
.promo-text h4 { font-size:16px; margin-bottom:5px; }
.promo-text p { font-size:13px; opacity:.9; }

.btn-white {
  align-self:flex-end;
  background:#fff;
  color:#000;
  padding:6px 12px;
  border-radius:20px;
  font-weight:bold;
  text-decoration:none;
  font-size:13px;
}

.badge {
  position:absolute;
  top:10px;
  right:10px;
  width:32px;
}

/* GRADIENTLER */
.gradient-orange { background:linear-gradient(135deg,#ff9a00,#ff3d00); }
.gradient-green { background:linear-gradient(135deg,#00c853,#64dd17); }
.gradient-red { background:linear-gradient(135deg,#d50000,#ff1744); }
.gradient-grey { background:linear-gradient(135deg,#5f5c57,#5b5553); }
.gradient-black { background:linear-gradient(135deg,#020202,#1a1817); }
.gradient-yellow { background:linear-gradient(135deg,#cd7f08,#e1c123); }
.gradient-blue { background:linear-gradient(135deg,#1600ff,#1000ff); }
.gradient-purple { background:linear-gradient(135deg,#ff00d9,#6e00ff); }

/* SIDE BANNERS */
.side-banner {
  position:fixed;
  top:120px;
  width:120px;
  height:70%;
  background:#132a57;
  border-radius:20px;
  padding:15px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
}
.side-banner.left { left:10px; }
.side-banner.right { right:10px; }

.btn-yellow {
  background:#ffd600;
  color:#000;
  padding:8px 10px;
  border-radius:20px;
  text-decoration:none;
  font-weight:bold;
  display:inline-block;
  margin-top:10px;
}

/* FOOTER */
.footer {
  text-align:center;
  padding:30px 0;
  margin-top:40px;
  background:#08142b;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .cards-grid { grid-template-columns:repeat(2,1fr); }
  .side-banner { display:none; }
}
@media(max-width:600px){
  .cards-grid { grid-template-columns:1fr; }
}

.ribbon {
  position:absolute;
  left:-10px;
  top:10px;
  background:#ff0033;
  color:#fff;
  padding:4px 12px;
  font-size:11px;
  transform:rotate(-45deg);
  font-weight:bold;
}

.pulse { animation:pulse 1.5s infinite; }
@keyframes pulse {
  0% { box-shadow:0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow:0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow:0 0 0 0 rgba(255,255,255,0); }
}

/* BLOG */
.blog-page { max-width: 900px; margin: 80px auto; }
.blog-page-title { font-size: 36px; margin-bottom: 40px; color: #fff; }
.blog-list { display: flex; flex-direction: column; gap: 40px; }
.blog-row { display: flex; gap: 25px; background: #2c2c2c; padding: 20px; border-radius: 14px; }
.blog-row img { width: 220px; height: 140px; object-fit: cover; border-radius: 10px; }
.blog-row-content h2 { font-size: 22px; margin: 8px 0; }
.blog-row-content h2 a { color: #fff; }
.blog-row-content p { color: #ccc; line-height: 1.6; }
.blog-date { font-size: 14px; color: #aaa; }

.breadcrumb { font-size: 14px; margin-bottom: 20px; color: #aaa; }
.breadcrumb a { color: #ff6a00; }

/* home blog section */
.home-blog-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0f0f, #151515);
  color: #fff;
}
.home-blog-section h2 { text-align: center; font-size: 32px; margin-bottom: 10px; }
.home-blog-section .section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #b5b5b5;
  font-size: 15px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: #1e1e1e; border-radius: 14px; overflow: hidden; transition: all 0.35s ease; }
.blog-card a { text-decoration: none; color: inherit; display: block; height: 100%; }
.blog-image { height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-content { padding: 25px; }
.blog-date { font-size: 13px; color: #aaa; display: block; margin-bottom: 10px; }
.blog-content h3 { font-size: 20px; line-height: 1.4; margin-bottom: 12px; }
.blog-content p { font-size: 14px; color: #cfcfcf; line-height: 1.6; margin-bottom: 20px; }
.read-more { font-size: 14px; color: #ff7a00; font-weight: 600; }

/* Hover */
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-card:hover .read-more { color: #ffa24d; }

/* Responsive */
@media (max-width: 992px) { .blog-grid { grid-template-columns: 1fr; } }

.promo-card { position: relative; }
.card-link { position: absolute; inset: 0; z-index: 1; }
.btn-white { position: relative; z-index: 2; }

.hero-banner a { display: block; }
.hero-banner img { width: 100%; height: auto; display: block; }

html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* =========================
   ✅ SABİT LOGO BOYUT FIX
   hiçbir şeyi bozmaz
   ========================= */
.post-logo{
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 18px auto;
  border-radius: 14px;
}

/* Blog öne çıkan görsel 200x200 sabit */
.blog-page .blog-row {
    display:flex;
    align-items:flex-start;
    gap:25px;
}

.blog-page .blog-row > img {
    width:200px !important;
    height:200px !important;
    object-fit:cover !important;
    border-radius:12px;
    flex:0 0 200px; /* ✅ 250px yerine 200px */
}

/* BLOG - Mobil görsel küçültme */
@media (max-width: 768px) {

  .blog-page .blog-row {   /* ✅ sadece blog sayfasını etkilesin */
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .blog-page .blog-row > img {  /* ✅ aynı hedef: direkt img */
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    border-radius: 12px;
    flex:0 0 100px; /* ✅ mobilde alanı da 100px sabitle */
  }

  .blog-row-content {
    flex: 1;
    min-width: 0; /* ✅ taşmayı önler */
  }

}

/* ✅ NORMAL BLOG MOBİLİ AMP GİBİ YAP (Sadece mobilde) */
@media (max-width: 768px){

  /* sayfa boşluklarını toparla */
  .blog-page{
    margin: 30px auto !important;
  }
  .blog-page-title{
    font-size: 28px !important;
    margin-bottom: 18px !important;
  }
  .blog-list{
    gap: 14px !important;
  }

  /* kartı AMP gibi yatay satır yap */
  .blog-row{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 16px !important;
  }

  /* soldaki görsel: 90x90 sabit kare */
  .blog-row > img,
  .blog-row img{
    width: 90px !important;
    height: 90px !important;
    max-width: none !important;
    flex: 0 0 90px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  /* TAŞMA SORUNUNU BİTİREN KRİTİK KURAL */
  .blog-row-content{
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .blog-date{
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }

  .blog-row-content h2{
    margin: 0 0 6px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
  }

  /* başlık max 2 satır - taşma yok */
  .blog-row-content h2 a{
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;

    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  /* açıklama max 2 satır */
  .blog-row-content p{
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;

    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
