#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f172a);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 999998;
    border-top: 3px solid #00d1ff;
    font-family: 'Tenor Sans', sans-serif;
    display: none;
}

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

#cookie-banner-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-banner-text strong {
    color: #00d1ff;
    font-weight: bold;
}

#cookie-banner-links {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    flex-wrap: wrap;
}

#cookie-banner-links a {
    color: #00ff85;
    text-decoration: underline;
    font-size: 12px;
    transition: color 0.3s ease;
}

#cookie-banner-links a:hover {
    color: #00d1ff;
    text-shadow: 0 0 5px #00d1ff;
}

#cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Tenor Sans', sans-serif;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00ff85, #00d1ff);
    color: #1a1a2e;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #00d1ff, #00ff85);
    box-shadow: 0 5px 15px rgba(0, 255, 133, 0.3);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: #ffffff;
}

.cookie-btn-reject:hover {
    background: linear-gradient(135deg, #ff8e53, #ff6b6b);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.cookie-btn-close {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    color: #ffffff;
    border: 1px solid #718096;
}

.cookie-btn-close:hover {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    box-shadow: 0 5px 15px rgba(113, 128, 150, 0.3);
    transform: translateY(-2px);
}

#ccpa-opt-out {
    color: #ffd700;
    font-weight: bold;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}

#ccpa-opt-out:hover {
    color: #ffed4e;
    text-shadow: 0 0 5px #ffd700;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 15px;
    }
    
    #cookie-banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    #cookie-banner-text {
        font-size: 13px;
    }
    
    #cookie-banner-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    #cookie-banner-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
} 