/* CSS Değişkenleri - Renk Paleti */
:root {
    --primary-color: #4a0857;
    --secondary-color: #6a1b9a;
    --accent-color: #ff7300;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    /* Radyo Tema Renk Paleti */
    --primary: #4C1D95;
    --secondary: #7C3AED;
    --accent: #FF7F50;
    --background: #F8FAFC;
    --cards: #FFFFFF;
    --gradient-start: #FF8C42;
    --gradient-end: #6B46C1;
}

/* Şarkı İsteği Modal - Üst Giriş Yap Butonu */
.login-section-top {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c00 100%);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(255, 115, 0, 0.2);
    border: 2px solid var(--accent-color);
}

.login-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    flex: 1;
}

.login-notice i {
    font-size: 18px;
    color: var(--white);
}

.login-notice span {
    font-size: 14px;
    font-weight: 500;
}

.login-notice strong {
    font-weight: 700;
    text-decoration: underline;
}

.btn-login-top {
    background: var(--white);
    color: var(--accent-color);
    border: 2px solid var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-login-top:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 115, 0, 0.3);
}

.btn-login-top i {
    font-size: 16px;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .login-section-top {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 12px;
    }
    
    .login-notice {
        justify-content: center;
    }
    
    .btn-login-top {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .login-section-top {
        padding: 12px 15px;
        margin: 15px 0;
    }
    
    .login-notice span {
        font-size: 13px;
    }
    
    .btn-login-top {
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* Şarkı İsteği Modal CSS */
#sarkiIstegiModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 8, 87, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#sarkiIstegiModal.show {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

#sarkiIstegiModal .modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(74, 8, 87, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    border: 2px solid var(--primary-color);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Header */
.modal .modal-header {
    padding: 20px 25px 15px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 13px 13px 0 0;
}

.modal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal .modal-title i {
    color: var(--accent-color);
    font-size: 22px;
}

/* Modal Close Button */
.modal .close,
.modal .btn-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
    z-index: 1000;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal .close:hover,
.modal .btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: scale(1.1);
}

/* Modal Body */
.modal .modal-body {
    padding: 25px;
    background: var(--white);
}

/* Form Elements */
.modal .form-group {
    margin-bottom: 20px;
}

.modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.modal .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: var(--white);
    color: #1f2937;
    -webkit-text-fill-color: #1f2937; /* Safari görünürlüğü */
    line-height: 1.4;
    min-height: 42px;
}

.modal .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.1);
}

/* Select görünürlüğü ve seçenek renkleri */
.modal select.form-control,
.modal select {
    background-color: var(--white) !important;
    color: #1f2937 !important; /* daha koyu gri */
    -webkit-text-fill-color: #1f2937 !important; /* Safari/Chrome */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0;
    text-shadow: none;
    background-image: none !important;
    font-weight: 500;
    line-height: 1.4 !important;
    min-height: 42px;
    padding: 10px 14px !important;
    font-size: 14px !important;
    overflow: visible;
}
.modal select.form-control option,
.modal select option {
    background: #ffffff !important;
    color: #111827 !important;
    padding: 8px 12px !important;
    line-height: 1.6 !important;
}
.modal select.form-control:focus,
.modal select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.1);
}

/* Input Groups */
.modal .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.modal .input-group-prepend {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.modal .input-group-text {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 16px;
    padding: 0;
}

#registerModal .form-control,
#djApplyModal .form-control,
#loginModal .form-control {
    padding-left: 56px !important; /* ikonla çakışmayı önle */
}
.modal .input-group-text { color: var(--accent-color); font-size: 16px; }

/* Modal input ikon hizaları (Üye Ol + DJ Ol) */
#registerModal .input-group-prepend,
#djApplyModal .input-group-prepend,
#loginModal .input-group-prepend{
    left:14px;
    width:26px;height:26px;
    display:flex;align-items:center;justify-content:center;
}
#registerModal .input-group-prepend i,
#djApplyModal .input-group-prepend i,
#loginModal .input-group-prepend i{font-size:16px;line-height:1;color:var(--accent-color)}

/* Textarea da ikon hizası */
#djApplyModal textarea.form-control,
#registerModal textarea.form-control{padding-left:56px !important}

/* Buttons */
.modal .btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.modal .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c00 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 115, 0, 0.3);
}

