/* =========================================================
   FARSKIDS SPLASH 1.4
   ========================================================= */

#fksplash {
    --fks-primary: #ff1744;
    --fks-secondary: #ff4f70;
    --fks-glow: rgba(255,23,68,.65);
    --fks-glow-soft: rgba(255,23,68,.25);
    --fks-progress: 0%;

    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;

    z-index: 2147483647 !important;

    display: none !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 15px !important;

    direction: rtl !important;

    color: #fff !important;

    font-family:
        "Vazirmatn",
        Tahoma,
        Arial,
        sans-serif !important;

    box-sizing: border-box !important;

    overflow: hidden !important;
}

#fksplash *,
#fksplash *::before,
#fksplash *::after {
    box-sizing: border-box !important;
}

#fksplash.is-visible {
    display: flex !important;
}

.fksplash-backdrop {
    position: absolute !important;
    inset: 0 !important;

    background:
        rgba(3,3,6,.94) !important;

    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

.fksplash-box {
    position: relative !important;

    width: min(940px, 94vw) !important;

    min-height: 500px !important;

    display: flex !important;
    align-items: center !important;

    gap: 55px !important;

    padding: 45px !important;

    overflow: hidden !important;

    border-radius: 30px !important;

    background:
        linear-gradient(
            135deg,
            rgba(19,19,25,.98),
            rgba(7,7,10,.98)
        ) !important;

    border:
        1px solid rgba(255,255,255,.10) !important;

    box-shadow:
        0 35px 120px rgba(0,0,0,.80),
        0 0 100px var(--fks-glow-soft) !important;

    z-index: 2 !important;
}

.fksplash-close {
    position: absolute !important;

    top: 14px !important;
    right: 14px !important;

    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;

    border-radius: 50% !important;

    border:
        1px solid rgba(255,255,255,.14) !important;

    background:
        rgba(255,255,255,.06) !important;

    color: #fff !important;

    font-size: 28px !important;
    line-height: 38px !important;

    cursor: pointer !important;

    z-index: 100 !important;
}

.fksplash-close:hover {
    background: var(--fks-primary) !important;

    box-shadow:
        0 0 25px var(--fks-glow) !important;
}


/* =========================================================
   COVER
   ========================================================= */

.fksplash-cover-area {
    position: relative !important;

    width: 350px !important;
    height: 350px !important;

    flex: 0 0 350px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    overflow: visible !important;

    isolation: isolate !important;
}

.fksplash-cover-bg {
    position: absolute !important;

    inset: -35px !important;

    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

    filter:
        blur(40px)
        saturate(1.4) !important;

    opacity: .35 !important;

    transform: scale(1.12) !important;

    border-radius: 40px !important;

    z-index: -5 !important;
}

.fksplash-glow {
    position: absolute !important;

    width: 265px !important;
    height: 265px !important;

    border-radius: 30px !important;

    background: var(--fks-primary) !important;

    filter: blur(55px) !important;

    opacity: .38 !important;

    z-index: -2 !important;
}


/* =========================================================
   NEON AUDIO WAVE AROUND COVER
   ========================================================= */

.fksplash-cover-wave {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    display: block !important;

    z-index: 20 !important;

    pointer-events: none !important;

    overflow: visible !important;

    transform:
        translateZ(0) !important;

    will-change:
        transform,
        opacity !important;

    contain: layout paint !important;
}


/* =========================================================
   COVER RING
   ========================================================= */

.fksplash-cover-ring {
    position: absolute !important;

    width: 282px !important;
    height: 282px !important;

    border-radius: 30px !important;

    border:
        1px solid rgba(255,255,255,.12) !important;

    box-shadow:
        0 0 18px var(--fks-glow-soft),
        inset 0 0 20px var(--fks-glow-soft) !important;

    z-index: 15 !important;

    pointer-events: none !important;

    will-change:
        transform,
        box-shadow !important;
}


/* =========================================================
   COVER
   ========================================================= */

.fksplash-cover {
    position: relative !important;

    width: 255px !important;
    height: 255px !important;

    max-width: none !important;

    object-fit: cover !important;

    border-radius: 25px !important;

    z-index: 30 !important;

    box-shadow:
        0 0 28px var(--fks-glow),
        0 0 70px var(--fks-glow-soft) !important;

    transform:
        scale(1) translateZ(0) !important;

    will-change:
        transform !important;
}


/* =========================================================
   CONTENT
   ========================================================= */

.fksplash-content {
    flex: 1 !important;

    min-width: 0 !important;

    text-align: right !important;
}

.fksplash-brand {
    color:
        rgba(255,255,255,.40) !important;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 12px !important;

    letter-spacing: 3px !important;

    margin-bottom: 18px !important;
}

.fksplash-artist {
    color:
        var(--fks-secondary) !important;

    font-size: 17px !important;

    font-weight: 700 !important;

    margin-bottom: 5px !important;
}

.fksplash-title {
    margin: 0 !important;

    color: #fff !important;

    font-size: 52px !important;

    line-height: 1.2 !important;

    font-weight: 900 !important;
}

.fksplash-english {
    margin-top: 9px !important;

    direction: ltr !important;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 13px !important;

    color:
        rgba(255,255,255,.35) !important;
}


/* =========================================================
   PLAYER
   ========================================================= */

.fksplash-player {
    margin-top: 28px !important;

    padding: 16px !important;

    border-radius: 19px !important;

    border:
        1px solid rgba(255,255,255,.09) !important;

    background:
        rgba(255,255,255,.035) !important;
}


/* PLAYER WAVE */

.fksplash-wave {
    display: block !important;

    width: 100% !important;

    height: 78px !important;
    min-height: 78px !important;

    margin: 0 0 8px 0 !important;

    overflow: visible !important;

    will-change: contents !important;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.fksplash-progress-wrap {
    width: 100% !important;

    direction: ltr !important;

    padding:
        3px 0 11px !important;
}

.fksplash-progress {
    --fks-progress: 0%;

    direction: ltr !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    display: block !important;

    width: 100% !important;

    height: 7px !important;

    margin: 0 !important;

    padding: 0 !important;

    border: 0 !important;

    outline: none !important;

    cursor: pointer !important;

    background:
        linear-gradient(
            90deg,
            var(--fks-secondary) 0%,
            var(--fks-primary) var(--fks-progress),
            rgba(255,255,255,.10) var(--fks-progress),
            rgba(255,255,255,.10) 100%
        ) !important;

    border-radius: 20px !important;

    box-shadow:
        0 0 12px var(--fks-glow-soft) !important;
}

.fksplash-progress::-webkit-slider-runnable-track {
    height: 7px !important;

    border: 0 !important;

    border-radius: 20px !important;

    background: transparent !important;
}

.fksplash-progress::-webkit-slider-thumb {
    appearance: none !important;
    -webkit-appearance: none !important;

    width: 16px !important;
    height: 16px !important;

    margin-top: -4.5px !important;

    border-radius: 50% !important;

    border:
        2px solid #fff !important;

    background:
        var(--fks-primary) !important;

    box-shadow:
        0 0 8px var(--fks-primary),
        0 0 20px var(--fks-glow) !important;
}

.fksplash-progress::-moz-range-track {
    height: 7px !important;

    border: 0 !important;

    border-radius: 20px !important;

    background:
        rgba(255,255,255,.10) !important;
}

.fksplash-progress::-moz-range-progress {
    height: 7px !important;

    border-radius: 20px !important;

    background:
        linear-gradient(
            90deg,
            var(--fks-secondary),
            var(--fks-primary)
        ) !important;

    box-shadow:
        0 0 12px var(--fks-glow) !important;
}

.fksplash-progress::-moz-range-thumb {
    width: 16px !important;
    height: 16px !important;

    border-radius: 50% !important;

    border:
        2px solid #fff !important;

    background:
        var(--fks-primary) !important;

    box-shadow:
        0 0 8px var(--fks-primary),
        0 0 20px var(--fks-glow) !important;
}


/* =========================================================
   CONTROLS
   ========================================================= */

.fksplash-controls {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    justify-content: flex-start !important;

    direction: ltr !important;

    gap: 13px !important;
}

.fksplash-play {
    order: 1 !important;

    flex:
        0 0 52px !important;

    width: 52px !important;
    height: 52px !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border:
        1px solid rgba(255,255,255,.18) !important;

    border-radius: 50% !important;

    background:
        linear-gradient(
            135deg,
            var(--fks-primary),
            var(--fks-secondary)
        ) !important;

    color: #fff !important;

    cursor: pointer !important;

    box-shadow:
        0 0 12px var(--fks-glow),
        0 0 30px var(--fks-glow-soft) !important;
}

.fksplash-play-icon {
    display: block !important;

    font-size: 18px !important;

    line-height: 1 !important;
}

.fksplash-time {
    order: 2 !important;

    min-width: 50px !important;

    direction: ltr !important;

    text-align: left !important;

    color:
        rgba(255,255,255,.45) !important;

    font-family:
        Arial,
        sans-serif !important;

    font-size: 12px !important;
}


/* =========================================================
   NOTE / HOME
   ========================================================= */

.fksplash-note {
    margin-top: 15px !important;

    text-align: center !important;

    color:
        rgba(255,255,255,.38) !important;

    font-size: 11px !important;
}

.fksplash-home {
    display: block !important;

    width: fit-content !important;

    margin: 14px auto 0 !important;

    padding:
        9px 18px !important;

    border-radius: 11px !important;

    color: #fff !important;

    text-decoration: none !important;

    font-size: 12px !important;

    background:
        rgba(255,255,255,.045) !important;

    border:
        1px solid rgba(255,255,255,.09) !important;
}

html.fksplash-open {
    overflow: hidden !important;
    height: 100% !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 800px) {

    #fksplash {
        width: 100vw !important;
        height: 100dvh !important;

        min-height: 0 !important;

        padding: 5px !important;

        overflow: hidden !important;
    }


    .fksplash-box {

        width: 96vw !important;

        max-width: 520px !important;

        height: calc(100dvh - 10px) !important;

        max-height: calc(100dvh - 10px) !important;

        min-height: 0 !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        justify-content: center !important;

        overflow: hidden !important;

        padding:
            35px 13px 12px !important;

        gap: 0 !important;

        border-radius: 24px !important;
    }


    .fksplash-cover-area {

        width: min(68vw, 280px) !important;

        height: min(68vw, 280px) !important;

        margin:
            0 auto 5px !important;

        flex:
            0 0 auto !important;

        overflow: visible !important;
    }


    .fksplash-cover {

        width: min(47vw, 195px) !important;

        height: min(47vw, 195px) !important;

        border-radius: 21px !important;
    }


    .fksplash-cover-ring {

        width: min(53vw, 220px) !important;

        height: min(53vw, 220px) !important;

        border-radius: 25px !important;
    }


    .fksplash-glow {

        width: min(50vw, 205px) !important;

        height: min(50vw, 205px) !important;
    }


    .fksplash-cover-wave {

        width: 100% !important;

        height: 100% !important;

        left: 0 !important;

        top: 0 !important;
    }


    .fksplash-content {

        width: 100% !important;

        flex:
            0 1 auto !important;

        min-height: 0 !important;

        text-align: center !important;
    }


    .fksplash-brand {

        text-align: center !important;

        margin-bottom: 4px !important;

        font-size: 10px !important;
    }


    .fksplash-artist {

        text-align: center !important;

        font-size: 14px !important;

        margin-bottom: 2px !important;
    }


    .fksplash-title {

        text-align: center !important;

        font-size: clamp(27px, 8vw, 34px) !important;

        line-height: 1.1 !important;
    }


    .fksplash-english {

        text-align: center !important;

        font-size: 10px !important;

        margin-top: 5px !important;
    }


    .fksplash-player {

        width: 100% !important;

        margin-top: 10px !important;

        padding:
            8px 9px !important;

        border-radius: 16px !important;
    }


    .fksplash-wave {

        width: 100% !important;

        height: 58px !important;

        min-height: 58px !important;

        margin-bottom: 4px !important;
    }


    .fksplash-progress-wrap {

        padding:
            2px 0 6px !important;
    }


    .fksplash-progress {

        height: 6px !important;
    }


    .fksplash-progress::-webkit-slider-runnable-track {

        height: 6px !important;
    }


    .fksplash-progress::-moz-range-track {

        height: 6px !important;
    }


    .fksplash-progress::-moz-range-progress {

        height: 6px !important;
    }


    .fksplash-controls {

        direction: ltr !important;

        justify-content: flex-start !important;

        gap: 9px !important;
    }


    .fksplash-play {

        width: 45px !important;

        height: 45px !important;

        flex:
            0 0 45px !important;
    }


    .fksplash-time {

        min-width: 42px !important;

        font-size: 11px !important;
    }


    .fksplash-note {

        margin-top: 6px !important;

        font-size: 9px !important;
    }


    .fksplash-home {

        margin-top: 7px !important;

        padding:
            7px 15px !important;

        font-size: 10px !important;
    }


    .fksplash-close {

        top: 8px !important;

        right: 8px !important;

        width: 36px !important;

        height: 36px !important;

        font-size: 24px !important;

        line-height: 32px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 400px),
screen and (max-height: 700px) and (max-width: 800px) {

    #fksplash {
        padding: 3px !important;
    }


    .fksplash-box {

        width: 97vw !important;

        height: calc(100dvh - 6px) !important;

        max-height: calc(100dvh - 6px) !important;

        padding:
            30px 9px 9px !important;
    }


    .fksplash-cover-area {

        width: min(61vw, 235px) !important;

        height: min(61vw, 235px) !important;

        margin-bottom: 3px !important;
    }


    .fksplash-cover {

        width: min(43vw, 165px) !important;

        height: min(43vw, 165px) !important;
    }


    .fksplash-cover-ring {

        width: min(49vw, 190px) !important;

        height: min(49vw, 190px) !important;
    }


    .fksplash-glow {

        width: min(46vw, 178px) !important;

        height: min(46vw, 178px) !important;
    }


    .fksplash-title {

        font-size: 27px !important;
    }


    .fksplash-english {

        margin-top: 3px !important;

        font-size: 9px !important;
    }


    .fksplash-player {

        margin-top: 7px !important;

        padding:
            6px 7px !important;
    }


    .fksplash-wave {

        height: 48px !important;

        min-height: 48px !important;
    }


    .fksplash-play {

        width: 42px !important;

        height: 42px !important;

        flex-basis: 42px !important;
    }


    .fksplash-note {

        margin-top: 4px !important;

        font-size: 8px !important;
    }


    .fksplash-home {

        margin-top: 5px !important;

        padding:
            6px 13px !important;

        font-size: 9px !important;
    }
}
/* =========================================================
   FARSKIDS SPLASH - FINAL MOBILE FIT
   ========================================================= */

@media screen and (max-width: 800px) {

    #fksplash {
        width: 100% !important;
        height: 100dvh !important;
        min-height: 0 !important;
        max-height: 100dvh !important;

        padding: 3px !important;

        overflow: hidden !important;

        align-items: center !important;
        justify-content: center !important;
    }


    .fksplash-box {
        width: 96vw !important;
        max-width: 520px !important;

        height: calc(100dvh - 6px) !important;
        max-height: calc(100dvh - 6px) !important;
        min-height: 0 !important;

        padding:
            30px 12px 10px !important;

        display: flex !important;

        flex-direction: column !important;

        justify-content: flex-start !important;
        align-items: center !important;

        gap: 0 !important;

        overflow: hidden !important;
    }


    /* =====================================================
       COVER AREA
       ===================================================== */

    .fksplash-cover-area {

        width:
            min(
                66vw,
                240px,
                calc(100dvh - 365px)
            ) !important;

        height:
            min(
                66vw,
                240px,
                calc(100dvh - 365px)
            ) !important;

        min-width: 0 !important;
        min-height: 0 !important;

        margin:
            0 auto 8px !important;

        flex:
            0 1 auto !important;

        flex-shrink: 1 !important;

        overflow: visible !important;
    }


    /*
     * کاور اصلی
     */

    .fksplash-cover {

        width: 70% !important;
        height: 70% !important;

        border-radius: 20px !important;

        max-width: none !important;
    }


    /*
     * حلقه دایره‌ای
     */

    .fksplash-cover-ring {

        width: 81% !important;
        height: 81% !important;

        border-radius: 50% !important;
    }


    /*
     * Glow
     */

    .fksplash-glow {

        width: 75% !important;
        height: 75% !important;

        border-radius: 50% !important;
    }


    /*
     * Canvas اکولایزر دایره‌ای
     */

    .fksplash-cover-wave {

        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        display: block !important;

        overflow: visible !important;

        pointer-events: none !important;
    }


    /* =====================================================
       CONTENT
       ===================================================== */

    .fksplash-content {

        width: 100% !important;

        min-width: 0 !important;
        min-height: 0 !important;

        flex:
            0 1 auto !important;

        flex-shrink: 1 !important;

        text-align: center !important;
    }


    .fksplash-brand {

        margin:
            0 0 4px !important;

        font-size: 10px !important;

        line-height: 1.2 !important;

        text-align: center !important;
    }


    .fksplash-artist {

        margin:
            0 0 1px !important;

        font-size: 13px !important;

        line-height: 1.3 !important;

        text-align: center !important;
    }


    .fksplash-title {

        margin: 0 !important;

        font-size: 28px !important;

        line-height: 1.15 !important;

        text-align: center !important;
    }


    .fksplash-english {

        margin-top: 3px !important;

        font-size: 10px !important;

        line-height: 1.2 !important;

        text-align: center !important;
    }


    /* =====================================================
       PLAYER
       ===================================================== */

    .fksplash-player {

        width: 100% !important;

        margin-top: 9px !important;

        padding:
            8px 9px !important;

        border-radius: 15px !important;
    }


    .fksplash-wave {

        width: 100% !important;

        height: 48px !important;
        min-height: 48px !important;

        margin:
            0 0 4px !important;
    }


    .fksplash-controls {

        width: 100% !important;

        gap: 8px !important;

        direction: ltr !important;

        justify-content: flex-start !important;

        align-items: center !important;
    }


    .fksplash-play {

        width: 44px !important;
        height: 44px !important;

        flex:
            0 0 44px !important;
    }


    .fksplash-time {

        min-width: 43px !important;

        font-size: 10px !important;
    }


    .fksplash-progress {

        height: 6px !important;
    }


    /* =====================================================
       NOTE / HOME
       ===================================================== */

    .fksplash-note {

        margin-top: 5px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;
    }


    .fksplash-home {

        margin-top: 5px !important;

        padding:
            6px 13px !important;

        font-size: 10px !important;

        line-height: 1.2 !important;
    }
}


