* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #0b1220;
  color: #ffffff;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(5, 9, 20, 0.9);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: #4db8ff;
  text-decoration: none;
}

.logo span {
  color: #ffffff;
}

.nav a {
  padding: 10px 18px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav a:hover {
  background: rgba(77,184,255,0.15);
  box-shadow: 0 8px 22px rgba(77,184,255,0.35);
  transform: translateY(-2px);
}

.contact-btn {
  background: linear-gradient(135deg, #4db8ff, #1e90ff);
  color: #000 !important;
  box-shadow: 0 10px 30px rgba(77,184,255,0.55);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(77,184,255,0.7);
}

/* ================= HERO ================= */

.hero {
  height: 100vh;
  min-height: unset;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero::before {
  content: "";
  position: absolute;
  inset: -200px;
  background: radial-gradient(circle, rgba(77,184,255,0.35), transparent 60%);
  animation: glowFade 6s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(11,18,32,0),
    #0b1220
  );
  pointer-events: none;
}

.hero * {
  position: relative;
  z-index: 1;
}

@keyframes glowFade {
  0% { opacity: 0.9; }
  50% { opacity: 0.35; }
  100% { opacity: 0.9; }
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  max-width: 900px;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  color: #b9c7ff;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #4db8ff, #1e90ff);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 45px rgba(77,184,255,0.6);
}

/* ================= NEWS ================= */

.news {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  /* BUNLAR ÖNEMLİ */
  background: #0b1220 !important;
}


.news h2 {
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #fff;
}



.news-card {
  width: 100%;
  max-width: 900px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.news-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 70px rgba(77,184,255,0.28);
}


.news-card h3 {
  margin-bottom: 10px;
  color: #4db8ff;
}

/* ================= FOOTER ================= */

.footer {
  margin-top: 100px;
  padding: 28px 0;
  text-align: center;
  font-size: 14px;
  color: #9aa4b2;
  background: linear-gradient(
    to top,
    #000000 0%,
    #020617 55%,
    rgba(2,6,23,0) 100%
  );
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .header {
    padding: 14px 18px;
    flex-direction: column;
    gap: 12px;
  }

  .logo {
    font-size: 22px;
  }

  .nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    padding: 8px 14px;
    font-size: 13px;
  }

.hero {
  margin-bottom: 40px;
}


  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .news {
    padding: 60px 20px;
  }

  .news-card:hover {
    transform: none;
  }

  .footer {
    font-size: 12px;
    padding: 30px 10px;
  }
}

/* ===== ABOUT SECTION ===== */

.about-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 80px 80px;
  background: #0b1220;
  color: #ffffff;
}

/* Başlık ortada */
.about-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 60px;
}

/* İçerik SOLDA */
.about-content {
  max-width: 760px;
  margin: 0 auto; /* BLOĞU ORTALAR */
  text-align: left; /* YAZILAR SOLDA KALIR */
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #cfd8ff;
  margin-bottom: 18px;
}

.about-content h3 {
  margin: 35px 0 14px;
  color: #133eff;
  font-size: 18px;
}

.about-content ul {
  margin-left: 18px;
  margin-bottom: 18px;
}

.about-content li {
  margin-bottom: 8px;
  color: #e5e9ff;
}

.about-note {
  font-size: 15px;
  color: #b9c7ff;
}

/* Instagram SOL ALT */
.about-social {
  margin-top: 40px;
}


.instagram-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 10px 35px rgba(253, 29, 29, 0.35);
  transition: all 0.3s ease;
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(253, 29, 29, 0.55);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .about-section {
    padding: 90px 20px 120px;
  }

  .about-title {
    text-align: left;
    font-size: 28px;
    margin-bottom: 40px;
  }

  .about-social {
    left: 20px;
    bottom: 40px;
  }
}

/* ===== HEADER DEMIR KANATLAR ===== */

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kanatlar {
  height: 26px;
}

