.botCinemaPage {
    width: 100%;
    max-width: none;
    padding: 0;
}

.botCinemaHero {
    position: relative;
    isolation: isolate;

    min-height: calc(100svh - 110px);

    display: flex;
    align-items: center;

    overflow: hidden;

    border-radius: 0 0 42px 42px;

    background:
        radial-gradient(
            circle at 16% 20%,
            rgba(255, 191, 215, .20),
            transparent 34rem
        ),
        radial-gradient(
            circle at 86% 78%,
            rgba(190, 218, 255, .20),
            transparent 36rem
        ),
        #f8f5f2;
}

.botCinemaHeroBackground {
    position: absolute;
    inset: 0;

    z-index: -3;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;

    transform: rotate(-1.5deg) scale(1.04);

    opacity: .72;
}

.botCinemaMarqueeRow {
    width: 100%;
    overflow: hidden;
}

.botCinemaMarqueeTrack {
    display: flex;
    width: max-content;
    will-change: transform;
}

.botCinemaMarqueeSet {
    display: flex;
    gap: 18px;
    padding-right: 18px;
}

.botCinemaMarqueeRowNow .botCinemaMarqueeTrack {
    animation:
        botCinemaMarqueeLeft
        74s
        linear
        infinite;
}

.botCinemaMarqueeRowComing .botCinemaMarqueeTrack {
    animation:
        botCinemaMarqueeRight
        88s
        linear
        infinite;
}

@keyframes botCinemaMarqueeLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes botCinemaMarqueeRight {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.botCinemaForumCard {
    flex: 0 0 340px;

    width: 340px;

    padding: 15px;

    border: 1px solid rgba(71, 84, 110, .11);
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(222, 235, 255, .96),
            rgba(212, 238, 218, .96)
        );

    box-shadow:
        0 18px 46px rgba(43, 49, 68, .09);

    color: #344054;
}

.botCinemaMarqueeRowComing .botCinemaForumCard {
    background:
        linear-gradient(
            135deg,
            rgba(228, 225, 250, .96),
            rgba(212, 235, 246, .96)
        );
}

.botCinemaForumMeta {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 7px;

    font-size: 11px;
    line-height: 1.2;
}

.botCinemaForumAuthor {
    color: #c77edc;
    font-weight: 800;
}

.botCinemaForumTitle {
    margin: 0 0 10px;

    overflow: hidden;

    color: #425168;

    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.botCinemaForumGallery {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 108px 108px;
    gap: 4px;

    overflow: hidden;

    border-radius: 9px;

    background: #b9c4d5;
}

.botCinemaForumGallery img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.botCinemaForumTags {
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 7px;

    display: flex;
    align-items: center;
    gap: 5px;

    overflow: hidden;

    white-space: nowrap;
}

.botCinemaForumTags span {
    flex: 0 0 auto;

    padding: 5px 8px;

    border: 1px solid rgba(40, 48, 64, .10);
    border-radius: 999px;

    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);

    color: #253041;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.botCinemaForumStatusNow {
    background: rgba(233, 255, 233, .94) !important;
}

.botCinemaForumStatusComing {
    background: rgba(248, 237, 255, .95) !important;
}

.botCinemaForumComments {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-top: 11px;

    color: #536277;

    font-size: 12px;
}

.botCinemaForumComments span:first-child {
    font-size: 10px;
}

.botCinemaHeroWash {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(248, 245, 242, .96) 0%,
            rgba(248, 245, 242, .86) 27%,
            rgba(248, 245, 242, .62) 53%,
            rgba(248, 245, 242, .80) 100%
        ),
        linear-gradient(
            180deg,
            rgba(248, 245, 242, .58) 0%,
            rgba(248, 245, 242, .22) 42%,
            rgba(248, 245, 242, .74) 100%
        );

    pointer-events: none;
}

.botCinemaHero::before,
.botCinemaHero::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    z-index: -1;

    width: 15%;

    pointer-events: none;
}