/* =========================================================
   SHORT MOBILE SCREENS
   ========================================================= */

@media screen and (max-width: 800px)
       and (max-height: 700px) {

    .fksplash-box {

        padding:
            20px 10px 7px !important;
    }


    .fksplash-cover-area {

        width:
            min(
                58vw,
                205px,
                calc(100dvh - 345px)
            ) !important;

        height:
            min(
                58vw,
                205px,
                calc(100dvh - 345px)
            ) !important;

        margin-bottom: 5px !important;
    }


    .fksplash-title {

        font-size: 25px !important;
    }


    .fksplash-player {

        margin-top: 6px !important;

        padding:
            6px 8px !important;
    }


    .fksplash-wave {

        height: 40px !important;
        min-height: 40px !important;
    }


    .fksplash-play {

        width: 40px !important;
        height: 40px !important;

        flex-basis: 40px !important;
    }


    .fksplash-note {

        margin-top: 3px !important;
    }


    .fksplash-home {

        margin-top: 3px !important;

        padding:
            5px 11px !important;
    }
}


/* =========================================================
   VERY SHORT PHONES
   ========================================================= */

@media screen and (max-width: 800px)
       and (max-height: 600px) {

    .fksplash-box {

        padding-top: 12px !important;
    }


    .fksplash-cover-area {

        width:
            min(
                52vw,
                175px,
                calc(100dvh - 325px)
            ) !important;

        height:
            min(
                52vw,
                175px,
                calc(100dvh - 325px)
            ) !important;
    }


    .fksplash-title {

        font-size: 23px !important;
    }


    .fksplash-player {

        margin-top: 4px !important;
    }


    .fksplash-wave {

        height: 34px !important;
        min-height: 34px !important;
    }
}
/* =========================================================
   FARSKIDS SPLASH - FINAL MOBILE NO SCROLL
   فقط اصلاح اندازه و ارتفاع موبایل
   ========================================================= */

