/* ============================================
   HEADER STYLES - Premium Kontrollü
   ============================================ */

/* ========== HEADER ========== */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 15px;
    box-sizing: border-box;
}

/* ========== LOGO ========== */
.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-link i {
    font-size: 24px;
}

.logo-text {
    font-size: 22px;
}

/* ========== NAVIGASYON ========== */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.nav-link.active {
    background: rgba(255,255,255,0.25);
    color: white;
    font-weight: 600;
}

/* ========== PREMIUM NAV LINK ========== */
.nav-link-premium {
    background: linear-gradient(135deg, #ffd700, #ffb347) !important;
    color: #2c2c2c !important;
}

.nav-link-premium:hover {
    background: linear-gradient(135deg, #ffe44d, #ffc456) !important;
    color: #2c2c2c !important;
}

.nav-link-premium i {
    color: #2c2c2c !important;
}

.nav-link-premium.active {
    background: linear-gradient(135deg, #ffd700, #ffb347) !important;
    color: #2c2c2c !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* ========== ROZETLER ========== */
.badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    padding: 2px;
    border: 2px solid white;
}

/* ========== MOBİL MENÜ ========== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.mobile-menu-toggle .bar {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== REKLAM ALANI ========== */
.ad-banner-top {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
    margin-bottom: 20px;
    width: 100%;
}

.ad-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    box-sizing: border-box;
}

.ad-label {
    position: absolute;
    top: -8px;
    right: 20px;
    background: #6c757d;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 500;
}

.ad-placeholder {
    min-height: 80px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
    color: #6c757d;
}

/* ========== PREMIUM REKLAM BANNER ========== */
.premium-banner-top {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44) !important;
    border-bottom: 2px solid #ffd700;
}

.premium-ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 40px;
}

.premium-ad-label {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #2c2c2c;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}

/* ========== ANA İÇERİK ========== */
.main-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 12px;
    min-height: calc(100vh - 200px);
    box-sizing: border-box;
}

/* ========== ALERT ========== */
.alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== CANLI BİLDİRİMLER ========== */
.live-notifications {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    width: 100%;
}

/* ============================================================
   KULLANICI DROPDOWN
   ============================================================ */

