/*
Theme Name: Wordpress Black Sohbet Temasi
Theme URI: https://www.sohbettema.com/black
Author: HizliShell internet Hizmetleri
Author URI: https://www.hizlishell.com
Description: Wordpress Black Sohbet Temasi
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: black
*/
    :root {
      --primary: linear-gradient(to right, #ff0303, #ffffff, green, blue);
      --primary-hover: #4f46e5;
      --glass: rgba(255, 255, 255, 0.1);
      --text: rgba(255, 255, 255, 0.95);
      --background: #ffff;

    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
	  top: 2%;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: linear-gradient(2deg, oklab(0 0 0));
      line-height: 1.5;
    }

    /* Navigation Styles */
    .nav-container {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: linear-gradient(45deg, black, transparent);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      transition: opacity 0.3s ease;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      position: relative;
      padding: 0.5rem 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--primary);
      padding: 0.75rem 1.5rem;
      border-radius: 0.75rem;
      transition: all 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }

    /* Hamburger Menu Styles */
    .hamburger-menu {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
    }

    .hamburger-menu span {
      display: block;
      height: 3px;
      background: var(--text);
      transition: 0.3s ease;
    }

    .mobile-nav {
      display: none;
      position: absolute;
      top: 80px;
      right: 2rem;
      background: rgba(15, 23, 42, 0.9);
      border-radius: 0.75rem;
      padding: 1rem;
      width: 200px;
    }

    .mobile-nav a {
      display: block;
      padding: 1rem;
      color: var(--text);
      text-decoration: none;
      margin-bottom: 0.5rem;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column-reverse; /* Sohbet kısmı üstte olacak */
    }

    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      opacity: 0.9;
    }

    .hero-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, black, transparent);

      backdrop-filter: blur(4px);
    }

    .hero-content {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      padding: 8rem 2rem 2rem;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: flex-start; /* Sohbet üstte olacak */
    }

    .hero-text h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      background: linear-gradient(45deg, #fff 60%, #a5b4fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-text p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin-bottom: 2rem;
    }

    /* Auth Card Styles */
    .auth-card {
      background: linear-gradient(45deg, black, transparent);
      backdrop-filter: blur(10px);
      border-radius: 7.5rem;
      padding: 4.5rem;
      border: 1px solid #ff0000;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	  position: relative;
	  left: -130px;
    }
	
/* Mobilde Auth Card'ı biraz daha aşağıya almak */
@media (max-width: 768px) {
  .auth-card {
    margin-top: 3rem;
	position: relative;
	left: 10px;
  }
}	

    .auth-card h2 {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 2rem;
    }

    .input-field {
      margin-bottom: 1.5rem;
    }

    .input-field input {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      color: var(--text);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .input-field input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    }

    .btn {
      width: 100%;
      padding: 1rem;
      border: none;
      border-radius: 0.75rem;
      font-size: 1.5rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
	  color: black;
    }

    .btn-primary {
      background: #8b4513;
      color: white;
    }

    .btn-primary:hover {
      background: red;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        padding-top: 6rem;
      }
      
      .hero-text h1 {
        font-size: 2.75rem;
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 1rem;
      }

      .nav-links {
        display: none;
      }

      .hamburger-menu {
        display: flex;
      }

      .mobile-nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 2rem;
        background: rgba(15, 23, 42, 0.9);
        border-radius: 0.75rem;
        padding: 1rem;
        width: 200px;
      }

      .hero-content {
        padding: 4rem 1.5rem;
        gap: 2rem;
      }

      .auth-card {
        padding: 2.5rem;
      }

      .hero-text h1 {
        font-size: 2.25rem;
		margin-bottom: 1.5rem;
      }

  .hero-text p {
    font-size: 1rem;  /* Yazıyı biraz daha küçük yap */
    line-height: 1.4;  /* Daha sıkı satır aralığı */
    max-width: 90%;  /* Daha geniş içerik alanı */
  }
  
  .hero-section {
    height: auto;  /* Hero section'ın yüksekliğini azalt */
  } 
    }
	
