/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px clamp(16px, 5vw, 80px);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-consent-banner.visible {
    display: block;
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-consent-text {
    color: #e8e8f0;
    font-size: 14px;
    line-height: 1.7;
}

.cookie-consent-text a {
    color: #64b5f6;
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Baloo Tamma 2', cursive;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    flex: 1;
    min-width: 140px;
}

.cookie-consent-btn.primary {
    background: linear-gradient(135deg, #64b5f6, #42a5f5);
    color: white;
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.25);
}

.cookie-consent-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(100, 181, 246, 0.4);
}

.cookie-consent-btn.secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #8890a8;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.cookie-consent-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e8e8f0;
}

.cookie-consent-settings {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
    display: none;
}

.cookie-consent-settings.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-consent-category {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cookie-consent-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-consent-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-consent-category-name {
    color: #e8e8f0;
    font-size: 13px;
    font-weight: 600;
}

.cookie-consent-category-required {
    color: #8890a8;
    font-size: 11px;
}

.cookie-consent-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    display: inline-block;
}

.cookie-consent-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-consent-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-consent-toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    bottom: 3px;
    background: #8890a8;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-slider {
    background: rgba(100, 181, 246, 0.4);
}

.cookie-consent-toggle input:checked + .cookie-consent-toggle-slider::before {
    transform: translateX(18px);
    background: #64b5f6;
}

.cookie-consent-toggle input:disabled + .cookie-consent-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-consent-category-description {
    color: #8890a8;
    font-size: 12px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        min-width: auto;
    }
}

/* AdSense script blocker */
.adsbygoogle {
    display: none !important;
}

body.cookie-consent-accepted .adsbygoogle {
    display: block !important;
}