/*
Theme Name: OFSRadyo V5
Description: OFSBilisim Radyo WordPress Teması - Modern ve responsive radyo teması
Version: 1.0
Author: OFSPANEL
Author URI: https://www.ofs.net.tr
Text Domain: ofsradio-v5
*/

/* Orijinal CSS dosyalarını import ediyoruz */
@import url("css/custom/main.css");
@import url("css/custom/index.css");
@import url("css/custom/blog-list.css");
@import url("css/custom/blog-details.css");
@import url("css/custom/about.css");
@import url("css/custom/contact.css");
@import url("css/custom/gallery.css");
@import url("css/custom/show.css");
@import url("css/custom/sponsor.css");
@import url("css/custom/team.css");
@import url("css/custom/video.css");

/* WordPress özel stilleri */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

/* WordPress menü stilleri */
.wp-menu-item {
    list-style: none;
}

.wp-menu-item a {
    text-decoration: none;
}

/* WordPress widget stilleri */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Header Şarkı İsteği Butonu */
.nav-link.request-song-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link.request-song-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.6);
    text-decoration: none;
    filter: brightness(1.1);
}

.nav-link.request-song-btn i {
    font-size: 12px;
}

/* Mobil menüde şarkı isteği butonu */
.mobile-menu-link.request-song-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 25px;
    margin: 5px 0;
    padding: 12px 20px;
    text-align: center;
    justify-content: center;
}

.mobile-menu-link.request-song-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    color: white !important;
    transform: scale(1.05);
}

/* Modern Header Stilleri */
.modern-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-main {
    padding: 15px 0;
}

.header-main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

.header-logo h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-icon {
    font-size: 16px;
}

.nav-text {
    font-size: 14px;
}

.header-controls {
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Mobil Menü */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo img {
    max-height: 40px;
    width: auto;
}

.mobile-logo h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}

.mobile-menu-close:hover {
    background: #f8f9fa;
    color: #333;
}

.mobile-menu-items {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.mobile-menu-item {
    margin: 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transform: translateX(5px);
}

.mobile-menu-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-main-container {
        gap: 15px;
    }
    
    .header-logo h1 {
        font-size: 20px;
        color: #fff;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

/* Yedekleme Sistemi Stilleri */
.backup-progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backup-progress-modal {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.backup-progress-header h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 20px;
}

.backup-progress-header i {
    color: #007bff;
    margin-right: 10px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-fill.completed {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.progress-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.progress-percentage {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.backup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease;
}

.backup-notification.success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.backup-notification.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.backup-notification i {
    font-size: 18px;
}

.notification-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.8;
}

.notification-close:hover {
    opacity: 1;
}

.backup-files {
    margin-top: 20px;
}

.backup-file {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.backup-file:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.backup-file-info {
    flex: 1;
}

.backup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.backup-header strong {
    font-size: 16px;
    color: #333;
}

.backup-type {
    background: #007bff;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.backup-details {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.backup-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.backup-actions {
    display: flex;
    gap: 10px;
}

.backup-actions .btn {
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 6px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Yedekleme butonları */
.create-backup-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.create-backup-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.create-backup-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.create-backup-btn i {
    font-size: 14px;
}

/* Yedekleme istatistikleri */
.backup-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 24px;
    color: #007bff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
}

/* SOHBET GİRİŞ KUTUSU */
.chat-login-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chat-login-box h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}

.chat-login-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-login-box input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.chat-login-box small {
    font-size: 12px;
    color: #666;
}

.chat-login-box button {
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

/* WordPress form stilleri */
.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.wpcf7-form input[type="submit"] {
    background: var(--primary-gdnt);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
}

/* Breadcrumb Navigasyonu */
.breadcrumb-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    margin: 0;
}

.breadcrumb-item:not(:last-child)::after {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    margin: 0 12px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.breadcrumb-current {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-link i {
    font-size: 12px;
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 12px 0;
        margin-bottom: 20px;
    }
    
    .breadcrumb-list {
        padding: 0 15px;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 13px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 8px;
    }
}

/* Banner Slider Stilleri */
.banner-slider {
    position: relative;
    overflow: hidden;
}

.banner-slider section {
    position: relative;
    height: 500px;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-1 {
    background-image: url('img/banner-1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
}

.banner-2 {
    background-image: url('img/banner-2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
}

.banner-3 {
    background-image: url('img/banner-3.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
}

.banner-oly {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Banner slider ok butonları */
.banner-slider .slick-prev,
.banner-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    text-indent: -9999px;
    overflow: hidden;
}

.banner-slider .slick-prev::before,
.banner-slider .slick-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.banner-slider .slick-prev::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent white transparent transparent;
    margin-left: -2px;
}

.banner-slider .slick-next::before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent white;
    margin-left: 2px;
}

.banner-slider .slick-prev {
    left: 20px;
}

.banner-slider .slick-next {
    right: 20px;
}

.banner-slider .slick-prev:hover,
.banner-slider .slick-next:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Footer - Çok daha daraltılmış stiller */
.footer-gape {
    margin-top: 15px; /* 30px'den 15px'e düşürüldü */
}

.footer-part {
    padding: 15px 0px 15px; /* 25px'den 15px'e düşürüldü */
    background: linear-gradient(135deg, #d44a1a, #b33a0a);
    border-radius: 50% 50% 0px 0px / 10%; /* 15%'den 10%'e düşürüldü */
}

/* ===== İSTEK SİSTEMİ STİLLERİ ===== */

/* Modal Overlay */
.request-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.request-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.request-modal.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Modal Body */
.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Form Stilleri */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group {
    position: relative;
    display: flex;
}

.input-group-prepend {
    display: flex;
}

.input-group-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.form-control {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Karakter Sayacı */
.char-counter {
    text-align: right;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
    transition: all 0.3s ease;
}

.char-counter.warning {
    color: #ff6b35;
    font-weight: 600;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* İstek Kuralları */
.request-rules {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 5px solid var(--primary-color);
}

.request-rules h5 {
    margin: 0 0 15px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.request-rules ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.request-rules li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.request-rules li i {
    width: 16px;
    text-align: center;
}

.request-rules li i.fa-check-circle {
    color: #28a745;
}

.request-rules li i.fa-clock {
    color: #ffc107;
}

.request-rules li i.fa-ban {
    color: #dc3545;
}

.request-rules li i.fa-redo {
    color: #17a2b8;
}

/* Bildirimler */
.request-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    z-index: 10000;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 400px;
    border-left: 5px solid var(--primary-color);
}

.request-notification.show {
    transform: translateX(0);
}

.request-notification.success {
    border-left-color: #28a745;
}

.request-notification.error {
    border-left-color: #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 18px;
}

.request-notification.success .notification-content i {
    color: #28a745;
}

.request-notification.error .notification-content i {
    color: #dc3545;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: #f8f9fa;
    color: #333;
}

/* Modal Open Body */
body.modal-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .request-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Section Heading Actions */
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-actions {
    display: flex;
    gap: 10px;
}

/* Kayan Yazı Stilleri */
.request-ticker {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    animation: ticker-scroll linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.ticker-item i {
    color: #ffd23f;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Kayan yazı hızını artır */
.ticker-content {
    animation: ticker-scroll 8s linear infinite; /* 15s'den 8s'ye düşürüldü - çok daha hızlı */
}

/* OFSİSTEK İstatistik Grid - Yan Yana - !important ile override */
.ofspanel-stats-grid {
    display: flex !important;
    justify-content: space-between !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
    flex-wrap: wrap !important;
    grid-template-columns: none !important;
}

.ofspanel-stats-grid .stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 15px !important;
    padding: 20px 25px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex: 1 !important;
    min-width: 200px !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.ofspanel-stats-grid .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.ofspanel-stats-grid .stat-item:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.ofspanel-stats-grid .stat-icon {
    font-size: 2.5rem !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    margin: 0 !important;
}

.ofspanel-stats-grid .stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg) !important;
}

.ofspanel-stats-grid .pending-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
    color: #fff !important;
}

.ofspanel-stats-grid .approved-icon {
    background: linear-gradient(135deg, #2ed573, #1e90ff) !important;
    color: #fff !important;
}

.ofspanel-stats-grid .rejected-icon {
    background: linear-gradient(135deg, #ff4757, #ff3838) !important;
    color: #fff !important;
}

.ofspanel-stats-grid .total-icon {
    background: linear-gradient(135deg, #ffa502, #ff6348) !important;
    color: #fff !important;
}

.ofspanel-stats-grid .stat-info {
    flex: 1 !important;
    color: #fff !important;
}

.ofspanel-stats-grid .stat-number {
    font-size: 2.5rem !important;
    font-weight: bold !important;
    margin-bottom: 5px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    color: #fff !important;
}

.ofspanel-stats-grid .stat-label {
    font-size: 0.9rem !important;
    opacity: 0.9 !important;
    font-weight: 500 !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ofspanel-stats-grid {
        flex-direction: column !important;
    }
    
    .ofspanel-stats-grid .stat-item {
        min-width: auto !important;
    }
}

/* DJ Başvuru Modal Stilleri */
#dj-apply-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

#dj-apply-modal.show {
    display: flex !important;
}

/* Eski modal overlay kaldırıldı */

#dj-apply-modal .modal-content {
    position: relative;
    max-width: 700px;
    width: 90%;
    max-height: 95vh;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
    margin: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#dj-apply-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#dj-apply-modal .modal-title {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

#dj-apply-modal .btn-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#dj-apply-modal .btn-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

#dj-apply-modal .modal-body {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
    min-height: 500px;
    display: block !important;
    visibility: visible !important;
    padding-bottom: 100px !important;
}

#dj-apply-modal .form-group {
    margin-bottom: 25px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Eski CSS kuralları kaldırıldı - Modern CSS kullanılıyor */

#dj-apply-modal .form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 44px !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
}

#dj-apply-modal .form-control:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#dj-apply-modal textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

#dj-apply-modal .form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

/* Modern DJ Başvuru Form Stilleri */
#dj-apply-modal .form-field {
    margin-bottom: 25px;
    display: block;
    width: 100%;
}

#dj-apply-modal .form-field label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

#dj-apply-modal .form-field label i {
    color: #667eea;
    width: 16px;
}

#dj-apply-modal .form-field input,
#dj-apply-modal .form-field textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
    color: #333;
    box-sizing: border-box;
}

#dj-apply-modal .form-field input:focus,
#dj-apply-modal .form-field textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#dj-apply-modal .form-field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

#dj-apply-modal .form-field small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

/* Buton Stilleri */
#dj-apply-modal .btn-cancel {
    padding: 12px 24px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#dj-apply-modal .btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

#dj-apply-modal .btn-submit {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#dj-apply-modal .btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

#dj-apply-modal .mb-3 {
    margin-bottom: 1rem !important;
}

#dj-apply-modal .me-2 {
    margin-right: 0.5rem !important;
}

#dj-apply-modal .modal-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    position: relative;
    z-index: 10;
}

#dj-apply-modal .text-end {
    text-align: right !important;
}

/* Modern Bildirim Sistemi */
.dj-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    animation: slideInRight 0.3s ease-out;
    border-left: 4px solid #007bff;
}

