

/* Start:/local/components/bonusplus.registration/hero.block/templates/.default/style.css?17828079736459*/
.registration-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(30px, 4vw, 50px) 24px;
    box-sizing: border-box;
}

.registration-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.registration-hero::after {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: 2;
    pointer-events: none;
}

.registration-hero__header {
    position: relative;
    z-index: 5;
    width: 100%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(24px, 4vw, 40px);
}

.registration-hero__header h2 {
    margin: 0;
    text-shadow: 0 3px 20px rgba(255, 255, 255, 0.1);
}

.registration-hero__header .body {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--text-secondary, #efefef);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.55;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.06);
}

.registration-hero__header .btn {
    display: inline-flex;
}

/* ===== Layout (Grid) ===== */
.registration-hero__layout {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 560px;
    margin: 0 auto;
}

.registration-hero__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* ===== Card overrides for wide layout ===== */
.registration-hero__channel-card {
    display: grid !important;
    grid-template-columns: 78px minmax(0, 1fr) !important;
    align-items: center !important;
    width: 320px !important; /* fixed width for floating cards */
    height: auto !important;
    padding: 18px 20px !important;
    border-radius: 26px !important;
    aspect-ratio: unset !important;
    position: absolute !important;
    box-sizing: border-box;
    z-index: 2;
    text-decoration: none !important;

    /* Disable hover transform/color change */
    box-shadow: var(--bp-shadow, 0 8px 32px rgba(0, 0, 0, 0.24)) !important;
    border-color: rgba(93, 241, 243, 0.18) !important;
}

.registration-hero__channel-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 76px;
    height: 1px;
}

.registration-hero__channel-card--1::after,
.registration-hero__channel-card--2::after,
.registration-hero__channel-card--3::after {
    right: -77px;
}

.registration-hero__channel-card--4::after,
.registration-hero__channel-card--5::after,
.registration-hero__channel-card--6::after {
    left: -77px;
}

/* Card inner content styling */
.registration-hero__channel-card .bp-card__icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(93, 241, 243, 0.15);
    background: radial-gradient(circle at 30% 30%, rgba(93, 241, 243, 0.12), transparent 58%), rgba(10, 21, 21, 0.86);
    box-shadow:
        inset 0 0 28px rgba(93, 241, 243, 0.05),
        0 0 28px rgba(78, 204, 205, 0.06);
    color: var(--secondary-hover, #5df1f3) !important; /* Constant neon cyan color matching the TG path stroke */
    transition: none !important;
}

