:root {
    --mycbm-purple: #2e0e3e;
    --mycbm-purple-dark: #1d0828;
    --mycbm-purple-light: #f6eaf7;
    --mycbm-gold: #dc8d31;
    --mycbm-gold-light: #fcb96c;
    --mycbm-bg: #fff7fc;
    --mycbm-surface: #ffffff;
    --mycbm-surface-low: #fcf0fd;
    --mycbm-surface-high: #f0e4f1;
    --mycbm-text: #1f1922;
    --mycbm-muted: #4c444d;
    --mycbm-border: #cec3ce;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background: var(--mycbm-surface);
    color: var(--mycbm-text);
    font-family: "Plus Jakarta Sans", sans-serif;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
}

.font-sora {
    font-family: "Sora", sans-serif;
}

.text-purple {
    color: var(--mycbm-purple) !important;
}

.text-gold {
    color: var(--mycbm-gold) !important;
}

.bg-purple {
    background-color: var(--mycbm-purple) !important;
}

.bg-gold {
    background-color: var(--mycbm-gold-light) !important;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.hero-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.soft-surface {
    background: var(--mycbm-surface-low);
}

.surface-high {
    background: var(--mycbm-surface-high);
}

.card-soft {
    background: var(--mycbm-surface-low);
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 .35rem 1rem rgba(31, 25, 34, .08);
    transition: all .3s ease;
}

.card-soft:hover {
    transform: translateY(-2px);
    box-shadow: 0 .7rem 1.5rem rgba(31, 25, 34, .12);
}

.announcement-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    border-radius: 999px;
    background: var(--mycbm-surface-low);
    color: var(--mycbm-gold);
    box-shadow: 0 .2rem .6rem rgba(31, 25, 34, .06);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mycbm-gold);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.75);
    }
}

.hero-title {
    color: var(--mycbm-purple);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -.02em;
    max-width: 900px;
}

.hero-subtitle {
    max-width: 800px;
    color: var(--mycbm-muted);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
}

.slogan-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--mycbm-surface-high);
    color: var(--mycbm-muted);
    border-radius: 999px;
    padding: .6rem 1.25rem;
    box-shadow: 0 .2rem .6rem rgba(31, 25, 34, .05);
}

.feature-card {
    height: 100%;
    border: 0;
    border-radius: .75rem;
    background: var(--mycbm-surface-low);
    padding: 1.5rem;
    box-shadow: 0 .35rem 1rem rgba(31, 25, 34, .08);
    transition: all .3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .8rem 1.7rem rgba(31, 25, 34, .12);
}

.media-box {
    height: 360px;
    border-radius: .5rem;
    overflow: hidden;
    position: relative;
    background: var(--mycbm-surface-high);
}

.media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.feature-card:hover .media-box img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 14, 62, .75), transparent 65%);
}

.video-preview {
    height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: .5rem;
    background: linear-gradient(135deg, var(--mycbm-purple), #421b52);
    cursor: pointer;
}

.video-preview::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(198, 138, 44, .20);
    filter: blur(55px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button {
    width: 80px;
    height: 80px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--mycbm-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .18);
    transition: all .3s ease;
}

.video-preview:hover .play-button {
    transform: scale(1.1);
    background: #fff;
}

.feature-tag,
.social-pill,
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding: .3rem .65rem;
    font-size: .75rem;
    font-weight: 600;
}

.feature-tag {
    background: #fff;
    color: var(--mycbm-muted);
    box-shadow: 0 .15rem .4rem rgba(31, 25, 34, .05);
}

.social-pill {
    background: var(--mycbm-surface-high);
    color: var(--mycbm-muted);
    text-decoration: none;
    transition: all .2s ease;
}

.social-pill:hover {
    background: var(--mycbm-gold-light);
    color: #673d00;
}

.countdown-card {
    background: #fff;
    border: 0;
    border-radius: .75rem;
    padding: 1.5rem;
    box-shadow: 0 .35rem 1rem rgba(31, 25, 34, .08);
    transition: transform .25s ease;
}

.countdown-card:hover {
    transform: translateY(-3px);
}

.countdown-number {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--mycbm-purple);
    line-height: 1;
}

