/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid #ff1493;
    padding: 20px;
    z-index: 3000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #00ffff;
    text-decoration: none;
}

.cookie-banner-text a:hover {
    color: #ff1493;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(45deg, #ff1493, #00ffff);
    color: #000;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: #b0b0b0;
    border: 1px solid #555;
}

.cookie-btn-reject:hover {
    background: #333;
    color: #ffffff;
    border-color: #777;
}

.cookie-btn-customize {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #ff1493;
}

.cookie-btn-customize:hover {
    background: #ff1493;
    color: #000;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.cookie-settings-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.cookie-settings-close:hover {
    color: #ff1493;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #444;
}

.cookie-category h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-toggle label {
    color: #e0e0e0;
    font-weight: 600;
    cursor: pointer;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: #444;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: #ff1493;
}

.toggle-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(26px);
}

.cookie-settings-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.cookie-settings-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-settings-save {
    background: linear-gradient(45deg, #ff1493, #00ffff);
    color: #000;
}

.cookie-settings-save:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-text {
        font-size: 13px;
    }
    
    .cookie-banner-buttons {
        gap: 10px;
    }
    
    .cookie-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}