/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #100752 0%, #1a0d6b 100%);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid #DA55F4;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-content {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.cookie-consent-content a {
    color: #DA55F4;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-content a:hover {
    color: #ff6bff;
    text-decoration: none;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-consent-btn-accept {
    background: linear-gradient(135deg, #DA55F4 0%, #ff6bff 100%);
    color: #ffffff;
}

.cookie-consent-btn-accept:hover {
    background: linear-gradient(135deg, #ff6bff 0%, #DA55F4 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 85, 244, 0.4);
}

.cookie-consent-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-consent-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #DA55F4;
    color: #DA55F4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-consent-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-content {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-content p {
        font-size: 13px;
    }
    
    .cookie-consent-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