.registration-hero__channel-card:hover .bp-card__icon {
    color: var(--secondary-hover, #5df1f3) !important; /* Hover does nothing */
}

.registration-hero__channel-card .bp-card__icon svg {
    width: 34px;
    height: 34px;
    display: block;
}

.registration-hero__channel-card .bp-card__title {
    margin: 0 0 8px;
    color: var(--text-primary, #ffffff);
    font-size: clamp(18px, 1.7vw, 21px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.registration-hero__channel-card .bp-card__text {
    margin: 0;
    color: var(--text-muted, rgba(239, 239, 239, 0.76));
    font-size: 14px;
    line-height: 1.45;
}

/* Card positioning */
.registration-hero__channel-card--1 {
    left: 10%;
    top: 6%;
}

.registration-hero__channel-card--2 {
    left: 2%;
    top: 38%;
}

.registration-hero__channel-card--3 {
    left: 10%;
    top: 70%;
}

.registration-hero__channel-card--4 {
    right: 10%;
    left: auto !important;
    top: 6%;
}

.registration-hero__channel-card--5 {
    right: 2%;
    left: auto !important;
    top: 38%;
}

.registration-hero__channel-card--6 {
    right: 10%;
    left: auto !important;
    top: 70%;
}

/* ===== Center Planet Wrapper ===== */
.registration-hero__planet-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.registration-hero__planet-img {
    width: 100%;
    height: auto;
    display: block;
}

.registration-hero__planet-logo {
    position: absolute;
    top: 48%;
    left: 53%;
    transform: translate(-50%, -50%);
    width: clamp(200px, 32%, 200px);
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* ===== Responsive Styles ===== */
@media (max-width: 968px) {
    .registration-hero {
        padding: 40px 20px;
    }



    .registration-hero__header .body {
        font-size: 16px;
    }
    .registration-hero__center {
        display: none;
    }
    .registration-hero__layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        height: auto;
        justify-items: center;
    }

    .registration-hero__channel-card {
        position: static !important;
        width: 100% !important;
        max-width: 320px;
    }

    .registration-hero__channel-card::after {
        display: none !important;
    }

    .registration-hero__planet-wrap {
        max-width: 280px;
        animation: none !important;
    }
}

@media (max-width: 768px) {
    .registration-hero__header {
        text-align: start;
    }
    .registration-hero__layout {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .registration-hero__channel-card,
    .registration-hero__planet-wrap {
        animation: none !important;
    }
}

/* End */


/* Start:/local/components/bonusplus.registration/content/templates/.default/style.css?17828079736354*/
.registration-content {
    --cyan: var(--secondary-default, #00d9ff);
    --cyan-glow: rgba(0, 217, 255, 0.2);
    --yellow: var(--primary-default, #ffd400);
    --bg-dark: var(--background-primary, #0a1515);
    --card-border: rgba(0, 217, 255, 0.25);
    --text-primary: #ffffff;
    --text-secondary: #d5e0e4;
    --text-muted: #aab8be;

    font-family: "Manrope", "Stem", sans-serif;
    padding: 20px 30px;
    box-sizing: border-box;
    color: var(--text-primary);
}
.registration-card {
    display: flex !important;
    flex-direction: row !important;
}

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

/* .method-card styling moved to cards.css */

.method-info {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.method-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 20px;
}

.method-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 4px var(--cyan));
}

/* .bp-card--interactive-glow .bp-card__title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.25;
    color: var(--text-primary);
    white-space: pre-line;
} */

.bp-card--interactive-glow .bp-card__text {
    /* font-size: 13px;
    line-height: 1.45;
    color: var(--text-secondary); */
    margin: 0 0 20px;
}

.method-bullets {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.method-bullets li {
    color: var(--text-secondary);
    position: relative;
    padding-left: 14px;
}

.method-bullets li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
}

/* Phone Mockup Preview on Right */
.method-preview {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-screenshot {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.bp-card--interactive-glow:hover .method-screenshot {
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(0 12px 28px rgba(0, 217, 255, 0.25)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
/* Stretch the last item if it doesn't fill the row (Desktop: 5 columns) */
.benefits-grid > :last-child:nth-child(5n-4) { grid-column: span 5; }
.benefits-grid > :last-child:nth-child(5n-3) { grid-column: span 4; }
.benefits-grid > :last-child:nth-child(5n-2) { grid-column: span 3; }
.benefits-grid > :last-child:nth-child(5n-1) { grid-column: span 2; }

/* .benefit-card styling moved to cards.css */

.benefit-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    margin-bottom: 16px;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 4px var(--cyan));
}

/* .bp-card--subtle-glow-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.25;
    color: var(--text-primary);
} */

/* Bottom CTA Block */
.bottom-cta-container {
    width: 100%;
}

/* .bottom-cta-card styling moved to cards.css */

.cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.cta-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
}

.cta-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 6px var(--cyan));
}

.cta-info {
    display: flex;
    flex-direction: column;
}

.cta-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--text-primary);
}

.cta-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.cta-right {
    display: flex;
    justify-content: flex-end;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* Stretch the last item if it doesn't fill the row (Tablet: 3 columns) */
    .benefits-grid > :last-child:nth-child(3n-2) { grid-column: span 3; }
    .benefits-grid > :last-child:nth-child(3n-1) { grid-column: span 2; }
}

@media (max-width: 900px) {
    .registration-content {
        padding: 50px 20px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bp-card--interactive-glow {
        min-height: auto;
    }

    .benefits-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .benefits-grid > * {
        grid-column: auto !important;
    }

    .bp-card--cta-row {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }

    .cta-left {
        width: 100%;
        gap: 16px;
    }

    .cta-right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .bp-card--interactive-glow {
        flex-direction: column;
        gap: 24px;
    }

    .method-info {
        width: 100%;
    }

    .method-preview {
        width: 100%;
        margin-top: 10px;
    }

    .method-screenshot {
        max-height: 280px;
    }

    .cta-left {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* End */
/* /local/components/bonusplus.registration/hero.block/templates/.default/style.css?17828079736459 */
/* /local/components/bonusplus.registration/content/templates/.default/style.css?17828079736354 */
