/* Cookie Banner Bottom Bar */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.cookie-banner-text {
    color: #B9BBBE;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 300;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.5);
}

.cookie-btn-decline {
    background: transparent;
    color: #B9BBBE;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
    border-color: #5865F2;
    color: #5865F2;
}

.cookie-btn-more {
    background: transparent;
    color: #5865F2;
    text-decoration: underline;
    padding: 0.6rem 1rem;
}

.cookie-btn-more:hover {
    color: #7289DA;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cookie-modal-title {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-modal-title i {
    color: #5865F2;
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    color: #B9BBBE;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: #5865F2;
}

.cookie-modal-description {
    color: #B9BBBE;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(88, 101, 242, 0.3);
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #5865F2;
}

.cookie-category input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-category-content {
    flex: 1;
}

.cookie-category-title {
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cookie-category-badge {
    background: #3BA55C;
    color: white;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 300;
}

.cookie-category-description {
    color: #72767D;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 300;
}

.cookie-modal-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-modal-btn {
    flex: 1;
    min-width: 140px;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 300;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal-btn-primary {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
}

.cookie-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.5);
}

.cookie-modal-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #5865F2;
}

/* Floating Cookie Button */
.cookie-floating-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

.cookie-floating-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.cookie-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
    }
    
    .cookie-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-modal-btn {
        width: 100%;
    }
    
    .cookie-floating-btn {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}