/* Theme Name: SNe0ns
Theme URI: Sohbet TemasÄ±
Author: S4S
Author URI: #
Description: Sohbet temasÄ±
Version: 1.0 */


.pagination-box {
    display: flex;
    flex-wrap: wrap; /* Küçük ekranlarda satýr taþmasýný önler */
    justify-content: center;
    padding: 10px 15px;
    background-color: #0f172a;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2), 0 0 20px #3b82f6, 0 0 30px #3b82f6;
    margin-top: 20px;
    transition: box-shadow 0.3s ease;
}

.pagination-box:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.2), 0 0 25px #3b82f6, 0 0 40px #3b82f6;
}

.pagination-box a,
.pagination-box span {
    display: inline-block;
    color: #fff;
    padding: 8px 12px;
    margin: 4px 4px; /* Küçük ekranlarda kutular birbirine yaklaþýr */
    border-radius: 5px;
    text-decoration: none;
    background-color: #1e293b;
    transition: all 0.3s ease;
    font-size: 16px;
    white-space: nowrap; /* Metin kutu taþmasýný önler */
}

.pagination-box a:hover {
    background-color: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
}

/* Mobil uyumlu ayarlar */
@media screen and (max-width: 480px) {
    .pagination-box {
        padding: 8px 10px;
    }
    .pagination-box a,
    .pagination-box span {
        padding: 6px 10px;
        font-size: 14px; /* Küçük ekranlarda yazý boyutunu küçült */
        margin: 3px 3px;
    }
}


:root {
    --primary-color: #6366f1; /* Indigo 500 (Mor) */
    --neon-color-main: #a5b4fc; /* Indigo 300 for soft glow (Mor Mavi) */
    --neon-color-secondary: #06b6d4; /* Cyan 500 for secondary glow (Turkuaz) */
    --bs-body-bg: #0d0d1e;
    --bs-body-color: #e5e7eb;
    --nav-footer-bg: rgb(13, 13, 30); 
}


html {
    height: 100%; 
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);

    overflow-x: hidden; 
    position: relative;
    
    
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
}


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



@keyframes diagonalScan {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--bs-body-bg);
   
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}
 a {
     text-decoration: none;
    }

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1; 
    background-image:
       
        linear-gradient(45deg, transparent 49%, var(--neon-color-main) 50%, transparent 51%),
       
        linear-gradient(-45deg, transparent 49%, var(--neon-color-secondary) 50%, transparent 51%);
    background-size: 150px 150px; 
    animation: diagonalScan 30s linear infinite; 
}