.botCinemaHero::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            #f8f5f2,
            transparent
        );
}

.botCinemaHero::after {
    right: 0;

    background:
        linear-gradient(
            -90deg,
            #f8f5f2,
            transparent
        );
}

.botCinemaHeroContent {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 64px));

    margin: 0 auto;
    padding: 130px 0 90px;
}

.botCinemaHeroContent .page-breadcrumb {
    margin-bottom: 54px;
}

.botCinemaHeroContent .commonEyebrow {
    margin-bottom: 22px;
}

.botCinemaHeroContent h1 {
    max-width: 980px;

    margin: 0;

    color: #202025;

    font-size: clamp(64px, 6.4vw, 108px);
    font-weight: 700;
    letter-spacing: -.075em;
    line-height: .94;
}

.botCinemaHeroContent .hero-description {
    max-width: 720px;

    margin-top: 42px;

    color: rgba(38, 37, 42, .68);

    font-size: 20px;
    line-height: 1.75;
}

.botCinemaHeroContent .hero-actions {
    margin-top: 38px;
}
.botCinemaReal {
    position: relative;

    padding-top: 150px;
    padding-bottom: 150px;
}

.botCinemaRealHeading {
    max-width: 980px;

    margin: 0 auto 72px;

    text-align: center;
}

.botCinemaRealTitle {
    margin: 0;

    color: #202025;

    font-size: clamp(58px, 6.2vw, 102px);
    font-weight: 700;
    letter-spacing: -.07em;
    line-height: .96;
}

.botCinemaRealIntro {
    max-width: 720px;

    margin: 32px auto 0;

    color: rgba(38, 37, 42, .66);

    font-size: 19px;
    line-height: 1.75;
}

.botCinemaRealVisual {
    position: relative;

    width: min(1460px, calc(100% - 32px));

    margin: 0 auto;
}

.botCinemaRealGlow {
    position: absolute;
    inset: 8% 5% -7%;

    z-index: -1;

    border-radius: 48px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(164, 235, 207, .34),
            transparent 43%
        ),
        radial-gradient(
            circle at 82% 74%,
            rgba(183, 204, 255, .30),
            transparent 46%
        );

    filter: blur(50px);
}

.botCinemaRealPicture {
    position: relative;

    display: block;

    overflow: hidden;

    border: 1px solid rgba(52, 68, 81, .10);
    border-radius: 30px;

    background: rgba(255, 255, 255, .58);

    box-shadow:
        0 38px 100px rgba(47, 61, 69, .13),
        0 5px 22px rgba(47, 61, 69, .07);
}

.botCinemaRealPicture::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .90);

    pointer-events: none;
}

.botCinemaRealPicture img {
    width: 100%;
    height: auto;

    display: block;
}

.botCinemaRealCaption {
    max-width: 760px;

    margin: 42px auto 0;

    color: rgba(38, 37, 42, .62);

    font-size: 17px;
    line-height: 1.75;
    text-align: center;
}
.botCinemaThread {
    position: relative;

    padding-top: 150px;
    padding-bottom: 150px;
}