.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 115, 0, 0.4);
}

.modal .btn-secondary {
    background: var(--gray-600);
    color: var(--white);
}

.modal .btn-secondary:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
}

/* Üyelik Modal */
#membershipModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 8, 87, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#membershipModal.show {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

#membershipModal .modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(74, 8, 87, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    border: 2px solid var(--primary-color);
}

/* Giriş Modal */
#loginModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 8, 87, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#loginModal.show {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

#loginModal .modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(74, 8, 87, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    border: 2px solid var(--primary-color);
}

/* Login başlık görünürlüğü (mor şeritte metin) */
#loginModal h2, #loginModal h3, #loginModal .modal-title { color:#fff !important; }

/* DJ Başvuru Modal */
#djApplyModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 8, 87, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#djApplyModal.show {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

#djApplyModal .modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(74, 8, 87, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    border: 2px solid var(--primary-color);
}

#djApplyModal .modal-header {
    padding: 20px 25px 15px;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 13px 13px 0 0;
}

#djApplyModal h2 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

#djApplyModal .modal-subtitle {
    color: var(--white);
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

#djApplyModal .form-group {
    margin-bottom: 20px;
}

#djApplyModal .form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

#djApplyModal .form-group label i {
    color: var(--accent-color);
    font-size: 16px;
    width: 20px;
}

#djApplyModal .form-group input,
#djApplyModal .form-group select,
#djApplyModal .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    color: var(--gray-800);
    font-size: 14px;
    transition: all 0.3s ease;
}

#djApplyModal .form-group input::placeholder,
#djApplyModal .form-group textarea::placeholder {
    color: var(--gray-500);
}

#djApplyModal .form-group input:focus,
#djApplyModal .form-group select:focus,
#djApplyModal .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.1);
}

#djApplyModal select option {
    background: var(--white);
    color: var(--gray-800);
    padding: 10px;
}

#djApplyModal select option:first-child {
    color: var(--gray-500);
    font-style: italic;
}

#djApplyModal .form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

#djApplyModal .submit-btn,
#djApplyModal .cancel-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#djApplyModal .submit-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c00 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 115, 0, 0.3);
}

#djApplyModal .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 115, 0, 0.4);
}

#djApplyModal .cancel-btn {
    background: var(--gray-600);
    color: var(--white);
}

#djApplyModal .cancel-btn:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
}

/* DJ Başvuru Modal Animasyonları */
@keyframes djModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#djApplyModal .modal-content {
    animation: djModalSlideIn 0.4s ease-out;
}

/* DJ Başvuru Form Animasyonları */
#djApplyModal .form-group {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

#djApplyModal .form-group:nth-child(1) { animation-delay: 0.1s; }
#djApplyModal .form-group:nth-child(2) { animation-delay: 0.2s; }
#djApplyModal .form-group:nth-child(3) { animation-delay: 0.3s; }
#djApplyModal .form-group:nth-child(4) { animation-delay: 0.4s; }
#djApplyModal .form-group:nth-child(5) { animation-delay: 0.5s; }
#djApplyModal .form-group:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DJ Başvuru Responsive */
@media (max-width: 768px) {
    #djApplyModal .modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
        padding: 20px;
    }
    
    #djApplyModal h2 {
        font-size: 24px;
    }
    
    #djApplyModal .modal-subtitle {
        font-size: 14px;
    }
    
    #djApplyModal .form-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* DJ Başvuru Başarı Animasyonu */
@keyframes successPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 8, 87, 0.5);
    z-index: 9998;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modal .modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .modal .modal-header {
        padding: 15px 20px 10px;
    }
    
    .modal .modal-body {
        padding: 20px;
    }
    
    .modal .modal-title {
        font-size: 18px;
    }
    
    .modal .form-control {
        font-size: 16px; /* iOS zoom önleme */
        padding: 12px 15px 12px 40px;
    }
    
    .modal .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modal .modal-content {
        margin: 5px;
        max-height: calc(100vh - 10px);
        border-radius: 10px;
    }
    
    .modal .modal-header {
        padding: 12px 15px 8px;
    }
    
    .modal .modal-body {
        padding: 15px;
    }
    
    .modal .modal-title {
        font-size: 16px;
    }
    
    .modal .close,
    .modal .btn-close {
        top: 10px;
        right: 15px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
}