.dj-notification.success {
    border-left-color: #28a745;
}

.dj-notification.error {
    border-left-color: #dc3545;
}

.dj-notification.info {
    border-left-color: #17a2b8;
}

.dj-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.dj-notification .notification-content i {
    font-size: 1.2rem;
}

.dj-notification.success .notification-content i {
    color: #28a745;
}

.dj-notification.error .notification-content i {
    color: #dc3545;
}

.dj-notification.info .notification-content i {
    color: #17a2b8;
}

.dj-notification .notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.dj-notification .notification-close:hover {
    background: #f0f0f0;
    color: #333;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.dj-apply-modal .form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.dj-apply-modal .btn {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.dj-apply-modal .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.dj-apply-modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.dj-apply-modal .btn-secondary {
    background: #6c757d;
    color: #fff;
}

.dj-apply-modal .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* DJ Ol Butonu Stilleri */
.dj-apply-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    color: #fff !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.dj-apply-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #e64a19 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3) !important;
}

@media (max-width: 768px) {
    .dj-apply-modal .modal-container {
        width: 95%;
        margin: 2.5vh auto;
    }
    
    .dj-apply-modal .modal-body {
        padding: 20px;
    }
    
    .dj-apply-modal .form-actions {
        flex-direction: column;
    }
}



.footer-logo {
    text-align: center;
    margin-bottom: 8px; /* 15px'den 8px'e düşürüldü */
}

.footer-logo img {
    max-height: 20px; /* 30px'den 20px'e düşürüldü */
    margin-bottom: 6px; /* 10px'den 6px'e düşürüldü */
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.footer-logo ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 6px 0 0 0; /* 10px'den 6px'e düşürüldü */
    padding: 0;
}

.footer-logo ul li {
    margin: 0 5px; /* 8px'den 5px'e düşürüldü */
}

.footer-logo ul li a {
    color: #fff;
    font-size: 12px; /* 14px'den 12px'e düşürüldü */
    transition: all 0.3s;
    display: inline-block;
    width: 22px; /* 28px'den 22px'e düşürüldü */
    height: 22px; /* 28px'den 22px'e düşürüldü */
    line-height: 22px; /* 28px'den 22px'e düşürüldü */
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-logo ul li a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: #fff;
}

.news-form {
    text-align: center;
    margin-bottom: 8px; /* 15px'den 8px'e düşürüldü */
}

.news-form input {
    padding: 6px 10px; /* 8px 12px'den 6px 10px'e düşürüldü */
    border: none;
    border-radius: 12px; /* 15px'den 12px'e düşürüldü */
    margin-right: 4px; /* 6px'den 4px'e düşürüldü */
    width: 150px; /* 200px'den 150px'e düşürüldü */
    max-width: 100%;
}

