.mshdfilm-app-page {
    --gold: #fbbf24;
    --gold-light: #ffd75a;
    --bg: #050608;
    --bg-soft: #0a0d11;
    --text: #fff;
    --muted: #a6a9ae;

    background: #050608;
    color: #fff;

    font-family: Yekan, sans-serif;

    overflow: hidden;
}

.mshdfilm-app-page * {
    box-sizing: border-box;
}

.mshd-container {
    width: min(1150px, 90%);
    margin: auto;
}

.mshd-hero {
    min-height: 800px;
    padding: 120px 5% 70px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(251,191,36,.12),
            transparent 30%
        ),
        #050608;
}

.mshd-hero-container {
    width: min(1200px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 60px;
}

.mshd-hero-content {
    direction: rtl;
}

.mshd-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border-radius: 30px;

    background: rgba(251,191,36,.08);
    border: 1px solid rgba(251,191,36,.2);

    color: var(--gold);

    font-size: 13px;

    margin-bottom: 25px;
}

.mshd-badge span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow: 0 0 12px var(--gold);
}

.mshd-hero h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.2;
    font-weight: 800;

    margin: 0 0 25px;

    color: #fff;
}

.mshd-hero h1 strong {
    color: var(--gold);
}

.mshd-hero-content > p {
    color: var(--muted);

    max-width: 570px;

    line-height: 2;

    font-size: 17px;

    margin-bottom: 30px;
}


/* DOWNLOAD */

.mshd-download-btn {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 14px 20px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #ffd75a,
            #fbbf24
        );

    color: #111 !important;

    text-decoration: none !important;

    box-shadow:
        0 15px 40px rgba(251,191,36,.18);

    transition: .3s;
}

.mshd-download-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 55px rgba(251,191,36,.3);
}

.mshd-download-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.12);

    border-radius: 12px;

    font-size: 25px;
}

.mshd-download-text {
    display: flex;
    flex-direction: column;

    text-align: right;
}

.mshd-download-text small {
    font-size: 11px;
    opacity: .65;
}

.mshd-download-text b {
    font-size: 16px;
}

.mshd-download-arrow {
    font-size: 22px;
}


/* META */

.mshd-meta {
    display: flex;
    gap: 10px;

    margin-top: 18px;

    flex-wrap: wrap;
}

.mshd-meta span {
    padding: 7px 12px;

    border-radius: 9px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    color: #aaa;

    font-size: 12px;
}

.mshd-meta b {
    color: #fff;
}


/* PHONE */

.mshd-phone {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.mshd-phone img {
    width: min(460px, 90%);

    position: relative;
    z-index: 2;

    animation:
        mshdFloat 5s ease-in-out infinite;

    filter:
        drop-shadow(
            0 40px 60px rgba(0,0,0,.7)
        );
}

.mshd-phone-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(251,191,36,.2),
            transparent 65%
        );

    filter: blur(25px);
}

@keyframes mshdFloat {
    0%,100% {
        transform:
            translateY(0)
            rotate(2deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(0);
    }
}


/* FEATURES */

.mshd-features {
    padding: 100px 0;

    background:
        linear-gradient(
            180deg,
            #050608,
            #080a0d
        );
}

.mshd-section-title {
    text-align: center;

    margin-bottom: 50px;
}

.mshd-section-title > span {
    color: var(--gold);

    font-size: 13px;
}

.mshd-section-title h2 {
    color: #fff;

    font-size: 38px;

    margin: 10px 0;
}

.mshd-section-title p {
    color: var(--muted);

    font-size: 14px;
}

.mshd-features-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.mshd-feature {
    padding: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.015)
        );

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 22px;

    transition: .3s;
}

.mshd-feature:hover {
    transform: translateY(-6px);

    border-color:
        rgba(251,191,36,.3);
}

.mshd-feature .icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        rgba(251,191,36,.08);

    color: var(--gold);

    font-size: 22px;

    margin-bottom: 18px;
}

.mshd-feature h3 {
    color: #fff;

    font-size: 17px;

    margin: 0 0 10px;
}

.mshd-feature p {
    color: var(--muted);

    font-size: 13px;

    line-height: 2;

    margin: 0;
}


/* PROMO */

.mshd-promo {
    padding: 100px 0;
}

.mshd-promo-image {
    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);
}

.mshd-promo-image img {
    width: 100%;

    display: block;
}


/* ABOUT */

.mshd-about {
    padding: 100px 20px;

    text-align: center;
}

.mshd-about-box {
    max-width: 800px;

    margin: auto;
}

.mshd-about h2 {
    color: #fff;

    font-size: 36px;

    margin-bottom: 20px;
}

.mshd-about h2 span {
    color: var(--gold);
}

.mshd-about p {
    color: var(--muted);

    line-height: 2.4;

    font-size: 15px;
}


/* FINAL */

.mshd-final-download {
    padding: 80px 20px 110px;
}

.mshd-download-card {
    max-width: 900px;

    margin: auto;

    text-align: center;

    padding: 60px 30px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(251,191,36,.12),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(251,191,36,.18);
}

.mshd-download-card h2 {
    color: #fff;

    font-size: 34px;

    margin-bottom: 12px;
}

.mshd-download-card p {
    color: var(--muted);

    margin-bottom: 28px;
}


/* MOBILE */

@media(max-width:900px) {

    .mshd-hero-container {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .mshd-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mshd-hero-content > p {
        font-size: 14px;
    }

    .mshd-phone {
        order: -1;
    }

    .mshd-phone img {
        width: 330px;
    }

    .mshd-features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media(max-width:600px) {

    .mshd-hero {
        padding:
            100px 20px 60px;
    }

    .mshd-hero h1 {
        font-size: 42px;
    }

    .mshd-phone img {
        width: 290px;
    }

    .mshd-features-grid {
        grid-template-columns: 1fr;
    }

    .mshd-download-btn {
        width: 100%;
        justify-content: center;
    }

    .mshd-section-title h2 {
        font-size: 30px;
    }
}