@media screen and (max-width: 800px) {

    #fksplash {

        position: fixed !important;

        inset: 0 !important;

        width: 100vw !important;
        height: 100dvh !important;

        min-height: 0 !important;
        max-height: 100dvh !important;

        padding: 0 !important;

        overflow: hidden !important;

        display: none !important;

        align-items: center !important;
        justify-content: center !important;
    }


    #fksplash.is-visible {

        display: flex !important;
    }


    /*
     * خود باکس دیگر Scroll ندارد
     */

    .fksplash-box {

        width: 100vw !important;

        max-width: 100vw !important;

        height: 100dvh !important;

        max-height: 100dvh !important;

        min-height: 0 !important;

        margin: 0 !important;

        border-radius: 0 !important;

        overflow: hidden !important;

        padding:
            22px 12px 10px !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        justify-content: center !important;

        gap: 0 !important;
    }


    /*
     * ارتفاع کاور بر اساس ارتفاع واقعی صفحه
     */

    .fksplash-cover-area {

        width:
            min(
                68vw,
                240px,
                36dvh
            ) !important;

        height:
            min(
                68vw,
                240px,
                36dvh
            ) !important;

        flex:
            0 0 auto !important;

        margin:
            0 auto 8px !important;

        flex-shrink: 0 !important;
    }


    /*
     * محتوا اجازه خروج از صفحه ندارد
     */

    .fksplash-content {

        width: 100% !important;

        min-width: 0 !important;
        min-height: 0 !important;

        flex:
            0 1 auto !important;

        flex-shrink: 1 !important;

        overflow: hidden !important;

        text-align: center !important;
    }


    /*
     * کاور
     */

    .fksplash-cover {

        width: 70% !important;
        height: 70% !important;
    }


    /*
     * حلقه دایره‌ای
     */

    .fksplash-cover-ring {

        width: 81% !important;
        height: 81% !important;

        border-radius: 50% !important;
    }


    /*
     * Canvas
     */

    .fksplash-cover-wave {

        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        pointer-events: none !important;

        overflow: visible !important;
    }


    /*
     * متن‌ها فقط کمی فشرده می‌شوند
     * تا طراحی اصلی حفظ شود
     */

    .fksplash-brand {

        margin-bottom: 4px !important;
    }


    .fksplash-artist {

        margin-bottom: 1px !important;
    }


    .fksplash-title {

        font-size: 30px !important;

        line-height: 1.15 !important;
    }


    .fksplash-english {

        margin-top: 3px !important;
    }


    /*
     * پلیر
     */

    .fksplash-player {

        margin-top: 9px !important;

        width: 100% !important;

        flex-shrink: 1 !important;
    }


    .fksplash-wave {

        height: 48px !important;

        min-height: 48px !important;
    }


    /*
     * دکمه و کنترل‌ها
     */

    .fksplash-controls {

        flex-shrink: 0 !important;
    }


    /*
     * پایین Splash
     */

    .fksplash-note {

        margin-top: 5px !important;

        line-height: 1.2 !important;
    }


    .fksplash-home {

        margin-top: 5px !important;

        flex-shrink: 0 !important;
    }
}