.user-dropdown {
    position: relative;
    margin-left: 15px;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-dropdown-btn:hover {
    background: rgba(255,255,255,0.25);
}

.dropdown-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.user-name-short {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-icon {
    color: white;
    font-size: 12px;
    transition: transform 0.2s;
}

.user-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px 12px 0 0;
    color: white;
}

.dropdown-header-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.dropdown-username {
    font-weight: 600;
    font-size: 16px;
}

.dropdown-role {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 3px;
}

.premium-badge {
    background: #ffd700;
    color: #333;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item i {
    width: 20px;
    color: #667eea;
}

.dropdown-badge {
    background: #e74c3c;
    color: white;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 10px;
    margin-left: auto;
}

.logout-item {
    color: #e74c3c;
}

.logout-item i {
    color: #e74c3c;
}

/* ========== GUEST BUTTONS ========== */
.guest-buttons {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.btn-login-header {
    padding: 8px 18px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-login-header:hover {
    background: rgba(255,255,255,0.3);
}

.btn-register-header {
    padding: 8px 18px;
    background: white;
    color: #667eea;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-register-header:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .header-nav {
        display: flex !important;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .header-container {
        padding: 0 15px;
    }
    
    .nav-link span {
        display: none;
    }
    
    .nav-link {
        padding: 8px 12px;
    }
    
    .nav-link i {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 12px;
        height: 55px;
    }
    
    .main-container {
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        cursor: pointer;
        z-index: 1002;
    }
    
    .user-dropdown {
        display: block !important;
    }
    
    .user-dropdown-btn {
        background: rgba(255,255,255,0.2);
        padding: 5px 10px;
    }
    
    .user-name-short {
        display: none;
    }
    
    .dropdown-icon {
        display: none;
    }
    
    .header-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease-in-out !important;
        z-index: 1001 !important;
        margin: 0 !important;
        padding: 80px 20px 20px !important;
        overflow-y: auto !important;
        display: block !important;
    }
    
    .header-nav.active {
        transform: translateX(0) !important;
    }
    
    .nav-list {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .nav-item {
        width: 100% !important;
    }
    
    .nav-link {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 12px !important;
    }
    
    .nav-link span {
        display: inline !important;
        margin-left: 10px !important;
    }
    
    .nav-link-premium {
        background: linear-gradient(135deg, #ffd700, #ffb347) !important;
        color: #2c2c2c !important;
    }
    
    .nav-link-premium span {
        color: #2c2c2c !important;
    }
    
    .badge {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin-left: 10px !important;
    }
    
    .ad-content {
        padding: 0 15px;
    }
    
    .guest-buttons {
        display: flex !important;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .logo-link {
        font-size: 16px;
    }
    
    .logo-link i {
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .ad-placeholder {
        min-height: 60px;
    }
    
    .main-container {
    }
    
    .dropdown-avatar {
        width: 32px;
        height: 32px;
    }
    
    .user-dropdown-menu {
        width: 260px;
        right: -10px;
    }
}
   /* ========== TEMEL STİLLER ========== */
    /* Banlı kullanıcı adı stili */
    .username-banned {
        text-decoration: line-through;
        text-decoration-thickness: 2px;
        text-decoration-color: #e74c3c;
        opacity: 0.6;
        filter: grayscale(0.2);
    }
    
    /* Premium Nav Link */
    .nav-link-premium {
        background: linear-gradient(135deg, #ffd700, #ffb347) !important;
        color: #2c2c2c !important;
    }
    
    .nav-link-premium:hover {
        background: linear-gradient(135deg, #ffe44d, #ffc456) !important;
        color: #2c2c2c !important;
    }
    
    .nav-link-premium i {
        color: #2c2c2c !important;
    }
    
    /* ========== TOAST BİLDİRİMLERİ ========== */
    .toast-notification {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
        transform: translateX(400px);
        transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .toast-notification.show {
        transform: translateX(0);
    }
    
    .toast-content {
        background: white;
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 500;
        min-width: 200px;
    }
    
    .toast-success .toast-content {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
    }
    
    .toast-error .toast-content {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: white;
    }
    
    .toast-info .toast-content {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
    }
    
    .toast-content i {
        font-size: 18px;
    }
    
    /* ========== ÇEREZ BANNER STİLLERİ ========== */
    .cookie-consent-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        color: white;
        z-index: 10001;
        box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
        animation: slideUp 0.5s ease-out;
    }
    
    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    .cookie-consent-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 30px;
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .cookie-consent-icon {
        font-size: 40px;
        color: #ffd700;
    }
    
    .cookie-consent-text {
        flex: 1;
    }
    
    .cookie-consent-text h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: white;
    }
    
    .cookie-consent-text p {
        font-size: 13px;
        opacity: 0.8;
        margin-bottom: 8px;
    }
    
    .cookie-links {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .cookie-links a {
        color: #ffd700;
        text-decoration: none;
        font-size: 12px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    
    .cookie-links a:hover {
        text-decoration: underline;
    }
    
    .cookie-consent-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
    }
    
    .cookie-accept {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
    }
    
    .cookie-accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(39,174,96,0.4);
    }
    
    .cookie-decline {
        background: rgba(255,255,255,0.2);
        color: white;
        backdrop-filter: blur(10px);
    }
    
    .cookie-decline:hover {
        background: rgba(255,255,255,0.3);
    }
    
    .cookie-settings {
        background: rgba(255,255,255,0.1);
        color: white;
        backdrop-filter: blur(10px);
    }
    
    .cookie-settings:hover {
        background: rgba(255,255,255,0.2);
    }
    
    /* Çerez Modal */
    .cookie-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10002;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .cookie-modal-content {
        background: white;
        border-radius: 20px;
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        animation: scaleIn 0.3s ease;
    }
    
    @keyframes scaleIn {
        from { transform: scale(0.9); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }
    
    .cookie-modal-header {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        gap: 12px;
        position: relative;
    }
    
    .cookie-modal-header i {
        font-size: 28px;
        color: #f39c12;
    }
    
    .cookie-modal-header h3 {
        font-size: 20px;
        color: #2c3e50;
        margin: 0;
    }
    
    .cookie-modal-close {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #999;
    }
    
    .cookie-modal-body {
        padding: 20px;
    }
    
    .cookie-option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .cookie-option:last-child {
        border-bottom: none;
    }
    
    .cookie-option-info h4 {
        font-size: 15px;
        margin-bottom: 5px;
        color: #2c3e50;
    }
    
    .cookie-option-info p {
        font-size: 12px;
        color: #888;
    }
    
    /* Toggle Switch */
    .cookie-switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
    }
    
    .cookie-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    
    .cookie-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: 0.3s;
        border-radius: 24px;
    }
    
    .cookie-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }
    
    input:checked + .cookie-slider {
        background-color: #667eea;
    }
    
    input:checked + .cookie-slider:before {
        transform: translateX(26px);
    }
    
    input:disabled + .cookie-slider {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    .cookie-modal-footer {
        padding: 20px;
        border-top: 1px solid #f0f0f0;
        display: flex;
        gap: 12px;
        justify-content: flex-end;
    }
    
    .cookie-save {
        background: #667eea;
        color: white;
    }
    
    .cookie-accept-all {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: white;
    }
    
    /* Espirili Popup Stilleri */
    .funny-popup {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 10000;
        animation: slideInRight 0.3s ease-out;
        max-width: 350px;
        width: 100%;
        cursor: pointer;
    }
    
    @keyframes slideInRight {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    
    .funny-popup-content {
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        overflow: hidden;
        transition: transform 0.2s;
    }
    
    .funny-popup-content:hover {
        transform: scale(1.02);
    }
    
    .funny-popup-header {
        padding: 12px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .funny-popup-title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 14px;
    }
    
    .funny-popup-close {
        background: none;
        border: none;
        font-size: 18px;
        cursor: pointer;
        color: #999;
        transition: color 0.2s;
    }
    
    .funny-popup-close:hover {
        color: #e74c3c;
    }
    
    .funny-popup-body {
        padding: 15px;
        display: flex;
        gap: 12px;
        align-items: center;
    }
    
    .funny-popup-avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .funny-popup-info {
        flex: 1;
    }
    
    .funny-popup-name {
        font-weight: 600;
        color: #333;
        margin-bottom: 3px;
    }
    
    .funny-popup-message {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
    }
    
    .funny-popup-time {
        font-size: 10px;
        color: #999;
        margin-top: 3px;
    }
    
    .funny-popup-footer {
        padding: 10px 15px;
        background: #f8f9fa;
        font-size: 11px;
        color: #888;
        text-align: center;
        border-top: 1px solid #f0f0f0;
    }
    
    .funny-popup.message .funny-popup-header {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
    }
    
    .funny-popup.message .funny-popup-title i {
        color: white;
    }
    
    .funny-popup.message .funny-popup-close {
        color: rgba(255,255,255,0.7);
    }
    
    .funny-popup.message .funny-popup-close:hover {
        color: white;
    }
    
    .funny-popup.notification .funny-popup-header {
        background: linear-gradient(135deg, #f39c12, #e67e22);
        color: white;
    }
    
    /* ========== GÜNLÜK GİRİŞ BONUSU TOAST ========== */
    .daily-bonus-toast {
        position: fixed;
        top: 80px;
        right: 20px;
        z-index: 10000;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        border-left: 5px solid #ffd700;
        animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        max-width: 380px;
        width: 100%;
    }
    
    .daily-bonus-content {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .daily-bonus-icon {
        font-size: 40px;
        flex-shrink: 0;
    }
    
    .daily-bonus-text {
        flex: 1;
    }
    
    .daily-bonus-text strong {
        display: block;
        font-size: 16px;
        color: #2c3e50;
    }
    
    .daily-bonus-text p {
        margin: 3px 0 0;
        font-size: 13px;
        color: #666;
    }
    
    .daily-bonus-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #999;
        padding: 0 5px;
    }
    
    .daily-bonus-close:hover {
        color: #333;
    }
    
    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
        .funny-popup {
            left: 15px;
            right: 15px;
            bottom: 15px;
            max-width: calc(100% - 30px);
        }
        
        .toast-notification {
            right: 15px;
            left: 15px;
            transform: translateY(100px);
        }
        
        .toast-notification.show {
            transform: translateY(0);
        }
        
        .toast-content {
            min-width: auto;
            width: 100%;
            justify-content: center;
        }
        
        .daily-bonus-toast {
            top: 70px;
            right: 10px;
            left: 10px;
            max-width: none;
        }
    }
    
    @media (max-width: 480px) {
        .cookie-consent-content {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
        
        .cookie-consent-buttons {
            justify-content: center;
        }
        
        .cookie-modal-footer {
            flex-direction: column;
        }
        
        .cookie-option {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
        
        .daily-bonus-content {
            flex-direction: column;
            text-align: center;
        }
    }
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Premium Reklam Banner */
.premium-banner-top {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44) !important;
    border-bottom: 1px solid #ffd700;
}

.premium-ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 40px;
}

.premium-ad-label {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #2c2c2c;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}
/* ========== GECE MODU TOGGLE BUTONU ========== */
.dark-mode-toggle-container {
    position: fixed;
    bottom: 120px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.dark-mode-toggle-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #667eea;
    color: white;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle-btn:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
}

.dark-mode-toggle-btn:active {
    transform: scale(0.95);
}

.dark-mode-tooltip {
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.dark-mode-toggle-container:hover .dark-mode-tooltip {
    opacity: 1;
}

/* Dark mode aktifken buton */
.dark-mode .dark-mode-toggle-btn {
    background: #ffd700;
    color: #1a1a2e;
}

.dark-mode .dark-mode-toggle-btn:hover {
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .dark-mode-toggle-container {
        bottom: 100px;
        right: 15px;
    }
    
    .dark-mode-toggle-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .dark-mode-toggle-container {
        bottom: 90px;
        right: 10px;
    }
    
    .dark-mode-toggle-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}