.dark-card {
    background-color: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(55, 65, 81, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}


.custom-shadow {
   border-color: var(--neon-color-main);
    box-shadow: 0 0 20px var(--neon-color-main), 0 0 40px rgba(99, 102, 241, 0.4);
    transform: translateY(-3px);
}



.modern-navbar {
    background-color: var(--nav-footer-bg) !important; 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 0 0 2rem 2rem; 
}

.text-info {
    color: var(--neon-color-main) !important;
    text-shadow: 0 0 3px rgba(165, 180, 252, 0.6);
}
.border-indigo-700 {
    border-color: #4338ca !important;
}

.blog-header-wrapper {
     background-color: #0c1421;
     border: 1px solid rgba(55, 65, 81, 0.8);
     border-radius: 0.75rem;
}


.horoscope-card {
    background-color: rgba(31, 41, 55, 0.7);
    border: 1px solid rgba(55, 65, 81, 0.8);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    min-height: 120px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horoscope-card:hover {
    border-color: var(--neon-color-secondary);
    box-shadow: 0 0 15px var(--neon-color-secondary);
    transform: translateY(-3px);
}

.horoscope-icon {
    font-size: 2rem;
    color: var(--neon-color-secondary);
}
.horoscope-dates {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}


.modal-content-custom {
    background-color: var(--bs-body-bg); 
    border: 2px solid var(--neon-color-main);
    border-radius: 1rem;
    box-shadow: 0 0 30px var(--neon-color-main);
    backdrop-filter: blur(10px);
}
.modal-header-custom {
    border-bottom: 1px solid rgba(165, 180, 252, 0.3);
    color: var(--neon-color-secondary);
}
.modal-body-custom {
    color: #ccc;
}
.modal-title-custom {
     color: var(--neon-color-main) !important;
     font-weight: 700;
}
.modal-dates-custom {
     color: #9ca3af;
     font-size: 0.9rem;
     margin-left: 10px;
}



.text-shadow-neon {
    text-shadow: 0 0 10px rgba(165, 180, 252, 0.7);
}


.download-card-v4 {
    border-radius: 2rem 0.5rem 2rem 0.5rem; 
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: rgba(13, 13, 30, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    min-height: 280px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.download-card-v4:hover {
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.7), 0 10px 30px rgba(0, 0, 0, 0.8);
    transform: translateY(-5px);
}

.card-icon-v4 {
    font-size: 3.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}


.card-android:hover { border-color: #e65b0b; }
.card-ios:hover { border-color: var(--neon-color-main); }
.card-mirc:hover { border-color: var(--neon-color-secondary); }


.btn-unique-radius {
     font-weight: 700;
     padding: 0.8rem 1rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
     transition: all 0.3s ease;
}


.btn-unique-radius-android {
    background-color: #e65b0b; 
    border-color: #e65b0b;
    color: white; 
    border-radius: 2rem 0.5rem;
}
.btn-unique-radius-android:hover {
    background-color: #d86507;
    box-shadow: 0 0 15px rgba(216, 101, 7, 0.7);
    transform: scale(1.02);
}


.btn-unique-radius-ios {
    background-color: #ef4444; /* KÄ±rmÄ±zÄ± */
    border-color: #ef4444;
    color: white;
     border-radius: 2rem 0.5rem;
}
.btn-unique-radius-ios:hover {
    background-color: #dc2626;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
    transform: scale(1.02);
}


.btn-unique-radius-mirc {
    background-color: #facc15; 
    border-color: #facc15;
    color: #0d0d1e; 
    border-radius: 2rem 0.5rem;
}
.btn-unique-radius-mirc:hover {
    background-color: #eab308;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.7);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .download-card-v4 {
        min-height: initial;
    }
}


.feature-card-v5 {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    background-color: rgba(31, 41, 55, 0.6); 
    border: 1px solid rgba(55, 65, 81, 0.8);
    transition: all 0.4s ease;
    cursor: pointer;
    min-height: 200px;
}

.feature-card-v5:hover {
    box-shadow: 0 0 25px var(--neon-color-secondary), 0 10px 30px rgba(0, 0, 0, 0.8);
    transform: translateY(-5px) scale(1.02);
}

.feature-card-v5 .card-body {
    position: relative;
    z-index: 10;
}

.feature-icon-v5 {
    font-size: 3rem;
}


.chat-card {
    border-top: 5px solid var(--primary-color);
}
.chat-card:hover {
    border-color: var(--neon-color-main);
}


.radio-card {
    border-top: 5px solid var(--neon-color-secondary);
}
.radio-card:hover {
    border-color: #06b6d4;
}


/* Kolon içi flex düzeni */
.row.row-cols-1.row-cols-md-2 .col {
    display: flex;
}

/* Blog Kart */
.blog-card-v4 {
    display: flex;
    flex-direction: row;      /* resim ve içerik yan yana */
    flex: 1 1 auto;
    text-decoration: none;
    background-color: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(55, 65, 81, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    min-height: 180px;
}

/* Hover efekti */
.blog-card-v4:hover {
    border-color: var(--neon-color-secondary);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4), 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* Resim */
.blog-image-v4 {
    flex: 0 0 30%;          /* geniþlik sabit */
    max-height: 180px;       /* yüksekliði sabit */
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.blog-image-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* kutuyu doldurur, taþmaz */
    display: block;
    transition: transform 0.5s ease;
}

.blog-card-v4:hover .blog-image-v4 img {
    transform: scale(1.05);
}

/* Ýçerik */
.blog-content-v4 {
    flex: 1 1 70%;          /* kalan alan içerik */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Baþlýk ve açýklama */
.blog-title-v4 {
    font-weight: 700;
    color: var(--neon-color-main);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.blog-description-v4 {
    font-size: 0.9rem;
    color: #a0a0a0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
}

/* Meta */
.blog-meta-v4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #9ca3af;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
}

@media (max-width: 768px) {

    .blog-card-v4 {
        flex-direction: column;
        min-height: initial !important;
    }

    .blog-image-v4 {
        width: 100%;
        height: 90px !important;   /* ?? Daha da küçültüldü */
    }

    .blog-image-v4 img {
        height: 90px !important;
        object-fit: cover;
    }

    .blog-content-v4 {
        padding: 0.55rem 0.7rem !important;   /* daha da sýký */
    }

    .blog-title-v4 {
        font-size: 0.95rem !important; /* baþlýk da biraz küçülsün */
        margin-bottom: 0.3rem !important;
    }

    .blog-description-v4 {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 2 !important;  
        margin-bottom: 0.3rem !important;
    }

    .blog-meta-v4 {
        margin-top: 0.3rem !important;
        padding-top: 0.3rem !important;
    }
}

/* ==============================
   Yorumlar Kutu ve Mobil Uyumluluk
   ============================== */
.yorum-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0.5rem;
    box-sizing: border-box;
}

.yorum-kutu {
    background: rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-sizing: border-box;
    overflow: visible !important;
}

.yorum-listesi {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.yorum-single {
    display: flex;
    gap: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    word-break: break-word;
}

.yorum-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.yorum-icerik {
    flex: 1;
}

.yorum-yazar {
    font-weight: bold;
    margin: 0 0 0.25rem 0;
    color: #06b6d4;
}

.yorum-tarih {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0 0 0.5rem 0;
}

.yorum-metni {
    line-height: 1.5;
}

/* Yorum Formu */
.yorum-formu .form-yeni-yorum {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.yorum-formu textarea,
.yorum-formu input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-sizing: border-box;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
}

.yorum-formu input[type="submit"] {
    background: #06b6d4;
    color: #fff;
    cursor: pointer;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.yorum-formu input[type="submit"]:hover {
    background: #0891b2;
}

@media (max-width: 768px) {
    .yorum-kutu {
        padding: 1rem;
    }
    .yorum-single {
        flex-direction: column;
        align-items: flex-start;
    }
    .yorum-avatar img {
        width: 40px;
        height: 40px;
    }
    .yorum-yazar {
        font-size: 0.95rem;
    }
    .yorum-tarih {
        font-size: 0.8rem;
    }
}

/* Mobilde uyumlu */
@media (max-width: 768px) {
    .yorumlistele .comment-body,
    .yorumlistele ul.children {
        width: 100%;
        padding: 0.3rem 0.5rem;
    }
}


.holographic-tunnel-footer {
   
    background-color: var(--nav-footer-bg); 
    padding: 2.5rem 0 1.5rem 0; 
    position: relative;
    overflow: hidden; 
    z-index: 5;
    
    
    border-radius: 4rem 4rem 0 0; 
    margin-top: 4rem;
    
   
    border-top: 3px solid rgba(165, 180, 252, 0.15);
  
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7); 
}

.holographic-tunnel-footer .footer-content-wrapper {
    position: relative;
    z-index: 10; 
}

.holographic-tunnel-footer .footer-text {
    color: #ccc;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}


.holographic-tunnel-footer .footer-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--neon-color-main);
    color: var(--neon-color-main);
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(165, 180, 252, 0.5);
}

.holographic-tunnel-footer .footer-nav-link:hover {
    color: var(--neon-color-secondary);
    border-color: var(--neon-color-secondary);
    background-color: rgba(6, 182, 212, 0.15);
    box-shadow: 0 0 20px var(--neon-color-secondary), 0 0 30px rgba(6, 182, 212, 0.4);
    transform: scale(1.1);
}


.fixed-radio-button {
    position: fixed;
    bottom: 30px; /* Alttan boÅŸluk */
    left: 30px; /* Soldan boÅŸluk */
    z-index: 1000; /* Her ÅŸeyin Ã¼stÃ¼nde olmalÄ± */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--neon-color-secondary); /* Turkuaz */
    color: var(--bs-body-bg); /* Koyu metin/ikon */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* BaÅŸlangÄ±Ã§ gÃ¶lgesi (DurdurulduÄŸunda) */
    box-shadow: 0 0 5px rgba(6, 182, 212, 0.5); 
}




.tag-badge {
 background-color: #4f46e5;
 display: inline-block;
 transition: background-color 0.2s ease, transform 0.2s ease;
 }
.tag-badge:hover {
 background-color: #3730a3;
 color: #ffffff;
                            text-decoration: none;
                            transform: translateY(-1px);
                        }
                        .hover-underline:hover {
                            text-decoration: underline !important;
                        }

                      
                        .transition-card {
                            transition: background-color 0.2s ease, box-shadow 0.2s ease;
                        }
                        .transition-card:hover {
                            background-color: rgba(255, 255, 255, 0.05); 
                            box-shadow: 0 0 10px rgba(6, 182, 212, 0.1); 
                        }
                        .blog-title-link {
                            transition: color 0.2s ease;
                        }
                        .blog-title-link:hover {
                            color: #06b6d4 !important; 
                        }
                        .object-fit-cover {
                            object-fit: cover;
                        }
                 




@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px var(--neon-color-secondary), 0 0 0 0 rgba(6, 182, 212, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-color-secondary), 0 0 25px rgba(6, 182, 212, 0.9), 0 0 35px rgba(6, 182, 212, 0.5);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 10px var(--neon-color-secondary), 0 0 0 0 rgba(6, 182, 212, 0.7);
        transform: scale(1);
    }
}


.fixed-radio-button.is-playing {
    background-color: var(--neon-color-secondary);
    animation: neonPulse 1.5s infinite alternate;
}

@media (max-width: 768px) {
    .fixed-radio-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
}

@keyframes neon-pulse {
  0% {
    
    box-shadow: 0 0 5px rgba(131, 141, 141, 0.5);
  }
  50% {
    
    box-shadow: 0 0 20px rgba(250, 250, 250, 0.9),
                0 0 30px rgba(129, 129, 129, 0.7);
  }
  100% {
   
    box-shadow: 0 0 5px rgba(78, 8, 37, 0.5);
  }
}


.pulse-shadow {
    
    animation: neon-pulse 1.5s ease-in-out infinite alternate;
}