/* --- Modern Cookie Banner by Gemini --- */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

:root {
    --primary-color: #ffa500; /* Your brand's orange */
    --primary-hover-color: #ff8c00; /* Darker orange for hover */
    --dark-bg: #1e1e1e;
    --card-bg: #2a2a2a;
    --text-light: #f0f0f0;
    --text-secondary: #a0a0a0;
}

.cookie-card {
    position: fixed;
    bottom: -150%; /* Start off-screen */
    left: 20px;
    max-width: 380px;
    background-color: var(--card-bg);
    color: var(--text-light);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    z-index: 9998;
    transition: bottom 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-card.show {
    bottom: 20px;
}

.cookie-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.cookie-content p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: var(--primary-hover-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    width: 100%;
}

.cookie-actions button {
    flex-grow: 1;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-btn-accept {
    background-color: var(--primary-color);
    color: #1e1e1e;
}

.cookie-btn-accept:hover {
    background-color: var(--primary-hover-color);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: #404040;
    color: var(--text-light);
}

.cookie-btn-decline:hover {
    background-color: #555;
}

/* Responsive adjustments */
@media(max-width: 480px) {
    .cookie-card {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: -150%;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cookie-card.show {
        bottom: 10px;
    }
    .cookie-icon i {
        margin-top: 0;
        margin-bottom: 10px;
    }
}