/* Temel Sıfırlama */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #2e6d2e, #202060);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Konteyner */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* HEADER */
.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(to right, #202060, #2e6d2e);
}

.site-header .logo img {
  height: 60px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
}

.logo i {
  color: #00e6b8;
  font-size: 1.2rem;
}
/* Sosyal Butonlar */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-buttons a {
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  background: #333;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.social-buttons a:hover {
  transform: scale(1.05);
  background-color: #555;
}

/* Sosyal Medya Renkleri */
.discord { background-color: #5865F2; }
.telegram { background-color: #229ED9; }
.kick { background-color: #00E676; }
.twitch { background-color: #6441A5; }
.instagram { background-color: #E1306C; }
.youtube { background-color: #FF0000; }
.skype { background-color: #00AFF0; }

/* Kartlar */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-items: center;
}

.card {
  background-color: #2b2b70;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1);
}

.card h2 {
  color: #fdb813;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.card button {
  background-color: #ffcc00;
  color: #0c1b3c;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.card button:hover {
  background-color: #e6b800;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card.promo-style {
  width: 300px;
  padding: 50px;
  background-color: #202060;
  color: white;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin: 15px;
}

.rotate-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
  animation: rotateY360 2s linear infinite;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@keyframes blink {
  0% { opacity: 1; }
  100% { opacity: 0.5; }
}
@keyframes rotateY360 {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* Arama */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  flex-wrap: wrap;
  gap: 10px;
}

#searchInput {
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 50px;
  outline: none;
  width: 300px;
  background-color: #fff;
}

#searchInput:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

#searchBtn {
  padding: 12px 25px;
  border: none;
  background-color: #4CAF50;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
}

#searchBtn:hover {
  background-color: #45a049;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}
/* Reklamlar */
.reklam-sol, .reklam-sag {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 120px; /* örnek genişlik */
}

.reklam-sol {
  left: 0;
}

.reklam-sag {
  right: 0;
}

.reklam-sol img,
.reklam-sag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  z-index: 1000;
}

/* Orta reklam alanı */
.reklam-alani-orta {
  max-width: 1000px;
  margin: 20px auto;
  text-align: center;
}

.reklam-alani-orta img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.reklam-alani-orta img:hover {
  transform: scale(1.05);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .reklam-sol,
  .reklam-sag {
    width: 100px;
    height: 250px;
    padding: 5px;
  }

  .reklam-kapat {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
}

/* Footer */
footer {
  background: #2c6840;
  color: white;
  padding: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  footer div {
    text-align: center !important;
  }

  footer div:last-child {
    margin-top: 10px;
  }
}

.site-footer{
   font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #2e6d2e, #202060);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 100px; /* İsteğe göre sol boşluk için artırabilirsin */
}

.logo {
  margin-right: auto;
}

.logo img {
  display: block;
}
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
  }

  .logo {
    order: -1; /* LOGO sosyal medyanın üstüne çıkar */
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .logo-img {
    width: 160px;
    margin: 0 auto;
  }

  .social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-right: 20px;
}

}

/* Logo */
.logo {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.logo-center {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logo-img {
  width: 180px;
  max-width: 90%;
  height: auto;
}
.mobile-icons a {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
}

.mobile-icons a:hover {
  background-color: #ffffff33;
  transform: scale(1.1);
}
/* Responsive */
@media (min-width: 769px) {
  .mobile-header {
    justify-content: space-between;
    text-align: left;
    padding: 15px 40px;
  }
  .header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

  .logo-center {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.logo-center i {
  color: #00e6b8; /* elmas rengi */
  font-size: 1.5rem;
}

 .mobile-icons {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}
.mobile-icons a {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px;
  border-radius: 50%;
  font-size: 1rem;
  transition: 0.3s ease;
}
.mobile-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
/* Masaüstü optimize */
@media (min-width: 768px) {
  .logo-center {
    font-size: 1.6rem;
  }

  .mobile-icons {
    right: 30px;
  }
}
}
/* Sosyal ikonlar */
.mobile-icons {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}
/* Ana Header */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #1d1f7b, #2a6e35);
  padding: 15px 20px;
  position: relative;
}
.logo-center {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-center i {
  color: #00f7ff;
  font-size: 26px;
}
.icon-left, .icon-right {
  display: flex;
  align-items: center;
}
.icon-left a,
.icon-right a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s ease;
}
.icon-left a:hover,
.icon-right a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Sosyal Medya İkonları */
.social-icons {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}
.social-icons a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s ease;
}
.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.icon {
  background-color: #ffffff;
  color: #1e1e1e;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.icon.telegram {
  color: #229ED9;
}

.icon.instagram {
  color: #E1306C;
}
@media (max-width: 768px) {
  .logo {
    font-size: 1.2rem;
    padding-left: 10px;
  }

  .social-icons {
    gap: 10px;
    padding-right: 10px;
  }

  .icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

.social-icons a {
  color: white;
  font-size: 28px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffd700;
}
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .logo-img {
    width: 160px;
  }

  .social-icons {
    justify-content: center;
    gap: 15px;
  }
}
/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  flex-wrap: wrap;
}

/* LOGO */
.logo {
  flex: 1;
}

.logo-img {
  width: 200px;
  max-width: 170px;
  height: auto;
  display: block;
}

/* SOSYAL MEDYA */
.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.social-icons a {
  color: white;
  font-size: 26px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffd700;
}
.card.promo-style .card-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card.promo-style .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: rotateYLogo 3s linear infinite;
  transform-style: preserve-3d;
}
/* LOGO Y EKSENİNDE DÖNSÜN */
@keyframes rotateYLogo {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.rotate-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  animation: rotateY360 2s linear infinite;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@keyframes rotateY360 {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
} 

.card.promo-style:hover {
  transform: scale(1.03);
}

.card.promo-style img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  animation: glow 1.5s infinite alternate;
}

.card.promo-style h2 {
  color: #FFD700;
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0;
}

.card.promo-style p {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}

.card.promo-style button {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card.promo-style button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}



/* 📱 Mobil uyum */
@media (max-width: 768px) {
  .card.promo-style {
    max-width: 90%;
    height: 300px;
    padding: 20px 15px;
  }

  .card.promo-style img {
    max-width: 120px;
  }

  .card.promo-style h2 {
    font-size: 18px;
  }

  .card.promo-style p {
    font-size: 14px;
  }

  .card.promo-style button {
    font-size: 14px;
    padding: 10px 18px;
  }
}
.logo-band {
  background-color: #001f4d; /* koyu mavi arka plan */
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.logo-marquee {
  display: flex;
  gap: 30px;
  animation: marquee 25s linear infinite;
}

.logo-marquee a img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-marquee img:hover {
  transform: scale(1.1);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes glow {
  from {
    filter: brightness(1);
  }
  to {
    filter: brightness(1.4);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-marquee img {
    height: 34px;
  }

  .logo-band {
    max-width: 95%;
    margin-top: 10px;
  }
}

.casidrophakkinda {
  max-width: 800px;
  margin: 40px auto;
  padding: 25px;
  background: linear-gradient(to right, #001f4d, #0a2e6a);
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  line-height: 1.7;
  box-sizing: border-box;
}

.casidrophakkinda h3 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #00ffd5; /* ya da #00ffe7 */
}

.casidrophakkinda p {
  font-size: 15px;
  text-align: justify;
  white-space: pre-line;
  line-height: 1.8;
}

/* Mobil uyum için medya sorgusu */
@media (max-width: 768px) {
  .casidrophakkinda {
    padding: 20px;
    margin: 20px;
  }

  .casidrophakkinda h3 {
    font-size: 22px;
  }

  .casidrophakkinda p {
    font-size: 14px;
  }
}