.countdown-label {
    color: var(--mycbm-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .75rem;
}

.gold-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--mycbm-gold-light);
    border-radius: 99px;
}

.priority-box {
    background: #fff;
    border-radius: .75rem;
    box-shadow: 0 .6rem 1.5rem rgba(31, 25, 34, .10);
    position: relative;
    overflow: hidden;
}

.priority-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--mycbm-gold-light), var(--mycbm-gold), var(--mycbm-purple));
}

.notify-input-wrap {
    background: var(--mycbm-surface-low);
    border-radius: .5rem;
    padding: .375rem;
}

.notify-input {
    border: 0;
    background: transparent;
    outline: 0;
    width: 100%;
    padding: .6rem;
}

.btn-purple {
    background: var(--mycbm-purple);
    border-color: var(--mycbm-purple);
    color: #fff;
    border-radius: .5rem;
    font-weight: 700;
}

.btn-purple:hover,
.btn-purple:focus {
    background: #411756;
    border-color: #411756;
    color: #fff;
}

.faq-search-wrap {
    position: relative;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.faq-search {
    height: 58px;
    border: 1px solid var(--mycbm-border);
    border-radius: 999px;
    padding-left: 3.25rem;
    padding-right: 7rem;
    font-size: 1rem;
    box-shadow: 0 .35rem 1rem rgba(31, 25, 34, .07);
}

.faq-search:focus {
    border-color: var(--mycbm-gold);
    box-shadow: 0 0 0 .2rem rgba(198, 138, 44, .12);
}

.faq-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mycbm-gold);
    z-index: 2;
    font-size: 1.2rem;
}

.clear-search {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: var(--mycbm-surface-high);
    color: var(--mycbm-purple);
    border-radius: 999px;
    padding: .4rem .75rem;
    font-size: .75rem;
    font-weight: 700;
    display: none;
}

.search-results-info {
    min-height: 24px;
    color: var(--mycbm-muted);
    font-size: .85rem;
    text-align: center;
    margin-top: -.75rem;
    margin-bottom: 1.25rem;
}

.faq-item {
    border: 0;
    border-radius: .75rem !important;
    background: var(--mycbm-surface-low);
    box-shadow: 0 .25rem .8rem rgba(31, 25, 34, .06);
    overflow: hidden;
    margin-bottom: .75rem;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    color: var(--mycbm-purple);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.faq-question:focus {
    outline: 3px solid rgba(198, 138, 44, .18);
    outline-offset: -3px;
}

.faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ebe0ec;
    color: var(--mycbm-purple);
    transition: all .3s ease;
}

.faq-item.active .faq-icon {
    background: var(--mycbm-purple);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--mycbm-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    padding-left: 1.25rem;
}

.faq-answer li {
    margin-bottom: .25rem;
}

.faq-highlight {
    background: rgba(252, 185, 108, .38);
    border-radius: .2rem;
    padding: 0 .15rem;
}

.faq-empty {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--mycbm-surface-low);
    border-radius: .75rem;
    color: var(--mycbm-muted);
}

.tutorial-card {
    height: 100%;
    border: 0;
    border-radius: .75rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 .35rem 1rem rgba(31, 25, 34, .08);
    transition: all .3s ease;
}

.tutorial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .8rem 1.7rem rgba(31, 25, 34, .12);
}

.tutorial-thumb {
    height: 192px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mycbm-purple), #3c1350);
}

.tutorial-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(252, 185, 108, .18), transparent 48%);
}

.tutorial-play {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--mycbm-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .4rem 1rem rgba(0, 0, 0, .15);
}

.tutorial-card .badge {
    font-size: .7rem;
}

.tutorial-card .card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.tutorial-category {
    color: var(--mycbm-gold);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.tutorial-title {
    color: var(--mycbm-purple);
    font-size: 1rem;
    margin-top: .3rem;
}

.tutorial-description {
    color: var(--mycbm-muted);
    font-size: .85rem;
    line-height: 1.6;
    margin-top: auto;
    padding-top: .4rem;
}

.no-video-message {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--mycbm-muted);
    background: rgba(255, 255, 255, .7);
    border-radius: .75rem;
}