.footer-heading h3 {
    color: #fff;
    font-size: 14px; /* 16px'den 14px'e düşürüldü */
    margin-bottom: 5px; /* 8px'den 5px'e düşürüldü */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.footer-heading p {
    color: #fff;
    line-height: 1.3; /* 1.4'den 1.3'e düşürüldü */
    margin-bottom: 6px; /* 10px'den 6px'e düşürüldü */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
    font-size: 10px; /* 12px'den 10px'e düşürüldü */
}

.footer-address ul li,
.footer-link ul li {
    margin-bottom: 4px; /* 6px'den 4px'e düşürüldü */
    color: #fff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-size: 9px; /* 11px'den 9px'e düşürüldü */
}

.footer-address ul li i,
.footer-link ul li i {
    margin-right: 4px; /* 6px'den 4px'e düşürüldü */
    color: #fff;
    width: 12px; /* 14px'den 12px'e düşürüldü */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-size: 8px; /* 10px'den 8px'e düşürüldü */
}

.footer-address ul li p {
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
    font-size: 9px; /* 11px'den 9px'e düşürüldü */
}

.footer-link ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
    font-size: 9px; /* 11px'den 9px'e düşürüldü */
}

.footer-link ul li a:hover {
    color: #ffd23f;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Download part kaldırıldı - fotoğraflar gizlendi */
.download-part {
    display: none !important;
}

.download-part h5,
.download-part ul,
.download-part ul li,
.download-part ul li img {
    display: none !important;
}

/* Copyright bölümü kaldırıldı */
.copy-part {
    display: none !important;
    background: #2c2c2c;
    padding: 8px 0;
    text-align: center;
}

.copy-part ul {
    display: none !important;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.copy-part ul li {
    display: none !important;
    margin: 0 6px;
    color: #ccc;
    font-size: 9px;
}

.copy-part ul li a {
    display: none !important;
    color: #ff6b6b;
    text-decoration: none;
    font-size: 9px;
}

/* Blog/Haberler Bölümü Stilleri */
.blog-part {
    padding: 100px 0;
    background: #f8f9fa;
}

.blog-slider {
    position: relative;
    padding: 0 50px;
}

.blog-slider .slick-slide {
    margin: 0 10px;
    height: auto;
}

.blog-slider .slick-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}

.blog-slider .blog-card {
    height: 250px;
    width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
    margin: 0 5px;
}

.blog-slider .blog-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Blog overlay */
.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-overlay {
    transform: translateY(0);
}

.blog-overlay p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.blog-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-overlay h3 a {
    color: white;
    text-decoration: none;
}

.blog-overlay h3 a:hover {
    color: #ff6b35;
}

.blog-overlay .btn {
    display: inline-block;
    padding: 8px 16px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-overlay .btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Slider ok butonları */
.blog-slider .slick-prev,
.blog-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    text-indent: -9999px;
    overflow: hidden;
}

.blog-slider .slick-prev::before,
.blog-slider .slick-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.blog-slider .slick-prev::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent white transparent transparent;
    margin-left: -2px;
}

.blog-slider .slick-next::before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent white;
    margin-left: 2px;
}

.blog-slider .slick-prev {
    left: -20px;
}

.blog-slider .slick-next {
    right: -20px;
}

.blog-slider .slick-prev:hover,
.blog-slider .slick-next:hover {
    background: #e55a2b;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive blog kartları */
@media (max-width: 575px) {
    .blog-slider .blog-card {
        width: 250px;
        margin: 0px 10px;
    }
    
    .blog-overlay h4 {
        left: 25px;
        right: 25px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .blog-slider .blog-card {
        width: 325px;
    }
}

/* Slider ok butonları */
.slider-arrow .slick-prev,
.slider-arrow .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-arrow .slick-prev {
    left: -50px;
}

.slider-arrow .slick-next {
    right: -50px;
}

.slider-arrow .slick-prev:hover,
.slider-arrow .slick-next:hover {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Blog slider özel stilleri */
.blog-slider {
    position: relative;
    padding: 0 50px;
}

.blog-slider .slick-slide {
    margin: 0 10px;
    height: auto;
}

.blog-slider .slick-track {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}

.blog-slider .blog-card {
    height: 250px;
    width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
    margin: 0 5px;
}

.blog-slider .blog-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Blog overlay */
.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-overlay {
    transform: translateY(0);
}

.blog-overlay p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.blog-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-overlay h3 a {
    color: white;
    text-decoration: none;
}

.blog-overlay h3 a:hover {
    color: #ff6b35;
}

.blog-overlay .btn {
    display: inline-block;
    padding: 8px 16px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-overlay .btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Slider ok butonları */
.blog-slider .slick-prev,
.blog-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    text-indent: -9999px;
    overflow: hidden;
}

.blog-slider .slick-prev::before,
.blog-slider .slick-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.blog-slider .slick-prev::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent white transparent transparent;
    margin-left: -2px;
}

.blog-slider .slick-next::before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent white;
    margin-left: 2px;
}

.blog-slider .slick-prev {
    left: -20px;
}

.blog-slider .slick-next {
    right: -20px;
}

.blog-slider .slick-prev:hover,
.blog-slider .slick-next:hover {
    background: #e55a2b;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .copy-part ul {
        flex-direction: column;
    }
    
    .copy-part ul li {
        margin: 5px 0;
    }
    
    .blog-card {
        margin: 0 10px;
    }
    
    .blog-overlay {
        padding: 20px 15px 15px;
        background: rgba(0, 0, 0, 0.8) !important; /* Mobilde daha koyu ve her zaman görünür */
        opacity: 1 !important; /* Her zaman görünür */
        visibility: visible !important; /* Her zaman görünür */
    }
    
    .blog-overlay h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .blog-overlay p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .blog-overlay .btn {
        font-size: 14px;
        padding: 6px 20px;
    }
    
    .slider-arrow .slick-prev {
        left: -30px;
    }
    
    .slider-arrow .slick-next {
        right: -30px;
    }
} 

/* Makale Bölümü Stilleri */
.article-part {
    padding: 100px 0;
    background: #f8f9fa;
}

.article-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
    line-height: 1.7; /* Daha iyi okunabilirlik */
    font-family: 'Poppins', sans-serif;
    padding: 30px; /* Yan boşluk */
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Article İllüstrasyon Stilleri */
.article-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
    padding: 20px;
}

.article-illustration .radio-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.2));
}

.article-illustration .radio-illustration .radio-waves circle {
    animation: wave-pulse 3s ease-in-out infinite;
}

.article-illustration .radio-illustration .screen-waves path {
    animation: wave-flow 2s ease-in-out infinite;
}

.article-illustration .radio-illustration .music-notes g {
    animation: float 4s ease-in-out infinite;
}

.article-illustration .radio-illustration .note1 {
    animation-delay: 0s;
}

.article-illustration .radio-illustration .note2 {
    animation-delay: 1s;
}

.article-illustration .radio-illustration .note3 {
    animation-delay: 2s;
}

@keyframes wave-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

@keyframes wave-flow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.article-content p {
    font-size: 19px; /* Daha büyük */
    color: #2c3e50;
    margin-bottom: 28px; /* Daha fazla boşluk */
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.4px; /* Daha fazla harf aralığı */
    line-height: 1.8; /* Daha iyi satır aralığı */
}

.article-content p:last-child {
    margin-bottom: 0;
}

/* Makale içi fotoğraflar için otomatik boyutlandırma */
.article-content img {
    max-width: 100% !important;
    max-height: 400px !important; /* Maksimum yükseklik */
    width: auto !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 20px auto; /* Merkez hizalama */
    display: block;
    object-fit: cover; /* Oran korunması */
}

