* { 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-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 {
    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 Efektleri */
.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;
}
