/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    z-index: 10000;
    border-top: 3px solid #ffd700;
    display: none;
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    color: #ffd700;
    margin-bottom: 10px;
}

.cookie-consent-text p {
    font-size: 0.95em;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-consent-text a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.cookie-btn-accept {
    background: #ffd700;
    color: #333;
}

.cookie-btn-accept:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.cookie-btn-settings:hover {
    background: rgba(255, 215, 0, 0.1);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}