/* Featured image için özel stil */
.article-content .wp-block-image img,
.article-content .wp-block-image {
    max-width: 100% !important;
    max-height: 300px !important; /* Daha küçük */
    width: auto !important;
    height: auto !important;
    margin: 20px auto !important;
    display: block !important;
    object-fit: cover !important;
}

/* Tüm resimler için genel kural */
.article-content figure,
.article-content figure img {
    max-width: 100% !important;
    max-height: 350px !important;
    width: auto !important;
    height: auto !important;
    margin: 20px auto !important;
    display: block !important;
    object-fit: cover !important;
}

/* Makale başlıkları */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: #2c3e50;
    font-weight: 700; /* Daha kalın */
    margin: 35px 0 20px 0; /* Daha fazla boşluk */
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.article-content h1 {
    font-size: 2.8rem; /* Daha büyük */
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
}

.article-content h2 {
    font-size: 2.2rem; /* Daha büyük */
    color: #ff6b35;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.article-content h3 {
    font-size: 1.7rem; /* Daha büyük */
    color: #34495e;
}

/* Makale linkleri */
.article-content a {
    color: #ff6b35;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: #f7931e;
    border-bottom-color: #f7931e;
}

/* Makale listeleri */
.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Makale alıntıları */
.article-content blockquote {
    border-left: 4px solid #ff6b35;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 18px;
    color: #34495e;
}

/* Makale kod blokları */
.article-content code {
    background: #f1f2f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #e74c3c;
}

/* Mobil için makale içi */
@media (max-width: 768px) {
    .article-content {
        padding: 20px 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .article-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .article-content h1 {
        font-size: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .article-content img {
        margin: 15px 0;
    }
    
    .article-illustration {
        min-height: 300px;
    }
    .article-illustration .radio-illustration {
        max-width: 300px;
    }
}

/* Section heading stilleri */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gdnt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gdnt);
    margin: 15px auto 0;
    border-radius: 2px;
} 

/* Navbar Stilleri */
.navbar-part {
    position: sticky;
    top: 0;
    z-index: 1010;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-part.navbar-fixed {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Navbar Layout */
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: flex-start;
    z-index: 1000;
    position: relative;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: flex-end;
    z-index: 1000;
    position: relative;
}

.navbar-player-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1005;
}

.navbar-part.navbar-fixed .navbar-left,
.navbar-part.navbar-fixed .navbar-right {
    gap: 25px;
}

/* Navbar Player Butonu */
.navbar-player-center .player {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-player-center .player-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gdnt);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.navbar-player-center .player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.navbar-player-center .player-btn.playing {
    background: var(--hover-gdnt);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Navbar düzenlemesi */
.navbar-part.navbar-fixed .navbar-player-center .player-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
}

/* Navbar Link Stilleri */
.navbar-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    transition: all 0.3s ease;
    z-index: 1000;
    position: relative;
}

.navbar-item {
    position: relative;
    z-index: 1000;
}

.navbar-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
}

.navbar-part.navbar-fixed .navbar-link {
    font-size: 15px;
    padding: 8px 12px;
}

/* Navbar-link ::before pseudo-elementini kaldır */
/* .navbar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gdnt);
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar-link:hover::before {
    left: 0;
} */

.navbar-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
    border-radius: 20px;
    padding: 8px 15px;
}