/* Menüdeki Şarkı İsteği Linki */
.song-request-menu-item {
    margin-left: 15px;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
}

/* Ana menü görünürlüğü */
.header-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.header-menu ul {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 20px !important;
    align-items: center !important;
}

.header-menu li {
    display: inline-block !important;
    margin: 0 !important;
}

/* WordPress'ten gelen menü öğeleri için genel stil */
.header-menu a {
    color: white !important;
    text-decoration: none !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.9rem !important;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    font-weight: 600;
}

.header-menu a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
    color: white !important;
    text-decoration: none;
}

/* WordPress menü öğeleri için özel renkler */
.header-menu .menu-item:nth-child(1) a {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.header-menu .menu-item:nth-child(1) a:hover {
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.header-menu .menu-item:nth-child(2) a {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.header-menu .menu-item:nth-child(2) a:hover {
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.header-menu .menu-item:nth-child(3) a {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.header-menu .menu-item:nth-child(3) a:hover {
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.header-menu .menu-item:nth-child(4) a {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.header-menu .menu-item:nth-child(4) a:hover {
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.header-menu .menu-item:nth-child(5) a {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.header-menu .menu-item:nth-child(5) a:hover {
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
}

/* Ana tema menü çakışmalarını önlemek için */
.header-menu .song-request-menu-item,
nav .song-request-menu-item,
ul .song-request-menu-item {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
}

/* Mobil menü için */
@media (max-width: 768px) {
    .song-request-menu-item,
    .header-menu .song-request-menu-item,
    nav .song-request-menu-item,
    ul .song-request-menu-item {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1000 !important;
    }
}

.song-request-menu-item a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.song-request-menu-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white !important;
    text-decoration: none;
}

.song-request-menu-item a i {
    font-size: 14px;
}

/* Mobil menüde şarkı isteği */
@media (max-width: 768px) {
    /* Mobil menü container'ı */
    .header-menu {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 15px !important;
    }
    
    .header-menu ul {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    /* Tüm menü öğeleri için mobil stil */
    .header-menu .menu-item,
    .song-request-menu-item,
    .login-menu-item,
    .membership-menu-item,
    .dj-apply-menu-item {
        margin: 0 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .header-menu .menu-item a,
    .song-request-menu-item a,
    .login-menu-item a,
    .membership-menu-item a,
    .dj-apply-menu-item a {
        justify-content: center !important;
        width: 100% !important;
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
        border-radius: 15px !important;
        margin: 0 !important;
    }
    
    /* Mobilde menü öğeleri arası boşluk */
    .header-menu li {
        margin-bottom: 5px !important;
    }
    
    .header-menu li:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Mobilde menü öğelerinin sırasını düzenle */
    .header-menu .menu-item:nth-child(1) {
        order: 1;
    }
    
    .header-menu .menu-item:nth-child(2) {
        order: 2;
    }
    
    .header-menu .menu-item:nth-child(3) {
        order: 3;
    }
    
    .song-request-menu-item {
        order: 4;
    }
    
    .login-menu-item {
        order: 5;
    }
    
    .membership-menu-item {
        order: 6;
    }
    
    .dj-apply-menu-item {
        order: 7;
    }
    
    .dj-status-menu-item {
        order: 8;
    }
    
    /* Mobilde menü container'ı flexbox yap */
    .header-menu ul {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Mobilde kapat butonu */
    .mobile-menu-close {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
        color: white !important;
        border: none !important;
        padding: 12px 20px !important;
        border-radius: 25px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        display: none !important;
        align-items: center !important;
        gap: 8px !important;
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4) !important;
        z-index: 1001 !important;
    }
    
    /* Mobil menü açıkken kapat butonunu göster */
    .header-menu.show + .mobile-menu-close,
    .header-menu.show .mobile-menu-close {
        display: flex !important;
    }
    
    .mobile-menu-close:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.6) !important;
        color: white !important;
        text-decoration: none !important;
    }
    
    .mobile-menu-close i {
        font-size: 16px !important;
    }
}

/* Menüdeki Giriş Yap Linki */
.login-menu-item {
    margin-left: 15px;
}

.login-menu-item a {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.login-menu-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    color: white !important;
    text-decoration: none;
}

.login-menu-item a i {
    font-size: 12px;
}

/* Mobil menüde giriş yap - Artık yukarıdaki genel mobil stil kullanılıyor */

/* Menüdeki Üyelik Linki */
.membership-menu-item {
    margin-left: 15px;
}

.membership-menu-item a {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.membership-menu-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white !important;
    text-decoration: none;
}

.membership-menu-item a i {
    font-size: 14px;
}

/* Mobil menüde üyelik - Artık yukarıdaki genel mobil stil kullanılıyor */

/* Menüdeki Admin Panel Linki */
.admin-panel-menu-item {
    margin-left: 15px;
}

.admin-panel-menu-item a {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.admin-panel-menu-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    color: white !important;
    text-decoration: none;
}

.admin-panel-menu-item a i {
    font-size: 14px;
}

/* Mobil menüde admin panel - Artık yukarıdaki genel mobil stil kullanılıyor */

/* Menüdeki DJ Sistemi Linki */
.dj-system-menu-item {
    margin-left: 15px;
}

.dj-system-menu-item a {
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.dj-system-menu-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
    color: white !important;
    text-decoration: none;
}

.dj-system-menu-item a i {
    font-size: 14px;
}

/* DJ Başvuru Menü Linki */
.dj-apply-menu-item {
    margin-left: 15px;
}

.dj-apply-menu-item a {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.dj-apply-menu-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white !important;
    text-decoration: none;
}

.dj-apply-menu-item a i {
    font-size: 14px;
}

.dj-status-menu-item {
    margin-left: 10px;
}

.dj-status-menu-item a {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(23, 162, 184, 0.3);
}

.dj-status-menu-item a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
    color: white;
    text-decoration: none;
}

.dj-status-menu-item a i {
    margin-right: 8px;
    color: white;
}

/* Mobil menüde DJ sistemi - Artık yukarıdaki genel mobil stil kullanılıyor */

/* DJ Başvuru Modal CSS */
#dj-apply-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

#dj-apply-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

#dj-apply-modal .modal-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#dj-apply-modal .modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#dj-apply-modal .modal-title {
    color: white;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

#dj-apply-modal .modal-title i {
    font-size: 20px;
}

#dj-apply-modal .btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

#dj-apply-modal .btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#dj-apply-modal .modal-body {
    padding: 30px;
}

#dj-apply-modal .form-field {
    margin-bottom: 25px;
}

#dj-apply-modal .form-field label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

#dj-apply-modal .form-field label i {
    margin-right: 8px;
    color: #ff6b35;
}

#dj-apply-modal .form-field input,
#dj-apply-modal .form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    box-sizing: border-box;
}

#dj-apply-modal .form-field input:focus,
#dj-apply-modal .form-field textarea:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    outline: none;
}

#dj-apply-modal .form-field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

#dj-apply-modal .form-field small {
    color: #6c757d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

#dj-apply-modal .modal-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

#dj-apply-modal .btn-cancel {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#dj-apply-modal .btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

#dj-apply-modal .btn-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

#dj-apply-modal .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

#dj-apply-modal .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive DJ Modal */
@media (max-width: 768px) {
    #dj-apply-modal .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    #dj-apply-modal .modal-header {
        padding: 15px 20px;
    }
    
    #dj-apply-modal .modal-body {
        padding: 20px;
    }
    
    #dj-apply-modal .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    #dj-apply-modal .btn-cancel,
    #dj-apply-modal .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Program Saatleri Bölümü CSS */
