/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1b3a 0%, #0f1123 100%);
    border-top: 2px solid rgba(125, 211, 192, 0.3);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.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: 2rem;
}

.cookie-banner-text {
    flex: 1;
    color: #b8bcc8;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: #7dd3c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-btn-accept {
    background: linear-gradient(135deg, #7dd3c0 0%, #ff6b7a 100%);
    color: #1a1b3a;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(125, 211, 192, 0.3);
}

.cookie-btn-decline {
    background: rgba(184, 188, 200, 0.1);
    color: #b8bcc8;
    border: 1px solid rgba(184, 188, 200, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(184, 188, 200, 0.2);
    color: #ffffff;
}

.cookie-btn-settings {
    background: rgba(125, 211, 192, 0.1);
    color: #7dd3c0;
    border: 1px solid rgba(125, 211, 192, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(125, 211, 192, 0.2);
    border-color: #7dd3c0;
}

/* Cookie Customization Panel */
.cookie-customization {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(125, 211, 192, 0.2);
}

.cookie-customization h3 {
    color: #7dd3c0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-category {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(26, 27, 58, 0.3);
    border-radius: 6px;
    border-left: 3px solid rgba(125, 211, 192, 0.3);
}

.cookie-category label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    color: #b8bcc8;
}

.cookie-category label span {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: #7dd3c0;
}

.cookie-category p {
    font-size: 0.85rem;
    margin: 0;
    color: #b8bcc8;
    line-height: 1.3;
}

.cookie-customization-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-customization-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
}