/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 450px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 10000;
    border: 1px solid #333;
    border-radius: 8px;
    display: none;
}

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

#cookie-consent .container {
    padding: 0;
}

#cookie-consent p {
    color: #ccc;
    margin: 0 0 12px 0;
    font-size: 12px;
    line-height: 1.4;
}

#cookie-consent a {
    color: #fff;
    text-decoration: underline;
}

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

#cookie-consent button {
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 4px;
}

#cookie-consent .accept {
    background: #fff;
    color: #000;
}

#cookie-consent .accept:hover {
    background: #27ae60;
    color: #fff;
}

#cookie-consent .decline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

#cookie-consent .decline:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    #cookie-consent .container {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-consent .buttons {
        width: 100%;
        justify-content: center;
    }
    
    #cookie-consent button {
        flex: 1;
        min-width: 120px;
    }
}