.home-program-schedule {
    padding: 80px 0;
    position: relative;
}

/* Gün Seçici */
.day-selector {
    margin-bottom: 40px;
}

.day-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.day-btn {
    background: white;
    border: 2px solid var(--gradient-start);
    color: var(--gradient-start);
    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, 140, 66, 0.1);
}

.day-btn:hover {
    background: var(--gradient-start);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

.day-btn.active {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border-color: var(--gradient-start);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

.day-btn i {
    font-size: 1rem;
}

/* Program Tablosu */
.schedule-table-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.schedule-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.header-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.header-cell i {
    font-size: 1.1rem;
}

/* Program Satırları */
.day-programs {
    display: none;
}

.day-programs.active {
    display: block;
}

.program-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-bottom: 10px;
}

.program-row:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.program-row:last-child {
    border-bottom: none;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #ff6b35;
}

.time-slot i {
    font-size: 1rem;
}

.dj-name {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.program-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.program-genre {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .home-program-schedule {
        padding: 40px 0;
    }
    
    .day-buttons {
        gap: 10px;
    }
    
    .day-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .schedule-table-container {
        padding: 20px;
    }
    
    .table-header,
    .program-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .header-cell,
    .time-slot,
    .dj-name,
    .program-name,
    .program-genre {
        justify-content: center;
    }
    
    .program-row {
        padding: 15px;
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
        border-radius: 10px;
    }
}

/* Canlı İstatistik Kartları CSS */
.section-title {
    margin-bottom: 30px; /* 40px'den 30px'e düşür */
}

.section-title h2 {
    color: #ffffff; /* Beyaz yazı */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Daha belirgin gölge */
}

.section-title h2 i {
    color: #ff6b35; /* Turuncu ikon */
    margin-right: 15px;
}

.section-title p {
    color: #f0f0f0; /* Açık gri */
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    margin-top: -20px; /* Yukarı taşı */
}

/* İstatistik kartları animasyonları */
.stats-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.stats-card:nth-child(1) { animation-delay: 0.1s; }
.stats-card:nth-child(2) { animation-delay: 0.2s; }
.stats-card:nth-child(3) { animation-delay: 0.3s; }
.stats-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sayı animasyonu */
.stats-item {
    animation: slideInLeft 0.5s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.stats-item:nth-child(1) { animation-delay: 0.2s; }
.stats-item:nth-child(2) { animation-delay: 0.3s; }
.stats-item:nth-child(3) { animation-delay: 0.4s; }
.stats-item:nth-child(4) { animation-delay: 0.5s; }
.stats-item:nth-child(5) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stats-card {
    background: linear-gradient(135deg, var(--cards) 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    border-left: 4px solid var(--gradient-start);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 140, 66, 0.2);
    background: linear-gradient(135deg, var(--cards) 0%, #f0f2f5 100%);
    border-left: 4px solid var(--gradient-end);
}

.stats-card h3 {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: none;
    line-height: 1.2;
}

.stats-card h3 i {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stats-item {
    color: #555;
    font-size: 0.95rem;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.stats-item:last-child {
    border-bottom: none;
}

.stats-item:hover {
    color: var(--gradient-start);
    padding-left: 8px;
    background: rgba(255, 140, 66, 0.05);
    border-radius: 8px;
    padding: 12px 8px;
    transform: translateX(5px);
}

.stats-item i {
    color: var(--gradient-start);
    font-size: 0.9rem;
    min-width: 16px;
    transition: all 0.3s ease;
}

.stats-item:hover i {
    color: var(--gradient-end);
    transform: scale(1.1);
}

.stats-cta {
    margin-top: 40px;
}

.stats-cta .details {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.stats-cta .details::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 ease;
}

.stats-cta .details:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.4);
    background: linear-gradient(135deg, var(--gradient-end) 0%, var(--gradient-start) 100%);
    color: white;
    text-decoration: none;
}

.stats-cta .details:hover::before {
    left: 100%;
}

@media (max-width: 1200px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -10px;
    }
    
    .stats-card {
        padding: 25px;
    }
    
    .stats-card h3 {
        font-size: 1.2rem;
    }
    
    .stats-item {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
}

/* Program Saatleri ile Canlı İstatistikler arasındaki boşluğu azalt */
section.home-program-schedule {
    margin-bottom: 60px; /* Varsayılan margin'i azalt */
}

section.home-about-us {
    margin-top: -20px; /* Yukarı çek */
}

/* Şarkı Oyunu Bölümü CSS */
.home-song-game {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}
.home-song-game::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"><text y="50%" x="50%" text-anchor="middle" dy=".35em" font-size="20" fill="rgba(255,255,255,0.05)">♪</text></svg>');
    background-size: 50px 50px;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Oyun Açıklaması CSS */
.game-explanation {
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}
.explanation-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.explanation-box h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.explanation-box p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.example-question {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}
.example-question strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.example-text {
    font-size: 1.2rem;
    font-style: italic;
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}
.answer {
    color: #ffeb3b;
    font-weight: bold;
    font-size: 1.1rem;
}
.game-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.tip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}
.tip i {
    color: #ff6b35;
    font-size: 1.2rem;
}
.tip span {
    color: #333;
    font-weight: 500;
}

/* Mevcut oyun kartları CSS'ini güncelle */
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    position: relative;
    z-index: 5;
}
.game-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 5;
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}
.game-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.game-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}
.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    z-index: 10;
}
.game-btn:hover {
    background: white;
    color: var(--gradient-start);
    border-color: var(--gradient-start);
    transform: translateY(-2px);
}
.game-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}
.feature-item i {
    color: #ffeb3b;
    font-size: 1.2rem;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .home-song-game .section-title {
        font-size: 2rem;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-features {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    .game-tips {
        grid-template-columns: 1fr;
    }
    .explanation-box {
        padding: 20px;
        margin: 0 15px;
    }
    .example-question {
        padding: 15px;
    }
}

/* Şarkı Oyunu Modal CSS */
.game-modal {
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

/* Snackbar prompt (modern toast) */
.snackbar-prompt {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 140, 66, 0.12);
    border: 1px solid rgba(255, 140, 66, 0.35);
    color: #1f2937;
    margin-bottom: 10px;
}
.snackbar-prompt.show { display: flex; animation: fadeIn .2s ease-out; }
.snackbar-text { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.snackbar-actions { display: flex; align-items: center; gap: 8px; }
.snackbar-btn {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 600;
}
.snackbar-btn.primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8c00 100%);
    color: #fff;
    border: none;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6b35;
}

.game-header h2 {
    color: #ff6b35;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-stats {
    display: flex;
    gap: 15px;
}

.stat {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stat.timer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.guest-warning {
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guest-warning i {
    font-size: 1.5rem;
}

.register-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
}

.song-display {
    margin: 20px 0;
}

.song-lyrics {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
}

.song-lyrics i {
    font-size: 1.5rem;
    opacity: 0.7;
    margin: 0 10px;
}

.answer-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.answer-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.answer-form input:focus {
    border-color: #ff6b35;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.game-result {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid #ddd;
}

.result-icon i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.result-text h3 {
    color: #333;
    margin: 10px 0;
}

.result-text p {
    color: #666;
    margin: 0;
}

.game-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.new-song-btn, .leaderboard-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    background: white;
    color: #ff6b35;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.new-song-btn:hover, .leaderboard-btn:hover {
    background: #ff6b35;
    color: white;
}

/* Sıralama Modal CSS */
.leaderboard-container {
    margin-top: 20px;
}

.leaderboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ff6b35;
    background: white;
    color: #ff6b35;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: #ff6b35;
    color: white;
}