.botCinemaThreadLayout {
    width: min(1260px, calc(100% - 64px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(520px, .80fr);
    align-items: center;
    gap: clamp(70px, 8vw, 140px);
}

.botCinemaThreadContent {
    min-width: 0;
}

.botCinemaThreadTitle {
    max-width: 690px;

    margin: 0;

    color: #202025;

    font-size: clamp(54px, 5.2vw, 84px);
    font-weight: 700;
    letter-spacing: -.07em;
    line-height: .97;
}

.botCinemaThreadText {
    max-width: 650px;

    margin: 30px 0 0;

    color: rgba(38, 37, 42, .65);

    font-size: 18px;
    line-height: 1.75;
}

.botCinemaThreadFeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 34px;
}

.botCinemaThreadFeatures span {
    padding: 10px 14px;

    border: 1px solid rgba(46, 52, 67, .09);
    border-radius: 999px;

    background: rgba(255, 255, 255, .74);

    color: rgba(34, 36, 44, .78);

    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.botCinemaThreadVisual {
    position: relative;

    width: 100%;
    max-width: 600px;

    justify-self: end;
}

.botCinemaThreadGlow {
    position: absolute;
    inset: 8% -8% -5%;

    z-index: -1;

    border-radius: 42px;

    background:
        radial-gradient(
            circle at 22% 18%,
            rgba(205, 191, 255, .30),
            transparent 44%
        ),
        radial-gradient(
            circle at 80% 78%,
            rgba(157, 229, 205, .28),
            transparent 48%
        );

    filter: blur(48px);
}

.botCinemaThreadFrame {
    overflow: hidden;

    border: 1px solid rgba(48, 58, 74, .11);
    border-radius: 28px;

    background: rgba(255, 255, 255, .72);

    box-shadow:
        0 32px 90px rgba(47, 61, 69, .14),
        0 5px 20px rgba(47, 61, 69, .07);
}

.botCinemaThreadFrameTop {
    min-height: 48px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 0 18px;

    border-bottom: 1px solid rgba(48, 58, 74, .08);

    background: rgba(255, 255, 255, .82);
}

.botCinemaThreadFrameTop > span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: rgba(63, 72, 89, .16);
}

.botCinemaThreadFrameTop p {
    margin: 0 0 0 7px;

    color: rgba(43, 47, 58, .52);

    font-size: 12px;
    font-weight: 700;
}

.botCinemaThreadVideo {
    width: 100%;
    height: auto;

    display: block;

    background: #eef1f6;
}
.botCinemaBenefits {
    padding-top: 150px;
    padding-bottom: 150px;
}

.botCinemaBenefits .commonSectionHeading {
    max-width: 900px;
    margin-right: auto;
    margin-bottom: 72px;
    margin-left: auto;

    text-align: center;
}

.botCinemaBenefits .commonSectionText {
    max-width: 640px;

    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.botCinemaBenefitsGrid {
    width: min(1180px, calc(100% - 64px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.botCinemaBenefitCard {
    position: relative;

    min-width: 0;
    min-height: 410px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    padding: 34px;

    border: 1px solid rgba(48, 58, 74, .09);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .82),
            rgba(255, 255, 255, .54)
        );

    box-shadow:
        0 24px 70px rgba(47, 61, 69, .07);
}

.botCinemaBenefitCard::before {
    content: "";

    position: absolute;
    top: -100px;
    right: -100px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(207, 220, 255, .25);

    filter: blur(10px);

    pointer-events: none;
}

.botCinemaBenefitCard:nth-child(2)::before,
.botCinemaBenefitCard:nth-child(5)::before {
    background: rgba(203, 239, 220, .30);
}

.botCinemaBenefitCard:nth-child(3)::before,
.botCinemaBenefitCard:nth-child(6)::before {
    background: rgba(245, 209, 231, .27);
}

.botCinemaBenefitCardLarge {
    grid-row: auto;

    min-height: 410px;
}

.botCinemaBenefitCardWide {
    grid-column: auto;

    min-height: 410px;
}

.botCinemaBenefitIcon {
    position: relative;
    z-index: 1;

    width: 68px;
    height: 68px;

    display: grid;
    place-items: center;

    margin-bottom: 36px;

    border: 1px solid rgba(48, 58, 74, .08);
    border-radius: 21px;

    background: rgba(255, 255, 255, .75);
}

.botCinemaBenefitIcon svg {
    width: 42px;
    height: 42px;

    display: block;
}

.botCinemaBenefitLabel {
    position: relative;
    z-index: 1;

    margin: 0 0 13px;

    color: rgba(111, 90, 165, .82);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1;
    text-transform: uppercase;
}

.botCinemaBenefitCard h3 {
    position: relative;
    z-index: 1;

    max-width: 540px;

    margin: 0;

    color: #202025;

    font-size: clamp(31px, 3vw, 46px);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.botCinemaBenefitCard > p:not(.botCinemaBenefitLabel),
.botCinemaBenefitWideContent p {
    position: relative;
    z-index: 1;

    max-width: 600px;

    margin: 24px 0 0;

    color: rgba(38, 37, 42, .64);

    font-size: 17px;
    line-height: 1.7;
}

.botCinemaBenefitPreview {
    position: relative;
    z-index: 1;

    margin-top: auto;
    padding-top: 42px;
}

.botCinemaBenefitPreviewFlow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
}

.botCinemaBenefitPreviewFlow span,
.botCinemaBenefitPreviewThreads span,
.botCinemaBenefitPreviewCinemas span,
.botCinemaBenefitPreviewDetails span {
    padding: 10px 13px;

    border: 1px solid rgba(48, 58, 74, .08);
    border-radius: 999px;

    background: rgba(255, 255, 255, .78);

    color: rgba(36, 39, 48, .76);

    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.botCinemaBenefitPreviewFlow i {
    color: rgba(57, 62, 75, .34);

    font-size: 15px;
    font-style: normal;
}

.botCinemaBenefitPreviewThreads {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.botCinemaBenefitPreviewThreads span {
    width: 100%;

    border-radius: 13px;
}

.botCinemaBenefitPreviewCinemas,
.botCinemaBenefitPreviewDetails {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.botCinemaBenefitPreviewCinemas span:first-child {
    background: rgba(255, 237, 219, .84);
}

.botCinemaBenefitPreviewCinemas span:last-child {
    background: rgba(232, 234, 255, .84);
}

.botCinemaBenefitPreviewLive {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    padding: 11px 14px;

    border: 1px solid rgba(48, 58, 74, .08);
    border-radius: 999px;

    background: rgba(255, 255, 255, .78);

    color: rgba(36, 39, 48, .76);

    font-size: 12px;
    font-weight: 700;
}

.botCinemaBenefitLiveDot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #59bb78;

    box-shadow: 0 0 0 5px rgba(89, 187, 120, .12);
}

.botCinemaBenefitWideContent {
    position: relative;
    z-index: 1;

    height: 100%;

    display: grid;
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 32px;
}

.botCinemaBenefitSteps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.botCinemaBenefitSteps span {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 13px 15px;

    border: 1px solid rgba(48, 58, 74, .08);
    border-radius: 15px;

    background: rgba(255, 255, 255, .76);

    color: rgba(36, 39, 48, .76);

    font-size: 13px;
    font-weight: 700;
}

.botCinemaBenefitSteps strong {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(117, 140, 163, .12);

    color: #657d96;
}

/* FAQ */

.botCinemaFaq {
    position: relative;

    padding-top: 150px;
    padding-bottom: 170px;
}

.botCinemaFaq::before {
    content: "";

    position: absolute;
    top: 14%;
    left: 50%;

    z-index: -1;

    width: min(920px, 76vw);
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(220, 204, 246, .20),
            rgba(205, 231, 247, .12) 42%,
            transparent 72%
        );

    filter: blur(22px);
    transform: translateX(-50%);

    pointer-events: none;
}

.botCinemaFaq .commonSectionHeading {
    max-width: 850px;

    margin: 0 auto 70px;

    text-align: center;
}

.botCinemaFaq .commonSectionText {
    max-width: 600px;

    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.botCinemaFaqList {

    width: min(940px, calc(100% - 64px));

    margin: 0 auto;

    border: 1px solid rgba(255,255,255,.32);
    border-radius: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.38),
            rgba(255,255,255,.16)
        );

    box-shadow:
        0 35px 90px rgba(47,61,69,.05),
        inset 0 1px 0 rgba(255,255,255,.55);

    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);

}

.botCinemaFaqItem {
    position: relative;
}

.botCinemaFaqItem + .botCinemaFaqItem {
    border-top: 1px solid rgba(48,58,74,.04);
}

.botCinemaFaqHeading {
    margin: 0;
}

.botCinemaFaqQuestion {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    padding: 27px 30px;

    border: 0;

    background: transparent;

    color: #202025;

    font: inherit;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.35;
    text-align: left;

    cursor: pointer;

    transition:
        background-color .35s,
        color .35s,
        padding-left .35s;
}

.botCinemaFaqQuestion:hover {
    background: rgba(255,255,255,.18);
}

.botCinemaFaqQuestion:focus-visible {
    outline: 3px solid rgba(111, 90, 165, .24);
    outline-offset: -3px;
}

.botCinemaFaqQuestion svg {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    color: rgba(62, 67, 80, .48);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        color .35s;
}

.botCinemaFaqQuestion[aria-expanded="true"] {
    color: #6f5aa5;
    padding-left:38px;
}

.botCinemaFaqQuestion[aria-expanded="true"] svg {
    color: #6f5aa5;

    transform:
        rotate(180deg)
        scale(1.15);
}

.botCinemaFaqAnswer {
    height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        height .38s cubic-bezier(.22, 1, .36, 1),
        opacity .24s ease;
}

.botCinemaFaqAnswer.is-open {
    opacity: 1;
}

.botCinemaFaqAnswerInner {
    max-width: 790px;

    padding: 0 76px 30px 30px;
}

.botCinemaFaqAnswerInner p {
    margin: 0;

    color: rgba(38, 37, 42, .66);

    font-size: 16px;
    line-height: 1.75;
}

.botCinemaFaqAnswerInner p + p {
    margin-top: 15px;
}

.botCinemaFaqAnswerInner a {
    color: #6f5aa5;
    font-weight: 750;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.botCinemaFaqAnswerInner a:hover {
    color: #4f3b84;
}

.botCinemaFaqAnswerInner code {
    padding: 4px 8px;

    border: 1px solid rgba(111, 90, 165, .10);
    border-radius: 8px;

    background: rgba(111, 90, 165, .08);

    color: #5f4a95;

    font-family: "JetBrains Mono", monospace;
    font-size: .88em;
    font-weight: 700;
}

.botCinemaFaqNote {
    padding: 14px 16px;

    border: 1px solid rgba(111, 90, 165, .10);
    border-radius: 14px;

    background: rgba(111, 90, 165, .055);
}
/* CTA FINAL */

.botCinemaCta{

    position:relative;

    padding-top:40px;
    padding-bottom:90px;

}

.botCinemaCta::before{

    content:"";

    position:absolute;

    left:50%;
    top:10%;

    transform:translateX(-50%);

    width:min(900px,80vw);
    height:420px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(206,220,255,.20),
            rgba(255,210,235,.12) 45%,
            transparent 72%
        );

    filter:blur(30px);

    z-index:-1;

    pointer-events:none;

}

.botCinemaCtaContent{

    width:min(760px,calc(100% - 48px));

    margin:0 auto;

    text-align:center;

}

.botCinemaCta .commonSectionTitle{

    font-size:clamp(2.2rem,4vw,3.4rem);

    max-width:900px;

    margin-left:auto;
    margin-right:auto;

    margin-bottom:24px;

}

.botCinemaCta .commonSectionText{

    max-width:560px;

    margin:0 auto;

}

.botCinemaCtaActions{

    margin-top:42px;

}

.botCinemaCtaActions .hero-button{

    display:inline-flex;

    width:auto;

    min-width:300px;

    justify-content:center;

    padding:18px 36px;

}

.botCinemaCtaNote{

    margin-top:20px;

    color:rgba(38,37,42,.45);

    font-size:13px;

    line-height:1.6;

}