/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #444444;
    padding: 20px;
    z-index: 10000;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    color: #cccccc;
    margin: 0 0 10px 0;
    line-height: 1.4;
    font-size: 14px;
}

.cookie-consent-links {
    display: flex;
    gap: 15px;
}

.cookie-consent-links a {
    color: #4ecdc4;
    text-decoration: none;
    font-size: 12px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-consent-links a:hover {
    border-bottom-color: #4ecdc4;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-btn.accept {
    background: #4ecdc4;
    color: #1a1a1a;
}

.cookie-btn.accept:hover {
    background: #44b3a8;
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: transparent;
    color: #cccccc;
    border: 1px solid #666666;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #888888;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-text p {
        font-size: 13px;
    }
    
    .cookie-consent-links {
        justify-content: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 120px;
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        max-width: none;
    }
}