.hscontainer h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: black;
}

:root {
    --primary-blue: #2A6AFF;
    --background: linear-gradient(45deg, #1a73e8, #2A6AFF);
    --control-bg: rgba(255,255,255,0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

	
	
	
.post-grid, .category-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.post-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

.post-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(233,30,99,0.1);
  transition: transform 0.3s ease;
  margin-left: 22px;
  margin-right: 22px;  
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-image {
  height: 200px;
  background: #ffffff;
  position: relative;
}

.post-image img {
    width: 92%;
    height: 150%;

    padding: 7px; /* İsterseniz padding ekleyebilirsiniz */
    display: block; /* Block display, boşlukları kaldırır */
    margin: 0 auto; /* Resmi ortalamak için */
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #e91e6399;
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
}

.post-content h3 a {
  color: #001dff;
  text-decoration: none;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}
	
	
.mkcontainer {
  max-width: 90%;
  margin: 4rem auto;
  padding: 0rem;

  box-shadow: 0 11px 50px rgb(255 255 255);
  border-radius: 1.5rem;
  color: #000000;
  backdrop-filter: blur(15px); /* Bu, arka planı buzlu yapar */
  -webkit-backdrop-filter: blur(15px); /* Safari için ekstra önlem */
}

.mkcontainer h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: black;
}




/* **Responsive Tasarım (Mobil Uyumlu)** */

/* Tablet (768px ve daha küçük ekranlar) için düzenleme */
@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 sütun yap */
  }

  .mkcontainer {
    max-width: 95%; /* Container genişliğini biraz daha artır */
    padding: 1.5rem; /* İç padding azalt */
  }

  .post-content h3 {
    font-size: 1.2rem; /* Başlık boyutunu biraz küçült */
  }

  .post-meta {
    font-size: 0.8rem; /* Meta bilgileri biraz küçült */
  }

  .post-card {
    margin-left: 10px;
    margin-right: 10px; /* Kartlar arasındaki boşlukları daralt */
  }

  .post-image {
    height: 150px; /* Görsel yüksekliğini biraz kısalt */
  }
}

/* Mobil (480px ve daha küçük ekranlar) için düzenleme */
@media (max-width: 480px) {
  .post-grid {
    grid-template-columns: 1fr; /* 1 sütun yap */
  }

  .mkcontainer {
    max-width: 100%; /* Container tamamen ekran genişliğine yayılır */
    padding: 1rem; /* İç padding daha da küçük yapılır */
  }

  .post-content h3 {
    font-size: 1rem; /* Başlık boyutunu küçük ekran için optimize et */
  }

  .post-meta {
    font-size: 0.75rem; /* Meta bilgileri daha da küçült */
  }

  .post-card {
    margin-left: 5px;
    margin-right: 5px; /* Kartlar arasındaki boşluk daha da daraltılır */
  }

  .post-image {
    height: 120px; /* Görsel yüksekliği mobilde daha da küçülür */
  }

  .image-placeholder {
    font-size: 2rem; /* Placeholder ikon boyutunu küçük ekranlarda küçült */
  }
}




























.site-footer {
    background: linear-gradient(45deg, black, transparent);
    color: #ecf0f1;
    padding: 50px 0 30px;
    border-top: 3px solid #ff0000;
    font-family: 'Segoe UI', sans-serif;
}

.ftcontainer {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 30px;
    flex-wrap: wrap; /* Bu, wrap kullanarak öğelerin taşmasını engeller */
}

/* Açıklama Container */
.acikcontainer {
    flex: 1 1 30%;
    padding-right: 30px;
}

.footer-about-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.section-title {
    color: #e67e22;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: #3498db;
    border-radius: 3px;
}

.about-text {
    line-height: 1.8;
    color: #bdc3c7;
    font-size: 0.95rem;
}

/* Orta Logo Container */
.sitecontainer {
    flex: 1 1 35%;
    text-align: center;
}

.brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.logo-container {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.site-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 8px;
}

.tagline {
    font-size: 0.9rem;
    color: #ecf0f1;
    opacity: 0.8;
}

.social-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-circle {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
}

.social-circle:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

/* Sağ Bağlantılar Container */
.bagcontainer {
    flex: 1 1 25%;
    padding-left: 30px;
}

.links-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.snav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e67e22;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.link-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding-left: 25px;
}

.link-item:hover:before {
    transform: scaleY(1);
}

.link-icon {
    margin-right: 15px;
    color: #e67e22;
    font-size: 0.8rem;
    transition: margin 0.3s ease;
}

.link-item:hover .link-icon {
    margin-right: 20px;
}

.link-text {
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .ftcontainer {
        flex-wrap: wrap;
        gap: 30px;
    }

    .acikcontainer,
    .sitecontainer,
    .bagcontainer {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .ftcontainer {
        flex-direction: column;
        gap: 40px;
    }

    .acikcontainer,
    .sitecontainer,
    .bagcontainer {
        flex: 1 1 100%;
        padding: 0;
    }

    .site-logo {
        font-size: 1.8rem;
    }

    .social-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .bagcontainer {
        padding-left: 0;
    }
    
    .link-item {
        padding: 12px 15px;
    }

    /* Daha küçük ekranlar için bağlantı metni küçültme */
    .link-text {
        font-size: 0.85rem;
    }

    /* Sosyal medya ikonlarını küçültme */
    .social-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}



.tag-cloud a {
  display: inline-block;
  margin: 4px;
  padding: 10px 16px;
  background-color: #046a58;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
  font-size: 14px;
}

.tag-cloud a:hover {
  background-color: orange;
  color: #fff;
  font-size: 20px;
}

/* Sayfalama Stilleri */
.wp-pagenavi {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 1.1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Normal Sayfa Linkleri */
.wp-pagenavi a {
    background: #f8f9fa;
    color: #2d2d2d;
    border-color: #e9ecef;
}

.wp-pagenavi a:hover {
    background: linear-gradient(45deg, #2d2d2d, #404040);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Mevcut Sayfa */
.wp-pagenavi span.current {
    background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
    color: #fff !important;
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.wp-pagenavi span.current:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

/* Next/Previous Özel Stilleri */
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
    position: relative;
    padding: 0 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.wp-pagenavi a.nextpostslink:after,
.wp-pagenavi a.previouspostslink:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 8px;
    transition: transform 0.3s ease;
}

.wp-pagenavi a.previouspostslink:before {
    content: '\f104';
    margin-right: 10px;
}

.wp-pagenavi a.nextpostslink:after {
    content: '\f105';
    margin-left: 10px;
}

.wp-pagenavi a.nextpostslink:hover:after {
    transform: translateX(3px);
}

.wp-pagenavi a.previouspostslink:hover:before {
    transform: translateX(-3px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .wp-pagenavi {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .wp-pagenavi a,
    .wp-pagenavi span {
        min-width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .wp-pagenavi a.nextpostslink,
    .wp-pagenavi a.previouspostslink {
        padding: 0 15px;
    }
}





        .bg-container {
            border-radius: 25px;
            padding: 40px 30px;
            max-width: 1200px;
            margin: 50px auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .platforms-wrapper {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .platform-item {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 25px;
            transition: all 0.3s ease;
			box-shadow: 0 0px 50px rgb(255 255 255);
    backdrop-filter: blur(10px); /* Buzlu cam efekti */
    -webkit-backdrop-filter: blur(10px); /* Safari desteği */
    border: 1px solid rgba(255, 255, 255, 0.3); /* İnce bir kenarlık */
}

        .platform-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .icon-wrapper {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mirc-icon { background: #2580ff20; color: #2580FF; }
        .playstore-icon { background: #00c85320; color: #00C853; }
        .appstore-icon { background: #007aff20; color: #007AFF; }

        .platform-icon {
            font-size: 1.8em;
        }

        .content-wrapper {
            flex-grow: 1;
        }

        .platform-title {
            font-size: 1.4em;
            margin: 0 0 8px 0;
            color: #00c6ff;
            font-weight: 600;
        }

        .download-text {
            color: #ffffff;
            font-size: 0.95em;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .platforms-wrapper {
                flex-direction: column;
            }
            
            .platform-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                min-width: auto;
            }
            
            .icon-wrapper {
                width: 50px;
                height: 50px;
            }
            
            .platform-icon {
                font-size: 1.5em;
            }
            
            .content-wrapper {
                text-align: center;
            }
        }
		


.left-side {
  display: flex;
  flex-direction: column;
  padding: 20px;
  max-width: 140%;
  margin: auto;
  margin-left: -30%;
  margin-top: 3%;
  width: 150%;
}

.card-slider {
  position: relative;
  height: 450px; /* 3 kart yüksekliği kadar */
  overflow: hidden;
}

.slider-track {
  display: flex;
  flex-direction: column;
  animation: slideUp 20s linear infinite;
}

.download-card {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.download-card i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #00c4ff;
}

.download-card h3 {
  margin: 0;
  font-family: 'Aclonica', sans-serif;
  font-size: 18px;
}

.download-link {
  font-family: 'Audiowide', sans-serif;
  text-decoration: none;
  color: inherit;
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Mobil görünüm için */
@media (max-width: 768px) {
  .left-side {
    padding: 10px;
    max-width: 95%;
    margin: 20px auto;
  }

  .card-slider {
    height: 330px; /* Her biri yaklaşık 100-110px olacak şekilde 3 kart sınırı */
  }

  .download-card {
    padding: 15px 10px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .download-card i {
    font-size: 24px;
  }

  .download-card h3 {
    font-size: 15px;
  }
}







.top-containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px;
}

.container-box {
  flex: 0 1 25%;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0px 50px rgb(255 255 255 / 50%);
  padding: 25px;
  color: white;
  transition: all 0.3s ease;
}

.container-box2 {
  flex: 0 1 66%;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0px 50px rgb(255 255 255 / 50%);
  padding: 25px;
  color: white;
  transition: all 0.3s ease;
}

.container-box:hover,
.container-box2:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.container-box h2,
.container-box2 h2 {
  font-family: 'Aclonica', sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: #ff4b5c;
  display: flex;
  align-items: center;
  gap: 10px;
}

.container-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container-box ul li {
  margin-bottom: 10px;
}

.container-box ul li a {
  color: #00f7ff;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Audiowide', sans-serif;
  transition: all 0.2s ease-in-out;
}

.container-box ul li a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #00f7ff;
}

.container-box2 p {
  font-family: 'Aclonica', sans-serif;
  line-height: 1.5;
  font-size: 16px;
  color: #f1f1f1;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .top-containers {
    flex-direction: column;
    padding: 20px;
  }

  .container-box,
  .container-box2 {
    flex: 1 1 100%;
    padding: 20px;
  }
}



.gs-sozu {
  font-family: 'Audiowide', sans-serif;
  font-size: 16px;
  color: #fff;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;  
}

@media (min-width: 768px) {
  .gs-sozu {
    font-size: 20px;
  }
}


.gs-card {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  width: 89%;
  margin: 20px auto;
  box-sizing: border-box;
  word-wrap: break-word; 
  overflow-wrap: break-word;
  box-shadow: 0 0px 50px rgb(255 0 0 / 50%);
}

.gs-card:hover {
  transform: translateY(-5px);
}

.gs-card i {
  font-size: 32px;
  margin-bottom: 10px;
  color: orange;
}

.gs-card h3 {
  margin: 0;
  font-family: 'Aclonica', sans-serif;
  font-size: 18px;
}

@media (max-width: 767px) {
  .gs-card {
    width: 90%;
    max-width: 100%;
  }
}