﻿   /* === GENEL STİLLER === */
    :root {
        --primary-color: #2c5aa0;
        --secondary-color: #1e3a6b;
        --accent-color: #ff6b00;
        --light-color: #22262F; /* Beyaz alanlar yerine koyu */
        --dark-color: #343a40;
        --text-color: #fff; /* Beyaz metin */
        --text-light: #ccc;
        --border-color: #444; /* Beyaz yerine koyu sınır */
        --footer-bg: #171A21;
        --footer-text: #ccc;
        --footer-link: #fff;
        --box-bg: #22262F; /* Tüm kutu/box arka plan */
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: #171A21;
    }

    /* === HEADER === */
    header {
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--primary-color);
        background-color: #171A21;
    }

    header h2 {
        font-size: 1.75rem;
        color: var(--primary-color);
        display: inline-block;
    }

    header a {
        float: right;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    header a:hover {
        text-decoration: underline;
    }

    /* === FEATURED PRODUCTS BANNER === */
    .featured-products {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin: 30px 0;
    }

    .featured-products a {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
        background: var(--box-bg);
        color: var(--text-color);
    }

    .featured-products a:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    }

    .featured-products img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* === PRODUCT GRID === */
    .grid-6 {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        margin: 30px 0;
    }

    .product {
        background: var(--box-bg);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--text-color);
    }

    .product:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .product-image {
        display: block;
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .product:hover .product-image img {
        transform: scale(1.05);
    }

    .video-info {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 4px;
        padding: 5px;
    }

    .product label {
        display: block;
        padding: 8px 12px;
        background: var(--light-color);
        font-size: 0.8rem;
        color: var(--text-light);
        border-bottom: 1px solid var(--border-color);
    }

    .product h3 {
        padding: 12px;
        font-size: 0.95rem;
        height: 50px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-store-info {
        padding: 0 12px;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 10px;
    }

    .product-store-info .icon {
        width: 16px;
        height: 16px;
        fill: var(--accent-color);
    }

    .original-price {
        padding: 0 12px;
        color: var(--text-light);
        text-decoration: line-through;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .original-price label {
        background: var(--accent-color);
        color: white;
        padding: 2px 5px;
        border-radius: 3px;
        font-size: 0.7rem;
        display: inline;
    }

    .selling-price {
        padding: 0 12px 12px;
        font-weight: bold;
        font-size: 1.1rem;
        color: var(--primary-color);
    }

    /* === BLOG SECTION === */
    .blog-left-column-item {
        background: var(--box-bg);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .blog-left-column-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .blog-left-column-item-image {
        display: block;
        height: 200px;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .blog-left-column-item:hover .blog-image img {
        transform: scale(1.05);
    }

    .blog-left-column-item-header {
        padding: 15px;
    }

    .blog-left-column-item-header h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .blog-left-column-item-header h2 a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .blog-left-column-item-header h2 a:hover {
        color: var(--accent-color);
    }

    .blog-left-column-item-body {
        padding: 0 15px;
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-left-column-item-footer {
        padding: 15px;
        border-top: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .blog-left-column-item-footer-date,
    .blog-left-column-item-footer-author {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .blog-left-column-item-footer-date .icon,
    .blog-left-column-item-footer-author .icon {
        width: 14px;
        height: 14px;
        fill: var(--text-light);
    }

    .blog-left-column-item-footer-author a {
        display: flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        color: var(--text-light);
    }

    .blog-left-column-item-footer-author a:hover {
        color: var(--accent-color);
    }

    .author-image img {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        object-fit: cover;
    }

    .blog-left-column-item-footer-link {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .blog-left-column-item-footer-link:hover {
        text-decoration: underline;
    }

    /* === DONATE SECTION === */
    .donates .grid-6 {
        margin: 30px 0;
    }

    .donate {
        background: var(--box-bg);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        text-decoration: none;
        color: var(--text-color);
        display: block;
        text-align: center;
    }

    .donate:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .donate picture {
        display: block;
        height: 200px;
        overflow: hidden;
    }

    .donate img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .donate:hover img {
        transform: scale(1.05);
    }

    .donate h2 {
        padding: 15px;
        font-size: 1.2rem;
        color: var(--primary-color);
    }

    .networks {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 0 15px 15px;
    }

    .networks .icon {
        width: 20px;
        height: 20px;
        fill: var(--text-light);
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 8px 15px;
        background: var(--primary-color);
        color: white;
        border-radius: 4px;
        font-weight: 500;
        margin-bottom: 15px;
        transition: var(--transition);
    }

    .btn:hover {
        background: var(--secondary-color);
    }

    .btn .icon {
        width: 16px;
        height: 16px;
        fill: white;
    }

    /* === ABOUT SECTION === */
    .section-content {
        background: var(--box-bg);
        border-radius: 8px;
        padding: 30px;
        box-shadow: var(--shadow);
        margin: 30px 0;
    }

    .about-section-body h2 {
        color: var(--primary-color);
        margin: 25px 0 15px;
        font-size: 1.5rem;
    }

    .about-section-body h2:first-child {
        margin-top: 0;
    }

    .about-section-body p {
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .about-section-body ul {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .about-section-body li {
        margin-bottom: 5px;
        line-height: 1.5;
    }

    .about-section-body strong {
        color: var(--primary-color);
    }

    /* === ICON STYLES === */
    .icon {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    /* === RESPONSIVE DESIGN === */
    @media (max-width: 1200px) {
        .grid-6 {
            grid-template-columns: repeat(4, 1fr);
        }

        .featured-products {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .grid-6 {
            grid-template-columns: repeat(3, 1fr);
        }

        .blogs-container {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .grid-6 {
            grid-template-columns: repeat(2, 1fr);
        }

        .featured-products {
            grid-template-columns: 1fr;
        }

        header a {
            float: none;
            margin-top: 10px;
            display: inline-flex;
        }

        .blog-left-column-item-footer {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 576px) {
        .grid-6 {
            grid-template-columns: 1fr;
        }

        .section-content {
            padding: 20px;
        }
    }

    /* === CLEARFIX === */
    .clearfix::after {
        content: "";
        clear: both;
        display: table;
    }

@media (min-width: 1024px) {
  .blogs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 60px;
  }

  .blog-left-column-item {
    display: flex;
    flex-direction: row;
    background: #171A21; /* PC için koyu arka plan */
    border: 1px solid #2c2f38; /* Hafif koyu sınır */
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    transition: all 0.3s ease;
    color: #fff; /* Yazılar beyaz */
  }

  .blog-left-column-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); /* Hover gölgeyi biraz koyulaştırdım */
  }

  /* 🔹 Görsel ufak */
  .blog-left-column-item-image {
    flex: 0 0 28%;
    max-width: 28%;
    height: 100%;
  }

  .blog-left-column-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-right: 1px solid #2c2f38; /* Görselle sınırı koyulaştırdım */
  }

  /* 🔹 Yazı geniş */
  .blog-left-column-item-content {
    flex: 1;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .blog-left-column-item-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #fff; /* Başlık beyaz */
  }

  /* 🔹 Metin sınırlama 30 kelime */
  .blog-left-column-item-body {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd; /* Metin beyaz ton */
    margin-bottom: 20px;

    display: -webkit-box;
    -webkit-line-clamp: 4; /* yaklaşık 30 kelime = 4 satır */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-left-column-item-footer {
    border-top: 1px solid #2c2f38; /* Footer sınırı koyu */
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #ccc; /* Footer yazısı açık gri */
  }

  .blog-left-column-item-footer a {
    color: #ff6b00; /* Link rengi turuncu */
    text-decoration: none;
    font-weight: 600;
  }

  .blog-left-column-item-footer a:hover {
    text-decoration: underline;
  }
}
/* Temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🔹 Genel body arka plan (mobil ve default) */
body {
    background-color: #171A21; /* Mobil ve varsayılan arka plan */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff; /* Tüm yazıları beyaz yaptık */
    padding: 20px;
}

/* 🔹 PC için arka plan */
@media (min-width: 1025px) {
    body {
        background-color: #171A21;
    }
}

/* 🔹 Üst menü arka planı */
.site-header {
    background-color: #171A21;
}

@media (min-width: 1025px) {
    .site-header {
        background-color: #171A21;
    }
}

/* Başlık bölümü */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

header h2 {
    font-size: 24px;
    color: #fff; /* Başlık beyaz */
}

header a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff; /* Linkleri beyaz yaptık */
    font-weight: bold;
}

.icon {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    fill: #fff; /* SVG ikonları beyaz */
}

/* Grid yapısı - PC'de 6'lı grid */
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* Kart stilleri */
.donate {
    display: block;
    background: #2c2f38; /* Kart arka planını biraz koyu yaptım */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-decoration: none;
    color: #fff; /* Kart içi yazılar beyaz */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donate:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.donate picture img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.donate h2 {
    padding: 10px 15px;
    font-size: 18px;
    color: #fff; /* Kart başlığı beyaz */
}

.networks {
    padding: 0 15px;
    display: flex;
    gap: 5px;
}

.networks .icon {
    width: 16px;
    height: 16px;
    fill: #fff; /* Sosyal ikon beyaz */
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    margin: 15px;
    background: #ff6b00; /* Buton rengi turuncu */
    color: #fff; /* Buton yazısı beyaz */
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.btn .icon {
    margin-right: 5px;
    fill: #fff; /* Buton ikonu beyaz */
}

.btn span {
    display: flex;
    align-items: center;
}

/* Mobil görünüm için medya sorgusu */
@media (max-width: 768px) {
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    header a {
        margin-top: 10px;
    }
}

/* Tablet görünüm için medya sorgusu */
@media (min-width: 769px) and (max-width: 1024px) {
    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Genel yazı rengi beyaz */
  .about-section-body,
  .about-section-body p,
  .about-section-body li,
  .about-section-body strong,
  .additional-content {
    color: #ffffff;
  }

  /* Mobil cihazlar için - kaydırılabilir dar alan */
  @media (max-width: 768px) {
    .about-section-body {
      max-height: 400px;
      overflow-y: auto;
      padding-right: 10px;
    }
    
    .additional-content {
      display: block !important;
    }
    
    .about-section-body::-webkit-scrollbar {
      width: 6px;
    }
    
    .about-section-body::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }
    
    .about-section-body::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 10px;
    }
    
    .about-section-body::-webkit-scrollbar-thumb:hover {
      background: #555;
    }
    
    /* Masaüstü butonunu mobilde gizle */
    .desktop-only {
      display: none !important;
    }
  }

  /* Masaüstü için */
  @media (min-width: 769px) {
    .additional-content {
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .additional-content.show {
      display: block;
      opacity: 1;
    }

    /* 🔹 Butonun ortada durması için */
    .show-more-container {
      display: flex;
      justify-content: center; /* Ortaya hizala */
      margin-top: 20px;
      padding: 10px 0;
    }

    .show-more-btn {
      background-color: #4CAF50;
      color: white;
      border: none;
      padding: 12px 30px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .show-more-btn:hover {
      background-color: #45a049;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
  }