/* Maldives-inspired line-art background. */
.maldives-line-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.maldives-line-art::before,
.maldives-line-art::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    opacity: .12;
}

.maldives-line-art::before {
    right: -180px;
    top: -170px;
    border: 2px solid var(--mycbm-gold);
    box-shadow:
        -35px 35px 0 -33px var(--mycbm-purple),
        -70px 70px 0 -68px var(--mycbm-gold),
        -105px 105px 0 -103px var(--mycbm-purple),
        -140px 140px 0 -138px var(--mycbm-gold);
}

.maldives-line-art::after {
    left: -230px;
    bottom: -230px;
    border: 2px solid var(--mycbm-purple);
    box-shadow:
        35px -35px 0 -33px var(--mycbm-gold),
        70px -70px 0 -68px var(--mycbm-purple),
        105px -105px 0 -103px var(--mycbm-gold),
        140px -140px 0 -138px var(--mycbm-purple);
}

.art-wave {
    position: absolute;
    width: 420px;
    height: 170px;
    border-top: 2px solid var(--mycbm-gold);
    border-radius: 50%;
    transform: rotate(-8deg);
    opacity: .10;
}

.art-wave.one {
    right: 4%;
    bottom: 8%;
}

.art-wave.two {
    left: 2%;
    top: 15%;
    transform: rotate(10deg);
    border-top-color: var(--mycbm-purple);
}

.section-content {
    position: relative;
    z-index: 1;
}

.modal-content {
    border: 0;
    border-radius: .75rem;
}

.modal-header {
    border-bottom: 1px solid var(--mycbm-border);
}

.modal-title {
    color: var(--mycbm-purple);
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: .5rem;
    background: #12071a;
}

.footer {
    background: var(--mycbm-surface-low);
    min-height: 80px;
}

/* Gold CBM button style */
.cbm-gold-btn {
    background: linear-gradient(145deg, #f5c542, #e6a817);
    color: #2e0e3e;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(230, 168, 23, 0.35);
    transition: all 0.2s ease;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
}

.cbm-gold-btn:hover {
    background: linear-gradient(145deg, #ffd966, #f0b429);
    color: #1d0828;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 168, 23, 0.45);
}

.cbm-gold-btn i {
    font-size: 1.25rem;
    line-height: 1;
}

/* Circular social icons */
.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mycbm-surface-high);
    color: var(--mycbm-purple);
    font-size: 1.35rem;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 .2rem .6rem rgba(31, 25, 34, .08);
}

.social-circle:hover {
    background: var(--mycbm-gold-light);
    color: #2e0e3e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 .5rem 1rem rgba(220, 141, 49, .35);
}

.stay-tuned-label {
    background: var(--mycbm-surface-high);
    color: var(--mycbm-purple);
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .section-padding {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-padding {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .media-box,
    .video-preview {
        height: 300px;
    }

    .faq-question {
        padding: 1rem;
        font-size: .9rem;
    }

    .faq-answer {
        padding: 0 1rem 1.25rem;
        font-size: .9rem;
    }

    .faq-search {
        height: 52px;
        padding-left: 2.9rem;
        padding-right: 5.5rem;
    }

    .slogan-pill {
        border-radius: 1rem;
        text-align: left;
    }

    .social-circle {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .stay-tuned-label {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .cbm-gold-btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }

    .cbm-gold-btn i {
        font-size: 1rem;
    }
}

.stay-tuned-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;

    background-color: #6f42c1;
    color: #ffffff;

    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;

    cursor: default;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Bell */
.stay-tuned-label i {
    font-size: 18px;
    display: inline-block;
    transform-origin: top center;
}

/* Hover */
.stay-tuned-label:hover {
    background-color: #d4af37;
    color: white;
    /* Purple text */

    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.20);
}

/* Ringing bell on hover */
.stay-tuned-label:hover i {
    animation: bell-ring 0.7s ease-in-out;
}

@keyframes bell-ring {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(14deg);
    }

    30% {
        transform: rotate(-14deg);
    }

    45% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    90% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .stay-tuned-label {
        width: 100%;
        padding: 11px 18px;
        font-size: 14px;
    }

    .stay-tuned-label i {
        font-size: 17px;
    }
}