/* =========================================================
   گوشی‌های کوتاه
   ========================================================= */

@media screen and (max-width: 800px)
       and (max-height: 700px) {

    .fksplash-box {

        padding:
            14px 10px 7px !important;
    }


    .fksplash-cover-area {

        width:
            min(
                55vw,
                195px,
                31dvh
            ) !important;

        height:
            min(
                55vw,
                195px,
                31dvh
            ) !important;

        margin-bottom: 5px !important;
    }


    .fksplash-title {

        font-size: 26px !important;
    }


    .fksplash-player {

        margin-top: 6px !important;

        padding:
            7px 8px !important;
    }


    .fksplash-wave {

        height: 40px !important;

        min-height: 40px !important;
    }


    .fksplash-play {

        width: 42px !important;
        height: 42px !important;

        flex-basis: 42px !important;
    }


    .fksplash-note {

        margin-top: 3px !important;
    }


    .fksplash-home {

        margin-top: 3px !important;

        padding:
            5px 11px !important;
    }
}


/* =========================================================
   گوشی خیلی کوتاه
   ========================================================= */

@media screen and (max-width: 800px)
       and (max-height: 600px) {

    .fksplash-box {

        padding-top: 8px !important;
    }


    .fksplash-cover-area {

        width:
            min(
                48vw,
                165px,
                28dvh
            ) !important;

        height:
            min(
                48vw,
                165px,
                28dvh
            ) !important;
    }


    .fksplash-title {

        font-size: 23px !important;
    }


    .fksplash-player {

        margin-top: 4px !important;
    }


    .fksplash-wave {

        height: 34px !important;

        min-height: 34px !important;
    }
}
/* =========================================================
   MOBILE FIX — NO SCROLL
   فقط فیکس کردن پاپ‌آپ روی صفحه موبایل
   ========================================================= */

