.tracking-consent {
    position: fixed;
    z-index: 10000;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: #101018;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.tracking-consent p {
    margin: 0;
    font: 400 14px/1.45 Inter, system-ui, sans-serif;
}

.tracking-consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.tracking-consent button {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #c840f0;
    border-radius: 6px;
    background: transparent;
    color: #ffffff;
    font: 700 14px/1 Inter, system-ui, sans-serif;
    cursor: pointer;
}

.tracking-consent button[data-consent="granted"] {
    background: #c840f0;
}

@media (max-width: 560px) {
    .tracking-consent {
        align-items: stretch;
        flex-direction: column;
    }

    .tracking-consent-actions {
        width: 100%;
    }

    .tracking-consent button {
        flex: 1;
    }
}