.leaderboard-list {
    max-height: 400px;
    overflow-y: auto;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.leaderboard-item:hover {
    background-color: #f9f9f9;
}

.rank {
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 40px;
}

.player {
    flex: 1;
    font-weight: 600;
    color: #333;
}

.score {
    color: #ff6b35;
    font-weight: 600;
}

.loading, .no-data {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

/* Modal genel stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

/* Üyelik modalı giriş bölümü - Şarkı İste stiliyle uyum */
#registerModal .membership-intro {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 15px 18px;
    border-radius: 12px;
    color: #fff;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.25);
}
#registerModal .membership-intro-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
#registerModal .membership-intro-header i { color: #ffeb3b; }
#registerModal .membership-benefits { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
#registerModal .membership-benefits li { font-size: 0.95rem; display: flex; align-items: center; gap: 10px; opacity: 0.95; line-height:1.5; }
#registerModal .membership-benefits li i { color: #ffeb3b; }

/* Üye Ol buton hizalama düzeltmesi */
#registerModal .form-actions { display:flex; gap:15px; margin-top:10px; }
#registerModal .form-actions .submit-btn, 
#registerModal .form-actions .cancel-btn { flex:1; }
#registerModal .form-actions .cancel-btn { background:#6b7280; color:#fff; }
#registerModal .form-actions .cancel-btn:hover { background:#4b5563; }

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #ff6b35;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .game-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .answer-form {
        flex-direction: column;
    }
    
    .game-footer {
        flex-direction: column;
    }
    
    .leaderboard-tabs {
        flex-direction: column;
    }
}