/* CANLI MAÇ - ESTETİK */
.live-match {
  margin-top: 16px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
}

.live-match strong {
  color: #4db8ff;
  font-size: 15px;
}

.live-match span {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.live-match small {
  color: #9aa6b2;
}

/* ayırıcı çizgi */
.news-divider {
  border: none;
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(to right, transparent, #2a3a4d, transparent);
}

/* === ANASAYFA DÜZELTME === */

/* hero gerçek tek ekran olsun */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 120px;
}

/* hero içeriği sola biraz daha düzgün otursun */
.hero-content {
  padding-top: 140px;
  padding-bottom: 120px;
  text-align: center;
  max-width: 700px;
}


/* logo çok yukarı kaçmasın */
.hero-logo img {
  width: 160px;
  margin-bottom: 24px;
}

/* Son Haberler hero'nun ALTINA düzgün insin */

.news h2 {
  width: 100%;
  max-width: 900px;
  margin-bottom: 20px;
}
.hero::after,
.hero::before {
  content: none !important;
}

/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background: #0b1220;
  color: #ffffff;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(5, 9, 20, 0.9);
  backdrop-filter: blur(10px);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: #4db8ff;
  text-decoration: none;
}

.logo span {
  color: #ffffff;
}

.kanatlar {
  height: 26px;
}

.nav a {
  padding: 10px 18px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav a:hover {
  background: rgba(77,184,255,0.15);
  box-shadow: 0 8px 22px rgba(77,184,255,0.35);
  transform: translateY(-2px);
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  padding: 140px 20px 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 700px;
}

.hero-logo img {
  width: 160px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  color: #b9c7ff;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #4db8ff, #1e90ff);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 45px rgba(77,184,255,0.6);
}

/* ================= NEWS ================= */
.news {
  padding: 80px 20px;
  background: linear-gradient(135deg, #10243f, #050b16);
}

.news h2 {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 28px;
}

.news-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(77,184,255,0.28);
}

.news-card h3 {
  margin-bottom: 10px;
  color: #4db8ff;
}

.news-card p {
  color: #d0d8ff;
}

/* ayırıcı */
.news-card hr {
  border: none;
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(to right, transparent, #2a3a4d, transparent);
}

/* CANLI MAÇ */
.live-match {
  margin-top: 16px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
}

.live-match strong {
  color: #4db8ff;
}

.live-match span {
  font-weight: 600;
}

/* ================= FOOTER ================= */
.footer {
  margin-top: 100px;
  padding: 28px 0;
  text-align: center;
  font-size: 14px;
  color: #9aa4b2;
  background: linear-gradient(
    to top,
    #000000 0%,
    #020617 55%,
    rgba(2,6,23,0) 100%
  );
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .header {
    padding: 14px 18px;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .news-card:hover {
    transform: none;
  }
}

/* =========================
   HABERLER SAYFASI
========================= */

.haberler-page .about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

/* HABER KARTI */
.haber-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}

/* Hover efekti */
.haber-item:hover {
  transform: translateY(-8px) scale(1.01);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* TARİH */
.haber-date {
  display: block;
  font-size: 13px;
  color: #8aa4c1;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* BAŞLIK */
.haber-title {
  font-size: 20px;
  font-weight: 600;
  color: #4fc3ff;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* AÇIKLAMA */
.haber-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 18px;
}

/* DEVAMINI OKU */
.haber-link {
  display: inline-block;
  font-size: 14px;
  color: #4fc3ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.haber-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* =========================
   GİRİŞ ANİMASYONU
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBİL
========================= */
@media (max-width: 768px) {
  .haberler-page .about-content {
    grid-template-columns: 1fr;
  }
}


.haberler-wrapper {
  max-width: 1100px;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}

.haber-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(79, 195, 255, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.haber-item {
  position: relative;
  overflow: hidden;
}

.haber-item:hover::before {
  opacity: 1;
}

