/* =======================================================
   DILBIRIN BOTI - ANA STİL DOSYASI (MAIN.CSS)
   ======================================================= */

/* -------------------------------------------------------
   1. GENEL AYARLAR & YAPILAR
   ------------------------------------------------------- */
body {
    background-color: #fffbf2;
    font-family: 'Lato', sans-serif;
    margin: 0; padding: 0;
}

/* Sayfa İçerik Boşlukları */
.home-content-wrapper, #main-content {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Gereksiz Çizgileri Gizle */
.dark-separator { display: none !important; }

/* -------------------------------------------------------
   2. BUTONLAR & ROZETLER
   ------------------------------------------------------- */
/* "Tümünü Dinle" Butonları */
.view-all-btn {
    font-size: 0.9rem; font-weight: 600;
    color: #2f5d62; text-decoration: none;
    border: 2px solid #2f5d62; padding: 8px 20px;
    border-radius: 30px; transition: all 0.3s ease;
    background: transparent;
}
.view-all-btn:hover {
    background: #2f5d62; color: #f7ebd0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 93, 98, 0.3);
}

/* Dijital Platform Butonları (Sidebar) */
.platform-buttons { display: flex; flex-direction: column; gap: 10px; }
.store-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 12px; border-radius: 8px;
    text-decoration: none; color: #fff !important;
    font-weight: 700; font-size: 0.95rem;
    transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.store-btn i { font-size: 1.2rem; }
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); opacity: 0.9; }
.store-btn.spotify { background-color: #1DB954; }
.store-btn.apple { background-color: #000000; }
.store-btn.yt-music { background-color: #FF0000; }
.store-btn.deezer { background: linear-gradient(90deg, #FEAA2D 0%, #EF5466 100%); }

/* Rozetler (Yeni, Süre, İzlenme) */
.new-badge {
    background: #D44638; color: #fff; font-size: 0.7rem;
    padding: 2px 8px; border-radius: 4px;
    position: absolute; top: 10px; right: 10px;
    font-weight: bold; z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.duration-badge, .duration-badge-sm {
    position: absolute; background: rgba(0,0,0,0.85); color: #fff;
    border-radius: 4px; font-weight: 700; z-index: 5; font-family: sans-serif;
}
.duration-badge { bottom: 8px; right: 8px; font-size: 0.75rem; padding: 2px 6px; }
.duration-badge-sm { bottom: 4px; right: 4px; font-size: 0.65rem; padding: 1px 4px; border-radius: 3px; }

.view-count, .view-count-sm { color:#777; display:block; font-weight: 400; }
.view-count { font-size: 0.8rem; margin-top:6px; }
.view-count-sm { font-size: 0.7rem; margin-top: 3px; }

/* -------------------------------------------------------
   3. ANA SAYFA BİLEŞENLERİ
   ------------------------------------------------------- */
/* Şair/Kategori Kutusu */
.poet-section {
    margin-bottom: 50px; padding: 35px; background: #ffffff;
    border-radius: 15px; box-shadow: 0 10px 30px rgba(47, 93, 98, 0.08);
    border: 1px solid rgba(47, 93, 98, 0.1); position: relative; overflow: hidden;
}
.poet-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: #2f5d62; }

.section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px; padding-bottom: 15px; border-bottom: 2px solid #f0e6d2;
}
.poet-name {
    font-family: 'Playfair Display', serif; font-size: 2rem;
    font-weight: 700; color: #2f5d62; margin: 0; letter-spacing: -0.5px;
}

/* Video Kartları (Ana Sayfa) */
.video-card-home {
    display: block; text-decoration: none; background: #fff;
    border-radius: 12px; overflow: hidden; position: relative;
    transition: transform 0.3s ease; border: 1px solid #eee; height: 100%;
}
.video-card-home:hover { transform: translateY(-7px); box-shadow: 0 15px 25px rgba(0,0,0,0.1); border-color: #2f5d62; }

.thumb-box { position: relative; padding-top: 56.25%; background-color: #f0e6d2; overflow: hidden; }
.thumb-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.95; transition: opacity 0.3s; }

.play-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 50px; height: 50px; background: rgba(47, 93, 98, 0.85);
    border-radius: 50%; color: #fff; display: flex; align-items: center;
    justify-content: center; font-size: 24px; transition: 0.3s;
    box-shadow: 0 0 0 0 rgba(47, 93, 98, 0.5);
}
.video-card-home:hover .play-overlay {
    background: #2f5d62; transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 8px rgba(47, 93, 98, 0.2);
}

.video-info { padding: 15px; background: #fff; flex-grow: 1; }
.video-title {
    font-size: 1rem; font-weight: 700; color: #333; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; margin: 0; font-family: 'Lato', sans-serif;
}
.video-card-home:hover .video-title { color: #2f5d62; }

/* -------------------------------------------------------
   4. TEKİL ŞAİR SAYFASI (SINGLE)
   ------------------------------------------------------- */
/* İnce Header */
.slim-page-header {
    position: relative; background-color: #fcf8ed; color: #2f5d62;
    padding: 25px 0; overflow: hidden; margin-bottom: 30px;
    border-bottom: 1px solid rgba(47, 93, 98, 0.1);
}
.header-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0.08; mix-blend-mode: multiply;
}
.header-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 15px; }
.poet-page-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; margin: 0; line-height: 1; color: #2f5d62; }
.poet-dates {
    font-family: 'Lato', sans-serif; font-size: 1rem; opacity: 0.9;
    font-weight: 600; margin: 0; border-left: 2px solid rgba(47, 93, 98, 0.3);
    padding-left: 15px; line-height: 1.2; color: #555;
}
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 5px; }
    .poet-dates { border-left: none; padding-left: 0; font-size: 0.9rem; }
}

/* Tablar */
.nav-tabs { border-bottom: 1px solid #ddd; justify-content: center; margin-bottom: 30px; }
.nav-tabs .nav-link {
    color: #666; font-weight: 600; border: none;
    border-bottom: 2px solid transparent; padding: 8px 20px;
    font-size: 1rem; background: transparent;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link.active { color: #2f5d62; }
.nav-tabs .nav-link.active { border-bottom: 2px solid #2f5d62; }

/* Player */
.main-video-container {
    background: #000; border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2); position: relative;
    z-index: 10; margin-bottom: 15px;
}
.main-video-title {
    font-size: 1.6rem; font-weight: 700; color: #222;
    margin-top: 15px; margin-bottom: 15px; font-family: 'Playfair Display', serif;
}

/* Akordiyon */
.desc-accordion-btn {
    width: 100%; background-color: #f8f9fa; color: #555;
    border: 1px solid #ddd; border-left: 4px solid #2f5d62; /* Varsayılan renk */
    padding: 12px 20px; text-align: left; font-weight: 700;
    font-size: 0.95rem; cursor: pointer; border-radius: 6px;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s ease;
}
.desc-accordion-btn:hover { background-color: #f1f1f1; color: #2f5d62; }
.desc-accordion-btn.active { background-color: #fff; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 1px solid transparent; }
.desc-accordion-content {
    display: none; padding: 20px; background-color: #fff;
    border: 1px solid #ddd; border-top: none;
    border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;
    color: #666; line-height: 1.7; font-size: 0.95rem;
    white-space: pre-wrap; border-left: 4px solid #2f5d62; /* Varsayılan renk */
}

/* Yan Menü Video Listesi */
.sidebar-video-item {
    display: flex; gap: 12px; margin-bottom: 10px; cursor: pointer;
    padding: 8px; border-radius: 6px; background: #fff;
    transition: all 0.2s ease; border: 1px solid #eee;
}
.sidebar-video-item:hover { background: #f8f9fa; transform: translateX(-3px); border-color: #ddd; }
.sidebar-video-item.active-item { background: #eef2ff; border-color: #2f5d62; }

.sidebar-thumb-wrapper {
    flex-shrink: 0; width: 120px; height: 68px;
    position: relative; border-radius: 4px; overflow: hidden; background-color: #f0e6d2;
}
.sidebar-thumb, .grid-thumb { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.sidebar-content h6 {
    font-size: 0.85rem; font-weight: 700; line-height: 1.3;
    margin: 0 0 3px 0; color: #333;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sidebar-content span { font-size: 0.7rem; color: #2f5d62; font-weight: 600; }

/* Grid Video Kartları (Alt Liste) */
.grid-video-card {
    cursor: pointer; background: #fff; border-radius: 8px;
    overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s; height: 100%; border: 1px solid #eee;
}
.grid-video-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); border-color: #2f5d62; }
.grid-thumb-box { position: relative; width: 100%; padding-top: 56.25%; background-color: #f0e6d2; overflow: hidden; }
.grid-body { padding: 10px; }
.grid-title { font-size: 0.9rem; font-weight: 600; color: #333; line-height: 1.3; }

.mini-play-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 30px; height: 30px; background: rgba(0,0,0,0.6);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 12px; opacity: 0.8;
}
.sidebar-video-item:hover .mini-play-icon, .grid-video-card:hover .mini-play-icon { background: #2f5d62; opacity: 1; }

/* -------------------------------------------------------
   5. FOOTER (ALT KISIM)
   ------------------------------------------------------- */
.site-footer {
    background-color: #2f5d62; color: #f7ebd0;
    padding-top: 60px; margin-top: auto;
    font-family: 'Lato', sans-serif; position: relative; z-index: 10;
}
.footer-logo {
    max-width: 180px; height: auto;
    filter: brightness(0) invert(1) sepia(0.2) saturate(0.5) hue-rotate(10deg);
    opacity: 0.9;
}
.footer-desc { font-size: 0.95rem; line-height: 1.6; opacity: 0.8; }
.footer-title {
    font-family: 'Playfair Display', serif; font-size: 1.4rem;
    margin-bottom: 20px; color: #fff;
    border-bottom: 2px solid rgba(247, 235, 208, 0.3);
    padding-bottom: 10px; display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #f7ebd0; text-decoration: none; font-size: 1rem;
    transition: all 0.3s; opacity: 0.8; display: block;
}
.footer-links a:hover { opacity: 1; padding-left: 5px; color: #fff; }

.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    width: 42px; height: 42px; background: rgba(255,255,255,0.05);
    color: #fff; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; text-decoration: none; transition: all 0.3s ease;
    font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.social-btn.youtube:hover   { background: #FF0000; border-color: #FF0000; }
.social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; }
.social-btn.facebook:hover  { background: #1877F2; border-color: #1877F2; }
.social-btn.tiktok:hover    { background: #000000; border-color: #000000; text-shadow: 2px 2px 0px #FF0050; }
.social-btn.twitter:hover   { background: #000000; border-color: #000000; }
.social-btn.spotify:hover   { background: #1DB954; border-color: #1DB954; }
.social-btn.email:hover     { background: #D44638; border-color: #D44638; }

.footer-bottom {
    background-color: #1a3c40; padding: 20px 0;
    margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.05);
}
.copyright-text { font-size: 0.85rem; opacity: 0.6; }



/* --- DILBIRIN BOTI - SIDEBAR TASARIMI --- */

/* 1. Beyaz Kutunun Kenar Boşluğu (Compact) */
aside .sidebar-widget {
    padding: 15px !important;
    background-color: #fff !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 12px !important;
}

/* 2. Menü Listesi Sıfırlama */
aside .sidebar-widget ul.sidebar-menu {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* 3. Menü Elemanları (Satırlar) */
aside .sidebar-widget ul.sidebar-menu li {
    margin-bottom: 8px !important;
    padding: 0 !important;
    width: 100% !important;
}

/* 4. Butonların Kendisi */
aside .sidebar-widget ul.sidebar-menu a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    background-color: #fffbf2;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
    
    /* --- YENİ EKLENEN SATIR --- */
    font-weight: 700 !important; /* Yazıları kalınlaştırır (600 veya bold da yapabilirsin) */
}

/* Hover Efekti */
aside .sidebar-widget ul.sidebar-menu a:hover {
    background-color: #2f5d62 !important;
    color: #fff !important;
    transform: translateX(3px);
}

/* İkon Kutusu */
aside .sidebar-widget ul.sidebar-menu a .icon-box {
    width: 28px; height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #2f5d62;
    margin-right: 10px;
}
aside .sidebar-widget ul.sidebar-menu a:hover .icon-box {
    color: #2f5d62;
}

/* 5. Başlık Ayarı */
aside .sidebar-widget .widget-title {
    margin-bottom: 15px !important;
    margin-top: 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #f0e6d2 !important;
    font-size: 1.2rem !important;
}




/* =======================================================
   YENİ HEADER TASARIMI (HTML ŞABLON UYARLAMASI)
   ======================================================= */

/* 1. Header Genel */
.custom-header {
    background-color: #2f5d62; /* Ana Renk */
    padding-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 2. Logo Alanı (Beyaz Kutu) */
.logo-wrapper {
    display: flex; justify-content: center; margin-bottom: 20px;
}
.logo-area {
    width: 100%; max-width: 500px; height: 130px;
    background-color: white;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 10px; overflow: hidden;
}
/* WordPress Logosu İçin Ayar */
.custom-logo-link img {
    max-height: 110px; width: auto;
    display: block; margin: 0 auto;
}

/* 3. Menü Şeridi (Top Nav) */
.top-nav {
    background-color: rgba(0,0,0,0.2); /* Hafif koyu şerit */
    border-top: 3px solid #f7ebd0; /* Krem Rengi Çizgi */
}

/* Menü Listesi (UL) */
.main-menu {
    list-style: none; padding: 0; margin: 0;
    display: flex; justify-content: center; flex-wrap: wrap;
}

/* Menü Elemanları (LI) */
.main-menu > li { position: relative; }

/* Linkler (A) */
.main-menu > li > a {
    display: flex; align-items: center; gap: 8px; /* İkon boşluğu */
    padding: 18px 25px;
    color: white; text-decoration: none;
    font-weight: 500; font-size: 1rem;
    transition: all 0.3s ease; position: relative;
}

/* Hover Efekti (Zemin Rengi) */
.main-menu > li:hover > a,
.main-menu > li.current-menu-item > a {
    background-color: #f7ebd0; /* Krem */
    color: #2f5d62; /* Koyu Yeşil */
}

/* Hover Efekti (Alt Çizgi Animasyonu) */
.main-menu > li > a::after {
    content: ''; position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 3px;
    background-color: #2f5d62;
    transition: all 0.3s ease; transform: translateX(-50%);
}
.main-menu > li:hover > a::after { width: 80%; }

/* İkon Ayarı (Bootstrap Icons) */
.main-menu i { font-size: 1.1rem; margin-top: -2px; }

/* 4. Açılır Menü (Dropdown - Sub Menu) */
.main-menu .sub-menu {
    position: absolute; top: 100%; left: 0;
    background-color: white;
    min-width: 240px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 0 0 8px 8px;
    display: none; z-index: 1000;
    padding: 10px 0; list-style: none;
    animation: fadeInDown 0.3s ease;
}

/* Hoverda Göster */
.main-menu li:hover .sub-menu { display: block; }

/* Dropdown Linkleri */
.main-menu .sub-menu a {
    display: block; padding: 12px 20px;
    color: #2f5d62; text-decoration: none;
    transition: all 0.3s ease; font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Dropdown Hover */
.main-menu .sub-menu a:hover {
    background-color: #f7ebd0;
    padding-left: 30px; /* Kayma Efekti */
    color: #2f5d62;
}

/* Animasyon */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 5. Responsive (Mobil) */
@media (max-width: 768px) {
    .logo-area { height: 80px; max-width: 90%; }
    .custom-logo-link img { max-height: 60px; }
    
    .top-nav { padding: 0; }
    .main-menu { flex-direction: column; width: 100%; }
    .main-menu > li { width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .main-menu > li > a { justify-content: center; padding: 15px; }
    
    /* Mobilde Dropdown */
    .main-menu .sub-menu {
        position: static; box-shadow: none;
        background-color: rgba(0,0,0,0.1);
        text-align: center; display: none; /* JS ile açılabilir */
    }
    .main-menu li:hover .sub-menu { display: block; }
}





/* =======================================================
   7. STANDART SAYFA TASARIMI (PAGE.PHP)
   ======================================================= */

.page-content-wrapper {
    padding: 50px 0;
}

/* İçerik Kartı (Beyaz Kutu) */
.page-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden; /* Resim köşeleri taşmasın */
    box-shadow: 0 5px 25px rgba(47, 93, 98, 0.08); /* Hafif yeşilimsi gölge */
    border: 1px solid rgba(47, 93, 98, 0.1);
}

/* Öne Çıkan Görsel */
.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px; /* Çok yüksek resimleri sınırlar */
    object-fit: cover;
}

/* İçerik Gövdesi */
.page-body {
    padding: 40px;
}

/* Sayfa Başlığı */
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f5d62;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f7ebd0; /* Altına krem rengi çizgi */
}

/* Yazı İçeriği (Okunabilirlik Odaklı) */
.entry-content {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem; /* Biraz büyükçe, rahat okunan yazı */
    line-height: 1.8;  /* Satır arasını açtık */
    color: #444;
}

.entry-content p { margin-bottom: 20px; }
.entry-content h2, .entry-content h3 {
    color: #2f5d62;
    font-family: 'Playfair Display', serif;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Mobilde boşlukları azalt */
@media (max-width: 768px) {
    .page-body { padding: 25px; }
    .page-title { font-size: 2rem; }
}



/* =======================================================
   8. ÖZEL GALERİ TASARIMI (MASONRY LOOK)
   ======================================================= */

/* Galeri Genel Yapısı */
.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Kenar boşluklarını dengele */
}

/* Galeri Öğeleri (Resim Kutuları) */
.gallery-item {
    padding: 10px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 33.333%; /* Varsayılan: Yan yana 3 resim */
}

/* Galeri Resimleri */
.gallery-icon img {
    width: 100% !important;
    height: 250px !important; /* Tüm resimler eşit boyda olsun */
    object-fit: cover; /* Resmi kutuya sığdır (keserek) */
    border-radius: 8px;
    border: 1px solid rgba(47, 93, 98, 0.15);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

/* Hover (Üzerine Gelince) */
.gallery-icon img:hover {
    transform: scale(1.03); /* Hafif büyüme */
    box-shadow: 0 10px 20px rgba(47, 93, 98, 0.2);
    border-color: #2f5d62;
}

/* Resim Alt Yazısı (Caption) */
.gallery-caption {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    opacity: 0.8;
}

/* MOBİL UYUMU */
@media (max-width: 768px) {
    .gallery-item {
        width: 50% !important; /* Mobilde yan yana 2 resim */
    }
    .gallery-icon img {
        height: 150px !important; /* Mobilde daha küçük kareler */
    }
}




/* =======================================================
   9. SIDEBAR YOUTUBE WIDGET
   ======================================================= */

.yt-subscribe-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

/* Büyük YouTube İkonu */
.yt-big-icon {
    font-size: 3rem;
    color: #FF0000; /* YouTube Kırmızısı */
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}

.sidebar-widget:hover .yt-big-icon {
    transform: scale(1.1) rotate(-5deg); /* Üzerine gelince sallasın */
}

/* Açıklama Yazısı */
.yt-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Özel Abone Ol Butonu */
.btn-youtube-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FF0000; /* YouTube Kırmızısı */
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px; /* Yuvarlak hatlar */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3); /* Kırmızı parlama */
    transition: all 0.3s ease;
    width: 100%;
}

.btn-youtube-custom:hover {
    background-color: #cc0000; /* Koyu kırmızı */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    color: #fff !important;
}

.btn-youtube-custom i {
    font-size: 1.2rem;
}