.ttch-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.ttch-cookie-panel {
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(0,229,255,.22);
    border-radius: 22px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(13,20,32,.98), rgba(4,7,13,.98));
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    pointer-events: auto;
}

.ttch-cookie-copy strong {
    display: block;
    color: #fff;
    font-size: 18px;
}

.ttch-cookie-copy p {
    margin: 6px 0;
    color: #b8c4d6;
    font-size: 14px;
}

.ttch-cookie-copy a {
    color: #9ff6ff;
    font-size: 13px;
    font-weight: 900;
}

.ttch-cookie-options {
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
}

.ttch-cookie-options[hidden] {
    display: none;
}

.ttch-cookie-options label {
    color: #dbeafe;
    font-size: 14px;
    font-weight: 800;
}

.ttch-cookie-options input {
    margin-right: 8px;
}

.ttch-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.ttch-cookie-actions button,
.ttch-cookie-link {
    min-height: 40px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-weight: 1000;
    cursor: pointer;
}

.ttch-cookie-actions [data-cookie-action="accept"] {
    border-color: rgba(57,255,136,.28);
    background: rgba(57,255,136,.14);
    color: #d7ffe9;
}

.ttch-cookie-link {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
}

@media (max-width: 720px) {
    .ttch-cookie-panel {
        grid-template-columns: 1fr;
    }

    .ttch-cookie-actions {
        justify-content: flex-start;
    }
}