.navbar-link span {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.navbar-part.navbar-fixed .navbar-link span {
    gap: 6px;
}

.navbar-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.navbar-part.navbar-fixed .navbar-link i {
    font-size: 13px;
}

.navbar-link:hover i {
    transform: scale(1.2);
}

/* Dropdown menü */
.navbar-dropdown {
    position: relative;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-dropdown:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-link:hover {
    background: var(--primary-gdnt);
    color: white;
    transform: translateX(5px);
}

.dropdown-link:last-child {
    border-bottom: none;
}

/* Mobil menü */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

/* Navbar Player Stilleri */
.navbar-player {
    position: relative;
    margin: 0px 150px;
}

.navbar-player .player {
    position: absolute;
    top: -100px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    box-shadow: 0px 7px 13px 0px rgba(0,0,0,0.15);
}

.navbar-fixed .navbar-player .player {
    top: -50px;
    width: 200px;
    height: 200px;
    margin-bottom: -100px;
}

.navbar-fixed .navbar-player .player .player-btn i {
    font-size: 35px;
}

/* Navbar List Stilleri */
.navbar-list {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-list.navbar-left {
    justify-content: flex-start;
}

.navbar-list.navbar-right {
    justify-content: flex-end;
}

.navbar-item {
    margin: 0 15px;
}

.navbar-link {
    font-weight: 500;
    padding: 25px 0px;
    color: var(--text);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all linear .3s;
}

.navbar-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.navbar-link:hover i {
    transform: rotate(-90deg);
}

.navbar-link i {
    margin-right: 5px;
    margin-top: -2px;
    transition: all linear .3s;
}

.navbar-item.active .navbar-link {
    color: var(--primary);
}

.navbar-item.active .navbar-link i {
    transform: rotate(-90deg);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-player {
        display: none;
    }
    
    .navbar-content {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-logo {
        display: block;
    }
    
    .navbar-logo img {
        width: 120px;
        height: auto;
    }
    
    .navbar-toggle {
        display: block;
        border: none;
        background: none;
        margin-left: auto;
    }
    
    .navbar-toggle i {
        color: var(--white);
        font-size: 18px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        transition: all linear .3s;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(255,107,53,0.3);
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .navbar-toggle i:hover {
        color: var(--white);
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    }
    
    .navbar-btn {
        display: block;
        text-align: center;
    }
    
    /* Mobil menü overlay stilleri */
    .navbar-overlay {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100vh;
        visibility: hidden;
        opacity: 0;
        background: rgba(0,0,0,0.7);
        transition: all linear .1s;
        z-index: 3;
    }
    
    .navbar-overlay.active {
        visibility: visible;
        opacity: 1;
    }
    
    .navbar-overlay.active .navbar-slide {
        right: 0px;
    }
    
    .navbar-slide {
        position: fixed;
        top: 0px;
        right: -300px;
        z-index: 3;
        width: 280px;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        box-shadow: -8px 0px 20px 0px rgba(0,0,0,0.2);
        transition: all linear .3s;
        padding-top: 0;
        border-left: 1px solid #eee;
    }
    
    /* Mobil menü header */
    .navbar-slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        z-index: 1;
    }
    
    /* Mobil menü kapatma butonu */
    .navbar-slide::before {
        content: '× Kapat';
        position: absolute;
        top: 20px;
        right: 20px;
        width: auto;
        height: 35px;
        padding: 0 15px;
        background: rgba(255,255,255,0.9);
        color: var(--primary-color);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        z-index: 10;
        border: 1px solid rgba(255,107,53,0.3);
    }
    
    .navbar-slide .navbar-list {
        width: 100%;
        display: block;
        margin-bottom: 30px;
        padding: 0;
        margin-top: 80px;
        position: relative;
        z-index: 2;
    }
    
    .navbar-slide .navbar-list li {
        border-bottom: 1px solid #eee;
        margin: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-slide .navbar-list li:hover {
        background: rgba(255,107,53,0.05);
    }
    
    .navbar-slide .navbar-link {
        width: 100%;
        padding: 18px 25px;
        margin-right: 0px;
        justify-content: flex-start;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color);
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .navbar-slide .navbar-link i {
        margin-right: 15px;
        font-size: 18px;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .navbar-slide .navbar-link:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        transform: translateX(-5px);
    }
    
    .navbar-slide .navbar-link:hover i {
        color: var(--white);
        transform: scale(1.1);
    }
    
    .navbar-fixed {
        border-radius: 0px 0px 10px 10px;
    }
    
    .navbar-fixed .navbar-link {
        padding: 12px 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-player {
        margin: 0px 120px;
    }
} 

/* 404 Error Page CSS */
.error-content {
    text-align: center;
    padding: 50px 0px;
}

.error-content h3 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-content p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.error-actions {
    margin-top: 40px;
}

.error-actions .btn {
    margin: 0px 10px;
    display: inline-block;
}

.error-actions .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.error-actions .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 767px) {
    .error-content h3 {
        font-size: 36px;
    }
    .error-content p {
        font-size: 16px;
    }
    .error-actions .btn {
        display: block;
        margin: 10px 0px;
    }
} 

/* About Part CSS */
.about-part {
    padding: 100px 0px;
    background: var(--light-white);
}

.about-img {
    position: relative;
    margin-bottom: 30px;
}

.about-1 img {
    width: 75%;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 30px 20px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 30px 20px rgba(0,0,0,0.1);
}

.about-2 {
    position: absolute;
    bottom: 0px;
    right: 40px;
    border-radius: 50%;
    border: 10px solid var(--white);
    -webkit-box-shadow: 0px 0px 30px 20px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 30px 20px rgba(0,0,0,0.1);
}

.about-2 img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
}

.about-content {
    margin-left: 0;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-bottom: 30px;
    color: var(--heading);
}

.about-content h2 span {
    font-size: 60px;
    line-height: 68px;
    text-transform: uppercase;
    background: var(--primary-gdnt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.8;
}

.about-content h3 {
    position: relative;
    margin-left: 50px;
    color: var(--heading);
}

.about-content h3::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    border-radius: 30px;
    background: var(--primary-gdnt);
}

@media (max-width: 1199px) {
    .about-2 {
        right: 0px;
    }
}

@media (max-width: 575px) {
    .about-img {
        width: 290px;
        margin: 0 auto 30px;
    }
    .about-1 img {
        width: 80%;
    }
    .about-2 {
        border: 6px solid var(--white);
    }
    .about-2 img {
        width: 150px;
        height: 150px;
    }
    .about-content {
        margin-left: 0px;
        margin-bottom: 30px;
        padding: 20px 15px;
    }
    .about-content h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    .about-content h2 span {
        font-size: 40px;
        line-height: 48px;
    }
    .about-content h3 {
        display: inline-block;
    }
    
    /* Mobilde logo daha küçük */
    .navbar-logo img {
        width: 100px;
        height: auto;
    }
    
    .navbar-content {
        padding: 8px 10px;
    }
    
    .navbar-toggle i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .about-img {
        width: 500px;
        margin: 0 auto 30px;
    }
    .about-content {
        margin-left: 0px;
    }
} 

/* Force refresh CSS - Cache temizleme */

/* Sadece OFSPANEL footer linkleri için özel stil - En güçlü selector */
.footer-part .footer-link ul li a,
.footer-part .footer-link ul li a:link,
.footer-part .footer-link ul li a:visited,
.footer-part .footer-link ul li a:active,
.footer-part .footer-link ul li a:hover {
    color: #000 !important; /* Siyah renk */
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    background: rgba(255, 255, 255, 0.7) !important; /* Kırık beyaz arka plan */
    padding: 12px 20px !important;
    border-radius: 8px !important;
    display: block !important;
    margin-bottom: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.footer-part .footer-link ul li a:hover {
    color: #000 !important; /* Siyah kalacak */
    background: rgba(255, 255, 255, 0.9) !important; /* Hover'da biraz daha beyaz */
    text-shadow: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
} 

/* Footer Address yazıları için özel stil - Dinleme linkleri gibi */
.footer-part .footer-address li a {
    display: inline-flex !important;
    align-items: center !important;
    color: #fff !important;
    background: linear-gradient(45deg, #ff6b35, #f7931e) !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    margin: 5px 0 !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
}

.footer-part .footer-address li a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* Footer Address ikonları için - Beyaz yap */
.footer-part .footer-address li a i {
    color: #fff !important;
    margin-right: 10px !important;
    font-size: 16px !important;
}

/* Footer Link yazıları için özel stil - Dinleme linkleri gibi */
.footer-part .footer-link li a {
    display: inline-flex !important;
    align-items: center !important;
    color: #fff !important;
    background: linear-gradient(45deg, #ff6b35, #f7931e) !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    margin: 5px 0 !important;
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
}

.footer-part .footer-link li a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* Footer Link ikonları için - Beyaz yap */
.footer-part .footer-link li a i {
    color: #fff !important;
    margin-right: 10px !important;
    font-size: 16px !important;
}

/* Mobil için footer düzenlemeleri */
@media (max-width: 768px) {
    .footer-part {
        padding: 8px 0px 8px !important; /* 15px'den 8px'e düşürüldü */
        border-radius: 0px !important;
    }
    
    .footer-part .footer-address li a,
    .footer-part .footer-link li a {
        padding: 4px 8px !important; /* 6px 10px'den 4px 8px'e düşürüldü */
        border-radius: 2px !important; /* 3px'den 2px'e düşürüldü */
        font-size: 8px !important; /* 10px'den 8px'e düşürüldü */
        margin: 1px 0 !important; /* 2px'den 1px'e düşürüldü */
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
        min-height: 18px !important; /* 24px'den 18px'e düşürüldü */
        display: flex !important;
        align-items: center !important;
    }
    
    .footer-part .footer-address li a i,
    .footer-part .footer-link li a i {
        font-size: 8px !important; /* 10px'den 8px'e düşürüldü */
        margin-right: 4px !important; /* 6px'den 4px'e düşürüldü */
        min-width: 10px !important; /* 12px'den 10px'e düşürüldü */
    }
    
    .footer-part .footer-address li,
    .footer-part .footer-link li {
        margin-bottom: 2px !important; /* 3px'den 2px'e düşürüldü */
        width: 100% !important;
    }
    
    /* Footer kolonları arası boşluk */
    .footer-part .col-lg-4 {
        margin-bottom: 6px !important; /* 10px'den 6px'e düşürüldü */
    }
    
    /* Footer başlıkları */
    .footer-part .footer-heading h3 {
        font-size: 12px !important; /* 14px'den 12px'e düşürüldü */
        margin-bottom: 4px !important; /* 6px'den 4px'e düşürüldü */
    }
    
    .footer-part .footer-heading p {
        font-size: 8px !important; /* 10px'den 8px'e düşürüldü */
        margin-bottom: 5px !important; /* 8px'den 5px'e düşürüldü */
    }
    
    /* Footer logo */
    .footer-logo {
        margin-bottom: 6px !important; /* 10px'den 6px'e düşürüldü */
    }
    
    .footer-logo img {
        max-height: 18px !important; /* 24px'den 18px'e düşürüldü */
        margin-bottom: 5px !important; /* 8px'den 5px'e düşürüldü */
    }
} 

/* Benzer Yazılar Bölümü */
.similar-posts {
    margin: 50px 0;
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 10px;
}

.similar-posts h3 {
    text-align: center;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 30px;
    font-weight: 700;
}

.similar-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.similar-post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.similar-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.similar-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.similar-post-content {
    padding: 20px;
}

.similar-post-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.similar-post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.similar-post-title a:hover {
    color: #ff6b35;
}

.similar-post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.similar-post-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 15px;
}

.similar-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Önceki/Sonraki yazı linklerini gizle */
.post-navigation {
    display: none !important;
}

/* Mobil için benzer yazılar */
@media (max-width: 768px) {
    .similar-posts {
        margin: 30px 0;
        padding: 20px;
    }
    
    .similar-posts h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .similar-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .similar-post-image {
        height: 150px;
    }
    
    .similar-post-content {
        padding: 15px;
    }
    
    .similar-post-title {
        font-size: 1rem;
    }
} 

/* Page içeriği için de aynı stiller */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    padding: 0 20px;
}

.page-content p {
    font-size: 19px;
    color: #2c3e50;
    margin-bottom: 28px;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.4px;
    line-height: 1.8;
}

/* Page başlıkları */
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #2c3e50;
    font-weight: 700;
    margin: 35px 0 20px 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.page-content h1 {
    font-size: 2.8rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 30px;
}

.page-content h2 {
    font-size: 2.2rem;
    color: #ff6b35;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.page-content h3 {
    font-size: 1.7rem;
    color: #34495e;
}

/* Page içi fotoğraflar */
.page-content img {
    max-width: 100% !important;
    max-height: 400px !important;
    width: auto !important;
    height: auto !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 20px auto;
    display: block;
    object-fit: cover;
}

.page-content .wp-block-image img,
.page-content .wp-block-image {
    max-width: 100% !important;
    max-height: 300px !important;
    width: auto !important;
    height: auto !important;
    margin: 20px auto !important;
    display: block !important;
    object-fit: cover !important;
}

.page-content figure,
.page-content figure img {
    max-width: 100% !important;
    max-height: 350px !important;
    width: auto !important;
    height: auto !important;
    margin: 20px auto !important;
    display: block !important;
    object-fit: cover !important;
}

/* Page linkleri */
.page-content a {
    color: #ff6b35;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: #f7931e;
    border-bottom-color: #f7931e;
}

/* Page listeleri */
.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    font-size: 19px;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Page alıntıları */
.page-content blockquote {
    border-left: 4px solid #ff6b35;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 18px;
    color: #34495e;
}

/* Page kod blokları */
.page-content code {
    background: #f1f2f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #e74c3c;
}

/* Page mobil stilleri */
@media (max-width: 768px) {
    .page-content {
        padding: 0 20px;
        line-height: 1.5;
    }
    
    .page-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .page-content h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3 {
        font-size: 1.3rem;
    }
    
    .page-content img {
        margin: 15px 0;
    }
} 

/* Video-part bölümü için daha az padding */
.section.video-part {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section.video-part .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section.video-part .row {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section.video-part .row + .row {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.section.video-part .blog-detail {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section.video-part .blog-detail * {
    margin-bottom: 0 !important;
}

.section.video-part .blog-detail p:last-child,
.section.video-part .blog-detail div:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.comments-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.comments-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Tüm olası margin ve padding değerlerini sıfırla */
.section.video-part * {
    margin-bottom: 1 !important;
}

.section.video-part .col-lg-8 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section.video-part .col-lg-4 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Blog detay sayfası için kompakt görünüm */
.blog-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 0;
}

.blog-detail .section-heading {
    margin-bottom: 30px;
    text-align: center;
}

.blog-detail .section-heading h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.blog-detail .blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.blog-detail .blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.blog-detail .blog-featured-image {
    margin-bottom: 30px;
    text-align: center;
}

.blog-detail .blog-featured-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-detail .blog-content {
    margin-top: 30px;
}

.blog-detail .blog-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-detail .blog-tags h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.blog-detail .blog-tags .tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 5px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail .blog-tags .tag:hover {
    background: #ff6b35;
    color: #fff;
} 

/* YORUM BÖLÜMÜ - TEMİZ VE DÜZENLİ STİLLER */
.comments-area {
    margin-top: 0 !important;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    clear: both;
    width: 100%;
    max-width: 100%;
}

.comments-container {
    width: 100%;
    margin: 0;
}

.comments-title {
    font-size: 2rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Yorum Listesi */
.comments-list {
    margin-bottom: 40px;
}

.comment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    border-radius: 50%;
    border: 3px solid #ff6b35;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.comment-author {
    font-weight: 600;
    color: #ff6b35;
    font-size: 16px;
}

.comment-author a {
    color: #ff6b35;
    text-decoration: none;
}

.comment-date {
    color: #666;
    font-size: 14px;
}

.comment-text {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.comment-actions {
    margin-top: 15px;
}

.comment-actions a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid #ff6b35;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.comment-actions a:hover {
    background: #ff6b35;
    color: #fff;
}

/* Yorum Formu */
.comment-respond {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.comment-reply-title {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 30px;
    text-align: center;
}

.comment-form {
    display: grid;
    gap: 20px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex;
    flex-direction: column;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment textarea:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.comment-form-comment textarea {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    background: #fff;
}

.comment-notes {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    margin-bottom: 20px;
}

.comment-notes span {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit input[type="submit"] {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.form-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Yanıt yorumları için girinti */
.comment-item .comment-item {
    margin-left: 40px;
    margin-top: 20px;
    background: #fff;
    border-left-color: #f7931e;
}

/* Mobil için yorum stilleri */
@media (max-width: 768px) {
    .comments-area {
        padding: 20px;
        margin-top: 30px;
    }
    
    .comment-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .comment-avatar {
        text-align: center;
    }
    
    .comment-meta {
        justify-content: center;
        text-align: center;
    }
    
    .comment-form {
        gap: 15px;
    }
    
    .comment-item .comment-item {
        margin-left: 20px;
    }
    
    .comments-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .section.video-part .comments-area {
        padding: 20px;
        margin-top: 30px;
    }
} 

/* Hızlı Linkler Bölümü */
.quick-links-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.quick-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ff6b35" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ff6b35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.quick-link-card {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.35);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card .link-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-link-card .link-icon i {
    font-size: 22px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.quick-link-card .link-content {
    position: relative;
    z-index: 2;
}

.quick-link-card .link-content h3 {
    font-size: 17px;
    margin: 0 0 6px 0;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.quick-link-card .link-content p {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.quick-link-card .link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Hızlı Linkler için özel renkler */
.quick-link-card:nth-child(1) {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.quick-link-card:nth-child(2) {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%);
}

.quick-link-card:nth-child(3) {
    background: linear-gradient(135deg, #ff7043 0%, #ffab40 100%);
}

.quick-link-card:nth-child(4) {
    background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .quick-links-section {
        padding: 30px 0;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .quick-link-card {
        padding: 20px 15px;
        min-height: 140px;
    }
    
    .quick-link-card .link-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .quick-link-card .link-icon i {
        font-size: 20px;
    }
    
    .quick-link-card .link-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .quick-link-card .link-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quick-link-card {
        padding: 18px 15px;
        min-height: 120px;
    }
    
    .quick-link-card .link-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .quick-link-card .link-icon i {
        font-size: 18px;
    }
    
    .quick-link-card .link-content h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .quick-link-card .link-content p {
        font-size: 11px;
    }
}

/* Radyo Yayın Yazılımları Ana Sayfa Bölümü */
.dj-programs-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Platform Filtreleme Butonları */
.platform-filters {
    margin-bottom: 40px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.filter-btn i {
    font-size: 1.1rem;
}

.filter-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-color: #ff6b35;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.dj-programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title i {
    color: #ff6b35;
    margin-right: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.dj-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.dj-program-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Gradient renkler için özel sınıflar */
.dj-program-card.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dj-program-card.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.dj-program-card.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.dj-program-card.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.dj-program-card.gradient-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.dj-program-card.gradient-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.dj-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.dj-program-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.dj-program-card:hover .program-overlay {
    opacity: 1;
    transform: translateY(0);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.program-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.program-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: inherit;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.program-description {
    color: inherit;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 500;
}

.program-platform {
    margin-bottom: 15px;
}

.platform-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.platform-tag.android {
    background: linear-gradient(135deg, #3ddc84 0%, #2bb673 100%);
}

.platform-tag.ios {
    background: linear-gradient(135deg, #007aff 0%, #0056b3 100%);
}

.platform-tag.masaüstü {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Overlay efekti */
.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-radius: 20px;
    text-decoration: none;
    color: white;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.overlay-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.dj-programs-cta {
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button i {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.cta-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 3px;
}

/* DJ Programs Responsive */
@media (max-width: 768px) {
    .dj-programs-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .dj-programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .dj-program-card {
        padding: 20px;
    }
    
    .program-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .program-content h3 {
        font-size: 1.3rem;
    }
    
    .program-description {
        font-size: 0.9rem;
    }
    
    .overlay-icon {
        font-size: 2.5rem;
    }
    
    .overlay-text {
        font-size: 1rem;
    }
    
    .platform-filters {
        margin-bottom: 30px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .cta-button i {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .cta-subtitle {
        font-size: 0.75rem;
        margin-top: 2px;
    }
}

/* ===== SIDEBAR STİLLERİ ===== */
.sidebar {
    padding: 20px 0;
    position: relative;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Popüler Konular */
.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.topic-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.topic-list li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.topic-list li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Son Yazılar */
.sidebar-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-post-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sidebar-post-item:last-child {
    border-bottom: none;
}

.sidebar-post-item:hover {
    background: rgba(255,107,53,0.05);
    border-radius: 8px;
    padding: 15px;
    margin: 0 -15px;
}

.sidebar-post-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sidebar-post-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-post-title a:hover {
    color: var(--primary-color);
}

.sidebar-post-meta {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-post-meta i {
    color: var(--primary-color);
    font-size: 11px;
}

/* Sıkça Sorulan Sorular */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255,107,53,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,107,53,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255,107,53,0.08);
    transform: translateY(-2px);
}

.faq-item summary {
    padding: 15px 20px;
    background: rgba(255,107,53,0.1);
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: rgba(255,107,53,0.15);
    color: var(--primary-color);
}

.faq-item summary::before {
    content: '▶';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 12px;
    transition: all 0.3s ease;
}

.faq-item[open] summary::before {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item p {
    padding: 15px 20px;
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    background: var(--white);
}

/* Responsive Sidebar */
@media (max-width: 991px) {
    .sidebar {
        margin-top: 40px;
    }
    
    .sidebar-widget {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .widget-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .sidebar-widget {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .topic-list li a {
        font-size: 14px;
    }
    
    .sidebar-post-title {
        font-size: 13px;
    }
    
    .faq-item summary {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .faq-item p {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* Blog Detay Sayfası Layout - Media Query'lerde tanımlandı */

/* YORUM BÖLÜMÜ - BLOG İÇİNDE */
.blog-comments {
    margin-top: 30px;
    width: 100%;
}

.blog-comments .comments-area {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
}

/* Yorumların görünürlüğünü garanti et */
.blog-comments,
.blog-comments .comments-area,
.blog-comments .comments-title,
.blog-comments .comments-list,
.blog-comments .comment-respond,
.blog-comments .comment-form,
.blog-comments .comment-list {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
}

/* YORUMLAR ARTIK BLOG İÇERİĞİNİN İÇİNDE */

/* Masaüstü için - CSS Grid */
@media (min-width: 992px) {
    .section.video-part .row {
        display: grid !important;
        grid-template-columns: 2fr 1fr !important;
        gap: 30px !important;
        align-items: start !important;
    }
    
    .section.video-part .col-lg-8 {
        width: 100% !important;
        max-width: 100% !important;
        order: 1;
    }
    
    .section.video-part .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
        order: 2;
        position: sticky !important;
        top: 100px !important;
        align-self: start !important;
        height: fit-content !important;
        z-index: 10 !important;
    }
    
    .section.video-part .sidebar {
        background: #f5f5f5;
        padding: 20px;
        border-radius: 10px;
        position: relative;
    }
    

    
    /* Yorumların görünürlüğünü garanti et */
    .comments-container,
    .comments-area,
    .comments-title,
    .comments-list,
    .comment-respond {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    

    
    /* Yorumlar */
    .comments-container .row {
        display: flex;
        gap: 30px;
    }
    
    .comments-container .col-lg-8 {
        flex: 2;
    }
    
    .comments-container .col-lg-4 {
        flex: 1;
    }
}

/* Mobil cihazlarda sidebar'ı altına düşür */
@media (max-width: 991px) {
    .section.video-part .row {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    
    .section.video-part .col-lg-8,
    .section.video-part .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        order: unset;
        position: static;
    }
    
    .section.video-part .col-lg-4 {
        margin-top: 30px;
        display: block !important;
    }
    
    .section.video-part .sidebar {
        display: block !important;
        position: static !important;
    }
    
    .section.video-part .comments-area {
        margin-top: 0 !important;
        padding: 20px;
    }
    
    /* Mobilde sidebar widget'larını düzenle */
    .section.video-part .sidebar-widget {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .section.video-part .widget-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .section.video-part .topic-list li a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .section.video-part .sidebar-post-title {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 576px) {
    .section.video-part .col-lg-4 {
        margin-top: 20px;
    }
    
    .section.video-part .sidebar-widget {
        margin-bottom: 15px;
        padding: 12px;
    }
    
    .section.video-part .widget-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .section.video-part .topic-list li a {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .section.video-part .sidebar-post-title {
        font-size: 13px;
    }
}

/* Sidebar widget'larının daha iyi görünmesi için */
.sidebar {
    position: relative;
    height: auto;
    min-height: auto;
}

.sidebar-widget {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

/* Blog içeriği ile sidebar arasında boşluk */
.blog-detail {
    margin-bottom: 0;
    height: auto;
    min-height: auto;
}

/* Yorumlar alanının düzeni */
.comments-area {
    margin-top: 0 !important;
    clear: both;
}

/* Blog içeriği ile yorumlar arası boşlukları kaldır */
.section.video-part .blog-detail {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section.video-part .row + .row {
    margin-top: 0 !important;
}

.section.video-part .comments-area {
    margin-top: 0 !important;
}

/* BLOG YAZISI İLE YORUMLAR ARASI BOŞLUĞU TAMAMEN KALDIR */
.section.video-part .row + .row {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.section.video-part .blog-detail {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section.video-part .comments-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ESKİ YAZILAR İÇİN ÖZEL KURALLAR - wpautop SORUNUNU ÇÖZ */
.blog-detail p:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.blog-detail .blog-content p:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.blog-detail .blog-content div:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* WordPress'in otomatik eklediği paragrafları temizle */
.blog-detail .blog-content p {
    margin-bottom: 1em;
}

.blog-detail .blog-content p:last-child {
    margin-bottom: 0 !important;
}

/* Eski yazılarda oluşan fazla boşlukları kaldır */
.blog-detail .blog-content {
    margin-bottom: 0 !important;
}

.blog-detail .blog-content *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Modern Sohbet Formu Stilleri */
.chat-login-modern {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.chat-login-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.chat-login-modern .chat-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.chat-login-modern .chat-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-login-modern .chat-logo i {
    font-size: 24px;
    color: white;
}

.chat-login-modern .chat-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chat-login-modern .chat-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 5px 0 0;
    font-weight: 400;
}

.chat-login-modern form {
    position: relative;
    z-index: 2;
}

.chat-login-modern .form-group {
    margin-bottom: 15px;
    position: relative;
}

.chat-login-modern .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    flex-direction: row;
}

.chat-login-modern .input-wrapper:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.chat-login-modern .input-wrapper:focus-within {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.chat-login-modern .input-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 16px;
    flex-shrink: 0;
    order: 1;
    margin-left: 10px;
    position: static !important;
    top: auto !important;
    right: auto !important;
}

.chat-login-modern .form-control {
    border: none;
    background: transparent;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    width: 100%;
    outline: none;
}

.chat-login-modern .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.chat-login-modern .form-control:focus {
    outline: none;
    box-shadow: none;
}

.chat-login-modern .form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin: 15px 0 20px;
    font-weight: 400;
    line-height: 1.4;
}

.chat-login-modern .btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-login-modern .btn-chat {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chat-login-modern .btn-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.chat-login-modern .btn-chat:hover::before {
    left: 100%;
}

.chat-login-modern .btn-primary {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.chat-login-modern .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6);
}

.chat-login-modern .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.chat-login-modern .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.chat-login-modern .btn-tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.chat-login-modern .btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Ana sayfa için özel sohbet formu */
.homepage-chat-form {
    margin: 20px 0;
}

.homepage-chat-form .chat-login-modern {
    max-width: 350px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 15px;
}

.homepage-chat-form .chat-login-modern .chat-header {
    margin-bottom: 15px;
}

.homepage-chat-form .chat-login-modern .chat-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.homepage-chat-form .chat-login-modern .chat-logo i {
    font-size: 20px;
}

.homepage-chat-form .chat-login-modern .chat-title {
    font-size: 20px;
}

.homepage-chat-form .chat-login-modern .chat-subtitle {
    font-size: 12px;
}

.homepage-chat-form .chat-login-modern .input-wrapper {
    margin-bottom: 15px;
}

.homepage-chat-form .chat-login-modern .btn-chat {
    padding: 10px 15px;
    font-size: 13px;
}

/* Sidebar için kompakt sohbet formu */
.sidebar .chat-login-modern {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: -8px;
    padding: 0px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    /* margin-bottom: 30px; */
}

.sidebar .chat-login-modern .chat-header {
    margin-bottom: 16px;
}

.sidebar .chat-login-modern .chat-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.sidebar .chat-login-modern .chat-subtitle {
    font-size: 11px;
    opacity: 0.9;
}

.sidebar .chat-login-modern .chat-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.sidebar .chat-login-modern .chat-logo i {
    font-size: 16px;
}

.sidebar .chat-login-modern .form-group {
    margin-bottom: 0;
}

.sidebar .chat-login-modern .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1px 0px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 18px;
    flex-direction: row;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.sidebar .chat-login-modern .input-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
    order: -1 !important; /* Icons to the left */
    margin-right: 8px !important;
    margin-left: 0 !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    color: #ff6b35 !important;
}

.sidebar .chat-login-modern .form-control {
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border: none;
    background: transparent;
    width: 100% !important;
    min-width: 0 !important;
    outline: none;
    flex: 1 !important;
    box-sizing: border-box !important;
    display: block !important;
}

.sidebar .chat-login-modern .form-note {
    font-size: 10px;
    margin: 10px 0 12px;
    line-height: 1.2;
}

.sidebar .chat-login-modern .btn-group {
    gap: 6px;
}

.sidebar .chat-login-modern .btn-chat {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
    min-height: 36px;
}

.sidebar .chat-login-modern .btn-chat i {
    font-size: 11px;
    margin-right: 4px;
}

/* Sidebar için özel buton stilleri */
.sidebar .chat-login-modern .btn-primary {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.sidebar .chat-login-modern .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sidebar Widget Stilleri */
.sidebar-widget {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.widget-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.topic-list li:last-child {
    border-bottom: none;
}

.topic-list li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.topic-list li a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    background: rgba(255, 107, 53, 0.1);
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: rgba(255, 107, 53, 0.2);
}

.faq-item p {
    padding: 15px;
    margin: 0;
    background: #fff;
    color: #666;
    line-height: 1.6;
}

.quick-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-link-list li {
    margin-bottom: 8px;
}

.quick-link-list li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.quick-link-list li a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Son Yazılar Widget Stilleri */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-title a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: block;
}

.recent-post-title a:hover {
    color: #ff6b35;
}

.recent-post-meta {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.recent-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Son Yorumlar Widget Stilleri */
.recent-comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-comment-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recent-comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-author {
    margin-bottom: 5px;
}

.comment-author strong {
    color: #333;
    font-size: 13px;
}

.comment-excerpt {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.comment-meta a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.comment-meta a:hover {
    color: #d32f2f;
}

/* Kategoriler Widget Stilleri */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list li a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.category-count {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .chat-login-modern {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .chat-login-modern .chat-title {
        font-size: 20px;
    }
    
    .chat-login-modern .chat-logo {
        width: 50px;
        height: 50px;
    }
    
    .chat-login-modern .chat-logo i {
        font-size: 20px;
    }
    
    .chat-login-modern .btn-chat {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .homepage-chat-form .chat-login-modern {
        margin: 20px 10px;
    }
}

@media (max-width: 480px) {
    .chat-login-modern {
        padding: 20px 15px;
    }
    
    .chat-login-modern .chat-title {
        font-size: 18px;
    }
    
    .chat-login-modern .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .chat-login-modern .btn-chat {
        padding: 10px 12px;
        font-size: 13px;
    }
}