/* Oyun İpucu Stilleri */
.game-hint {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.game-hint i {
    margin-right: 8px;
    color: #fff;
}

.game-hint span {
    font-weight: 600;
}

/* DJ Status Modal CSS */
#djStatusModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

#djStatusModal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

#djStatusModal .modal-content {
    background: white;
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

#djStatusModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

#djStatusModal h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#djStatusModal .modal-subtitle {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

#djStatusModal .form-group {
    margin: 20px 25px;
    position: relative;
}

#djStatusModal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
}

#djStatusModal .form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
    width: 16px;
}

#djStatusModal .form-group input,
#djStatusModal .form-group select,
#djStatusModal .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

#djStatusModal .form-group input::placeholder,
#djStatusModal .form-group textarea::placeholder {
    color: var(--gray-500);
    font-style: italic;
}

#djStatusModal .form-group input:focus,
#djStatusModal .form-group select:focus,
#djStatusModal .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#djStatusModal .form-actions {
    display: flex;
    gap: 15px;
    margin: 25px;
    justify-content: center;
}

#djStatusModal .submit-btn,
#djStatusModal .cancel-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 150px;
}

#djStatusModal .submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

#djStatusModal .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

#djStatusModal .cancel-btn {
    background: var(--gray-200);
    color: var(--gray-700);
}

