/* Cookie Consent Styles */
#cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    z-index: 99999;
    width: 90%;
    max-width: 500px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#cookie-consent .cookie-content {
    text-align: center;
}

#cookie-consent p {
    margin-bottom: 1.5rem;
    font-family: syneR;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #fff;
}

#cookie-consent .cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

#cookie-consent .cookie-button {
    padding: 0.8rem 1.5rem;
    font-family: syneR;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

#cookie-consent .accept-button {
    background-color: #82d878;
    color: #151515;
    border-color: #82d878;
}

#cookie-consent .accept-button:hover {
    background-color: #4ca640;
    border-color: #4ca640;
    text-decoration: underline;
}

#cookie-consent .decline-button {
    background-color: transparent;
    color: #fff;
}

#cookie-consent .decline-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}

@media (max-width: 480px) {
    #cookie-consent {
        bottom: 1rem;
        padding: 1rem;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }
    
    #cookie-consent .cookie-buttons {
        flex-direction: column;
    }
    
    #cookie-consent .cookie-button {
        width: 100%;
    }
}
