/* ================= COOKIE BANNER (TRANSPARENT + FIXED WIDTH) ================= */

/* Main container */
.cookie-consent {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    max-width: 720px; /* bigger container */
    width: calc(100% - 40px);

    background: rgba(2, 6, 23, 0.40); /* transparent dark glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 18px;
    padding: 18px 24px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-family: system-ui, -apple-system, "Poppins", sans-serif;
    font-size: 14px;
    color: #ffffff;

    white-space: nowrap;
}

/* Message text */
.cookie-consent__message {
    flex: 1;
    line-height: 1.5;
    white-space: nowrap;
    margin-right: 16px;
}

/* ================= ORANGE BUTTON (MATCHES GET STARTED BUTTON) ================= */
.cookie-consent__agree {
    padding: 10px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;

    background: #FF8804;  /* ORANGE BUTTON */
    color: #ffffff;

    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;

    box-shadow: 0 10px 25px rgba(255, 136, 4, 0.35);
    transition: 0.2s ease-in-out;
}

.cookie-consent__agree:hover {
    background: #e67600;  /* darker orange */
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255, 136, 4, 0.55);
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        white-space: normal;
        padding: 16px 18px;
    }

    .cookie-consent__agree {
        width: 100%;
        margin-top: 12px;
        text-align: center;
    }
}
