/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.cookie-consent-text p {
    margin: 0 0 10px 0;
}

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

.cookie-consent-text a:hover {
    color: #6bb4ff;
}

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

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-consent-btn.accept {
    background-color: #4CAF50;
    color: white;
}

.cookie-consent-btn.accept:hover {
    background-color: #45a049;
}

.cookie-consent-btn.decline {
    background-color: #666;
    color: white;
}

.cookie-consent-btn.decline:hover {
    background-color: #555;
}

.cookie-consent-btn.settings {
    background-color: transparent;
    color: #4a9eff;
    border: 1px solid #4a9eff;
}

.cookie-consent-btn.settings:hover {
    background-color: rgba(74, 158, 255, 0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        flex: 1;
        min-width: 100px;
    }
}
