/* Cookie Consent Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(71, 64, 144, 0.3);
    border-radius: 20px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.show {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.cookie-content p {
    font-size: 1.5rem;
    color: #d0d0d0;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: #474090;
    /* var(--main-color) hardcoded for safety */
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btn {
    background: #474090;
    /* var(--main-color) hardcoded for safety */
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(71, 64, 144, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px #474090;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-banner {
        padding: 2rem;
    }

    .cookie-btn {
        width: 100%;
    }
}