@media (max-width: 767px) {

    html.fksplash-open,
    body:has(#fksplash.is-visible) {
        overflow: hidden !important;
        height: 100% !important;
        max-height: 100% !important;
        overscroll-behavior: none !important;
    }

    #fksplash {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        max-height: 100dvh !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #fksplash .fksplash-backdrop {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }

    #fksplash .fksplash-box {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100dvh !important;
        min-height: 100dvh !important;
        max-height: 100dvh !important;
        margin: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    #fksplash .fksplash-content {
        max-height: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

}
/* =========================================================
   FARSKIDS SPLASH - SOFT BLURRED BACKGROUND
   فقط پس زمینه
   ========================================================= */

#fksplash .fksplash-cover-bg {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

    filter: blur(18px) !important;

    transform: scale(1.08) !important;

    opacity: 0.42 !important;
}


/* لایه ملایم برای خوانایی سایت و حفظ حس تصویر */

#fksplash::before {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background:
        rgba(0, 0, 0, 0.32) !important;

    pointer-events: none !important;

    z-index: 1 !important;
}


/* مطمئن می‌شویم المان‌های اصلی روی پس‌زمینه بمانند */

#fksplash > * {
    position: relative;
    z-index: 2;
}
/* =========================================================
   FARSKIDS SPLASH - LYRICS
   ========================================================= */

