/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-banner-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.cookie-banner-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.cookie-banner-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-banner-text a {
    color: #4a9eff;
    text-decoration: underline;
    transition: color 0.2s;
}

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

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

.cookie-banner-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
}

.cookie-banner-btn-accept {
    background: #4a9eff;
    color: #ffffff;
}

.cookie-banner-btn-accept:hover {
    background: #3a8eef;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 158, 255, 0.3);
}

.cookie-banner-btn-settings {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #4a4a4a;
}

.cookie-banner-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #6a6a6a;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .cookie-banner {
        padding: 1rem 0.75rem;
    }
    
    .cookie-banner-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-banner-btn {
        flex: 1;
        text-align: center;
    }
    
    .cookie-banner-icon {
        font-size: 1.25rem;
    }
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-banner.show {
    animation: fadeIn 0.3s ease-in-out forwards;
}

/* Dark overlay for settings modal (optional) */
.cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-settings-overlay.show {
    display: flex;
}

.cookie-settings-modal {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cookie-settings-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-settings-close {
    float: right;
    font-size: 1.5rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
}

.cookie-settings-close:hover {
    color: #333;
}