#djStatusModal .cancel-btn:hover {
    background: var(--gray-300);
    transform: translateY(-1px);
}

/* DJ Status Modal İçerik Stilleri */
#djStatusModal .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 25px;
}

#djStatusModal .col-md-6 {
    flex: 1;
    min-width: 250px;
}

#djStatusModal .badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

#djStatusModal .alert {
    padding: 15px;
    border-radius: 8px;
    margin: 15px 25px;
    border: none;
}

#djStatusModal .alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

#djStatusModal .alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

#djStatusModal .alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

#djStatusModal .alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

#djStatusModal .btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 5px;
}

#djStatusModal .btn-success {
    background: #28a745;
    color: white;
}

#djStatusModal .btn-outline-secondary {
    background: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

#djStatusModal .btn-outline-primary {
    background: transparent;
    color: #007bff;
    border: 1px solid #007bff;
}

#djStatusModal .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#djStatusModal .text-center {
    text-align: center;
}

#djStatusModal .mb-4 {
    margin-bottom: 1.5rem;
}

#djStatusModal .mb-3 {
    margin-bottom: 1rem;
}

#djStatusModal .mt-3 {
    margin-top: 1rem;
}

#djStatusModal .mt-4 {
    margin-top: 1.5rem;
}

#djStatusModal .fa-3x {
    font-size: 3rem;
}

#djStatusModal .text-primary {
    color: var(--primary-color);
}

#djStatusModal .text-muted {
    color: var(--gray-500);
}

#djStatusModal .text-center {
    text-align: center;
}

#djStatusModal .text-center i {
    margin-right: 8px;
}

#djStatusModal .text-center p {
    margin: 10px 0;
    color: var(--gray-600);
}

#djStatusModal .text-center h5 {
    margin: 15px 0;
    color: var(--gray-800);
    font-weight: 600;
}

#djStatusModal .text-center h6 {
    margin: 10px 0 5px 0;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
}

#djStatusModal .text-center p strong {
    color: var(--gray-800);
    font-weight: 600;
}

#djStatusModal .text-center p {
    margin: 5px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* Başlık şerit geçici eklentileri temizlendi */

/* -------------------------------------------------- */
/* Menü Modalları (Giriş / Üyelik / DJ Başvuru) Fix   */
/* sarki-istegi.css sonundaki genel .modal/.modal-content
   kurallarının menü modallarını bozmasını engeller.     */
/* -------------------------------------------------- */

#loginModal.modal,
#registerModal.modal,
#djApplyModal.modal {
  display: none;              /* Kapalı başlangıç */
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(74, 8, 87, 0.8); /* mevcut modal arkaplanına uyum */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#loginModal.modal.open,
#registerModal.modal.open,
#djApplyModal.modal.open {
  display: flex !important;   /* Açıkken göster */
}

#loginModal .modal-content,
#registerModal .modal-content,
#djApplyModal .modal-content {
  margin: 0;                  /* Genel .modal-content margin override etmesin */
  width: 90%;
  border-radius: 15px;
  position: relative;
}

#loginModal .modal-content  { max-width: 400px; }
#registerModal .modal-content { max-width: 450px; }
#djApplyModal .modal-content { max-width: 600px; }