#fksplash .fksplash-lyrics {

    width: 100%;

    height: 72px;

    margin-top: 10px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    overflow: hidden;

    pointer-events: none;

    opacity: 0;

    transition:
        opacity .3s ease,
        transform .3s ease;
}


#fksplash .fksplash-lyrics.has-lyrics {

    opacity: 1;
}


#fksplash .fksplash-lyrics-line {

    width: 100%;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    line-height: 1.7;

    transition:
        opacity .3s ease,
        transform .3s ease,
        filter .3s ease;
}


#fksplash .fksplash-lyrics-prev {

    font-size: 11px;

    opacity: .25;

    transform: translateY(4px);
}


#fksplash .fksplash-lyrics-current {

    font-size: 16px;

    font-weight: 800;

    opacity: 1;

    transform: scale(1);

    filter: none;

    color: #fff;

    text-shadow:
        0 0 15px
        var(--fks-glow, rgba(255,23,68,.45));
}


#fksplash .fksplash-lyrics-next {

    font-size: 11px;

    opacity: .25;

    transform: translateY(-4px);
}


#fksplash .fksplash-lyrics.lyrics-change
.fksplash-lyrics-current {

    animation:
        fksplashLyricsIn
        .35s ease;
}


@keyframes fksplashLyricsIn {

    0% {

        opacity: .2;

        transform:
            translateY(8px)
            scale(.96);
    }

    100% {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    #fksplash .fksplash-lyrics {

        height: 56px;

        margin-top: 6px;

    }


    #fksplash .fksplash-lyrics-current {

        font-size: 14px;

    }


    #fksplash .fksplash-lyrics-prev,
    #fksplash .fksplash-lyrics-next {

        font-size: 10px;

    }

}


@media (max-height: 700px) and (max-width: 800px) {

    #fksplash .fksplash-lyrics {

        height: 46px;

        margin-top: 3px;

    }


    #fksplash .fksplash-lyrics-current {

        font-size: 12px;

    }


    #fksplash .fksplash-lyrics-prev,
    #fksplash .fksplash-lyrics-next {

        display: none;

    }

}