.registration {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 48px 16px;
        margin: 48px auto;
        max-width: 1280px;
        box-sizing: border-box;
    }

    .registration__title {
        margin: 0;
        width: 100%;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
        color: #1a1a1a;
    }

    .tb-widget-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        align-self: center;
    }

    .tb-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 160px;
        min-height: 48px;
        padding: 10px 24px;
        box-sizing: border-box;
        border-radius: 8px;
        color: #fff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
        transition: filter 0.2s ease, transform 0.2s ease;
    }

    .tb-btn:hover {
        filter: brightness(1.05);
        transform: translateY(-1px);
    }

    .tb-btn:active {
        transform: translateY(0);
        filter: brightness(0.97);
    }

    .tb-btn svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        display: block;
    }

    .tb-btn-max {
        background: linear-gradient(90deg, #7b42f5 0%, #915aff 100%);
        color: #7b42f5;
    }

    .tb-btn-max span {
        color: #fff;
    }

    .tb-btn-telegram {
        background: linear-gradient(90deg, #4691d3 0%, #64b5f6 100%);
    }