/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #0D0D0D;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 2px solid #FED403;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content p {
    margin: 0;
    color: #e0e0e0;
}

.cookie-btn {
    background-color: #FED403;
    color: #0D0D0D;
    border: none;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .cookie-btn {
        width: 100%;
    }
}