/* =====================================================
   ON AIR بالعَافِية
   CINEMATIC LANDING PAGE
===================================================== */


/* =====================================================
   ROOT
===================================================== */

:root {

    --navy: #0B1824;

    --teal: #4E8484;

    --cream: #F3DFC2;

    --beige: #D8C8B5;

    --gray: #686A6A;

    --red: #D92832;

    --dark: #010A13;

    --dark-2: #07121B;

    --grid: rgba(91, 123, 128, 0.10);

    --gold-line: rgba(216, 200, 181, 0.72);

    --transition-fast: .25s ease;

    --transition-medium: .5s ease;

    --transition-slow: .9s ease;
}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


html,
body {

    width: 100%;

    height: 100%;

    min-height: 100%;

    overflow: hidden;
}


html {

    background: var(--dark);

    scroll-behavior: smooth;
}


body {

    background: var(--dark);

    color: var(--cream);

    font-family: "Cairo", sans-serif;

    overflow: hidden;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;

    cursor: default;
}


/* =====================================================
   WEBSITE
===================================================== */

#website {

    position: relative;

    width: 100%;

    height: 100dvh;

    min-height: 100dvh;

    overflow: hidden;

    background: var(--dark);
}


/* =====================================================
   LOADER
===================================================== */

#loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    width: 100%;

    height: 100dvh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: var(--dark);

    transition:
        opacity .8s ease,
        visibility .8s ease;
}


#loader.hidden {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


.loader-logo {

    direction: ltr;

    color: var(--cream);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(50px, 9vw, 120px);

    font-weight: 800;

    line-height: .8;

    letter-spacing: -.07em;
}


.loader-line {

    width:
        clamp(100px, 12vw, 150px);

    height: 1px;

    margin:
        30px 0 18px;

    background: var(--teal);

    transform-origin: left;

    animation:
        loaderLine 1.5s infinite;
}


.loader-status {

    direction: ltr;

    color: var(--beige);

    font-family:
        "Space Mono",
        monospace;

    font-size: 9px;

    letter-spacing: .25em;
}


@keyframes loaderLine {

    0% {

        transform: scaleX(0);

        opacity: .3;
    }

    50% {

        transform: scaleX(1);

        opacity: 1;
    }

    100% {

        transform: scaleX(0);

        opacity: .3;
    }
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height:
        clamp(70px, 10.7vh, 110px);

    z-index: 100;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 clamp(28px, 5.3vw, 82px);

    border-bottom:
        1px solid var(--gold-line);

    background:
        rgba(3, 12, 20, .48);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);
}


/* =====================================================
   REC
===================================================== */

.rec {

    display: flex;

    align-items: center;

    gap: 14px;

    direction: ltr;

    color: var(--cream);

    font-family:
        "Space Mono",
        monospace;

    font-size:
        clamp(11px, 1.1vw, 17px);

    letter-spacing: .16em;
}


.rec-dot {

    width:
        clamp(9px, 1vw, 16px);

    height:
        clamp(9px, 1vw, 16px);

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 10px
        rgba(217, 40, 50, .28);

    animation:
        recBlink 1.3s infinite;
}


@keyframes recBlink {

    0%,
    45% {

        opacity: 1;

        transform: scale(1);
    }

    50%,
    100% {

        opacity: .45;

        transform: scale(.82);
    }
}


/* =====================================================
   TECHNICAL INFO
===================================================== */

.technical-info {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap:
        clamp(12px, 1.7vw, 25px);

    direction: ltr;

    color: var(--beige);

    font-family:
        "Space Mono",
        monospace;

    font-size:
        clamp(9px, .9vw, 14px);

    letter-spacing: .18em;

    white-space: nowrap;
}


.technical-info .separator {

    color: var(--gray);
}


/* =====================================================
   LANGUAGE
===================================================== */

.language {

    display: flex;

    align-items: center;

    gap:
        clamp(7px, .8vw, 13px);

    direction: ltr;
}


.language button {

    border: none;

    outline: none;

    background: transparent;

    color: var(--cream);

    font-family:
        "Space Mono",
        monospace;

    font-size:
        clamp(10px, 1.1vw, 17px);

    letter-spacing: .12em;

    cursor: pointer;

    transition:
        color var(--transition-fast);
}


.language button.active {

    color: var(--teal);
}


.language button:hover {

    color: var(--teal);
}


.language span {

    color: var(--cream);

    font-family:
        "Space Mono",
        monospace;

    font-size:
        clamp(10px, 1vw, 16px);
}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    width: 100%;

    height: 100dvh;

    min-height: 100dvh;

    overflow: hidden;

    display: flex;

    justify-content: center;

    align-items: center;

    isolation: isolate;
}


/* =====================================================
   BACKGROUND
===================================================== */

.hero-background {

    position: absolute;

    inset: -15px;

    z-index: -5;

    background:

        radial-gradient(
            ellipse 55% 45% at 34% 64%,
            rgba(61, 112, 112, .34),
            transparent 65%
        ),

        radial-gradient(
            ellipse 70% 65% at 52% 43%,
            rgba(15, 38, 51, .55),
            transparent 70%
        ),

        linear-gradient(
            135deg,
            #010A13 0%,
            #07121B 45%,
            #061019 100%
        );

    transition:
        transform 1s ease-out;
}


/* =====================================================
   CINEMATIC GRID
===================================================== */

.hero::before {

    content: "";

    position: absolute;

    inset:
        clamp(105px, 14vh, 145px)
        clamp(45px, 7vw, 110px)
        clamp(135px, 16vh, 165px);

    z-index: -2;

    background-image:

        linear-gradient(
            var(--grid) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--grid) 1px,
            transparent 1px
        );

    background-size:
        clamp(26px, 2.1vw, 34px)
        clamp(26px, 2.1vw, 34px);

    opacity: .58;

    pointer-events: none;
}


/* =====================================================
   VIGNETTE
===================================================== */

.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:

        radial-gradient(
            ellipse at center,
            transparent 35%,
            rgba(0, 0, 0, .45) 100%
        );
}


/* =====================================================
   CAMERA CORNERS
===================================================== */

.camera-corner {

    position: absolute;

    width:
        clamp(42px, 4.2vw, 64px);

    height:
        clamp(42px, 4.2vw, 64px);

    z-index: 10;

    pointer-events: none;
}


.camera-corner::before,
.camera-corner::after {

    content: "";

    position: absolute;

    background: var(--gold-line);
}


.camera-corner::before {

    width: 100%;

    height: 1px;
}


.camera-corner::after {

    width: 1px;

    height: 100%;
}


/* TOP LEFT */

.camera-corner.top-left {

    top:
        clamp(125px, 17vh, 175px);

    left:
        clamp(28px, 3.8vw, 58px);
}


.camera-corner.top-left::before {

    top: 0;

    left: 0;
}


.camera-corner.top-left::after {

    top: 0;

    left: 0;
}


/* TOP RIGHT */

.camera-corner.top-right {

    top:
        clamp(125px, 17vh, 175px);

    right:
        clamp(28px, 3.8vw, 58px);
}


.camera-corner.top-right::before {

    top: 0;

    right: 0;
}


.camera-corner.top-right::after {

    top: 0;

    right: 0;
}


/* BOTTOM LEFT */

.camera-corner.bottom-left {

    bottom:
        clamp(55px, 7vh, 80px);

    left:
        clamp(28px, 3.8vw, 58px);
}


.camera-corner.bottom-left::before {

    bottom: 0;

    left: 0;
}


.camera-corner.bottom-left::after {

    bottom: 0;

    left: 0;
}


/* BOTTOM RIGHT */

.camera-corner.bottom-right {

    bottom:
        clamp(55px, 7vh, 80px);

    right:
        clamp(28px, 3.8vw, 58px);
}


.camera-corner.bottom-right::before {

    bottom: 0;

    right: 0;
}


.camera-corner.bottom-right::after {

    bottom: 0;

    right: 0;
}


/* =====================================================
   CROSS MARKS
===================================================== */

.cross {

    position: absolute;

    width: 20px;

    height: 20px;

    z-index: 5;
}


.cross::before,
.cross::after {

    content: "";

    position: absolute;

    background: var(--gold-line);
}


.cross::before {

    width: 20px;

    height: 1px;

    top: 10px;

    left: 0;
}


.cross::after {

    width: 1px;

    height: 20px;

    left: 10px;

    top: 0;
}


.cross-left {

    left: 6.5%;

    top: 58%;
}


.cross-right {

    right: 6.5%;

    top: 58%;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 20;

    width: 100%;

    max-width: 1150px;

    height: calc(
        100dvh -
        clamp(70px, 10.7vh, 110px)
    );

    margin-top:
        clamp(70px, 10.7vh, 110px);

    padding: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    animation:
        heroReveal 1.2s
        cubic-bezier(.22, 1, .36, 1);
}


@keyframes heroReveal {

    from {

        opacity: 0;

        transform:
            translateY(25px)
            scale(.985);
    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =====================================================
   EYEBROW
===================================================== */

.eyebrow {

    margin-bottom:
        clamp(18px, 3vh, 30px);

    direction: ltr;

    color: var(--beige);

    font-family:
        "Space Mono",
        monospace;

    font-size:
        clamp(8px, .9vw, 14px);

    font-weight: 400;

    letter-spacing:
        clamp(.18em, .38em, .38em);

    line-height: 1.5;

    text-transform: uppercase;
}


/* =====================================================
   TEAM LOGO
===================================================== */

.team-logo {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    user-select: none;
}


/* =====================================================
   ON AIR
===================================================== */

.english-logo {

    direction: ltr;

    display: flex;

    align-items: center;

    justify-content: center;
}


.on-air {

    color: var(--cream);

    font-family:
        Arial Black,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(90px, 13vw, 205px);

    font-weight: 900;

    line-height: .78;

    letter-spacing:
        -.085em;

    white-space: nowrap;

    text-shadow:
        0 1px 0 rgba(255,255,255,.08),
        0 8px 35px rgba(0,0,0,.18);
}


/* =====================================================
   ARABIC LOGO
===================================================== */

.arabic-logo {

    margin-top:
        clamp(20px, 3.5vh, 36px);

    direction: rtl;

    color: var(--teal);

    font-family:
        "Tajawal",
        "Cairo",
        sans-serif;

    font-size:
        clamp(48px, 6.1vw, 94px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: 0;

    text-shadow:
        0 0 35px
        rgba(78, 132, 132, .16);
}


/* =====================================================
   SMALL LINE
===================================================== */

.small-line {

    width:
        clamp(35px, 3.3vw, 50px);

    height: 1px;

    margin-top:
        clamp(18px, 3vh, 30px);

    background: var(--beige);

    opacity: .75;
}


/* =====================================================
   TEAM STATEMENT
===================================================== */

.hero-description {

    margin-top:
        clamp(17px, 2.7vh, 28px);

    display: flex;

    flex-direction: column;

    gap: 4px;

    direction: ltr;

    color: var(--beige);

    font-family:
        "Space Mono",
        monospace;

    font-size:
        clamp(11px, 1.3vw, 20px);

    font-weight: 400;

    line-height: 1.45;

    letter-spacing:
        clamp(.03em, .07em, .07em);
}


.hero-description span:first-child {

    color: var(--cream);
}


/* =====================================================
   FINAL STATEMENT
===================================================== */

.final-statement {

    margin-top:
        clamp(25px, 4vh, 42px);

    direction: rtl;

    color: var(--beige);

    font-family:
        "Cairo",
        sans-serif;

    font-size:
        clamp(13px, 1.4vw, 21px);

    font-weight: 400;

    letter-spacing: .02em;

    opacity: .92;
}


/* =====================================================
   CLICK FEEDBACK
===================================================== */

.hero.click-effect .hero-content {

    animation:
        cinematicClick .6s
        cubic-bezier(.22, 1, .36, 1);
}


@keyframes cinematicClick {

    0% {

        transform: scale(1);
    }

    45% {

        transform: scale(.985);
    }

    100% {

        transform: scale(1);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .top-bar {

        height: 82px;

        padding:
            0 30px;
    }


    .technical-info {

        gap: 10px;

        font-size: 9px;
    }


    .hero::before {

        inset:
            105px
            30px
            70px;

        background-size:
            27px 27px;
    }


    .camera-corner {

        width: 42px;

        height: 42px;
    }


    .camera-corner.top-left,
    .camera-corner.top-right {

        top: 120px;
    }


    .camera-corner.bottom-left,
    .camera-corner.bottom-right {

        bottom: 45px;
    }


    .on-air {

        font-size: 16vw;
    }


    .arabic-logo {

        font-size: 8vw;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    html,
    body {

        width: 100%;

        height: 100%;

        overflow: hidden;
    }


    #website {

        height: 100dvh;

        min-height: 100dvh;
    }


    /* TOP BAR */

    .top-bar {

        height: 64px;

        padding:
            0 18px;

        background:
            rgba(3, 12, 20, .55);
    }


    .rec {

        gap: 8px;

        font-size: 10px;

        letter-spacing: .12em;
    }


    .rec-dot {

        width: 8px;

        height: 8px;
    }


    .technical-info {

        display: none;
    }


    .language {

        gap: 6px;
    }


    .language button {

        font-size: 10px;
    }


    .language span {

        font-size: 10px;
    }


    /* HERO */

    .hero {

        height: 100dvh;

        min-height: 100dvh;

        width: 100%;
    }


    .hero::before {

        inset:
            64px
            0
            0;

        background-size:
            24px 24px;

        opacity: .42;
    }


    /* CAMERA CORNERS */

    .camera-corner {

        width: 32px;

        height: 32px;
    }


    .camera-corner.top-left,
    .camera-corner.top-right {

        top: 92px;
    }


    .camera-corner.bottom-left,
    .camera-corner.bottom-right {

        bottom: 30px;
    }


    /* CENTER MARKS */

    .cross-left {

        left: 7%;

        top: 55%;
    }


    .cross-right {

        right: 7%;

        top: 55%;
    }


    /* LOGO */

    .on-air {

        font-size:
            clamp(58px, 18vw, 105px);

        letter-spacing:
            -.08em;
    }


    .arabic-logo {

        margin-top: 22px;

        font-size:
            clamp(37px, 11vw, 70px);
    }


    /* EYEBROW */

    .eyebrow {

        margin-bottom: 22px;

        font-size: 8px;

        letter-spacing: .22em;
    }


    /* LINE */

    .small-line {

        margin-top: 20px;

        width: 38px;
    }


    /* DESCRIPTION */

    .hero-description {

        margin-top: 20px;

        font-size: 12px;

        gap: 3px;
    }


    /* FINAL STATEMENT */

    .final-statement {

        margin-top: 27px;

        font-size: 13px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .on-air {

        font-size: 17vw;
    }


    .arabic-logo {

        font-size: 10vw;
    }


    .hero-description {

        font-size: 11px;
    }


    .final-statement {

        font-size: 12px;
    }
} /* =====================================================
   CAMERA TRANSITION
===================================================== */

.camera-flash {

    position: fixed;

    inset: 0;

    z-index: 99999;

    background: #ffffff;

    opacity: 0;

    pointer-events: none;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        opacity .12s ease;

}


/* FLASH */

.camera-flash.active {

    opacity: 1;

}


/* FADE AFTER FLASH */

.camera-flash.fade {

    opacity: 0;

    transition:
        opacity .45s ease;

}


/* CAMERA FOCUS FRAME */

.camera-focus-frame {

    position: absolute;

    width: 150px;

    height: 100px;

    border: 2px solid rgba(11, 24, 36, .75);

    opacity: 0;

    transform:
        scale(1.35);

    transition:
        opacity .12s ease,
        transform .12s ease;

}


.camera-flash.active
.camera-focus-frame {

    opacity: 1;

    transform:
        scale(1);

}


/* FRAME CAPTURED */

.camera-flash-text {

    position: absolute;

    bottom: 12%;

    color: #0B1824;

    font-family:
        "Space Mono",
        monospace;

    font-size: 10px;

    letter-spacing: .28em;

    opacity: 0;

    transition:
        opacity .2s ease;

}


.camera-flash.active
.camera-flash-text {

    opacity: .65;

}


/* CAMERA SHAKE */

@keyframes cameraShake {

    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-3px, 2px);
    }

    40% {
        transform: translate(3px, -2px);
    }

    60% {
        transform: translate(-2px, -1px);
    }

    80% {
        transform: translate(2px, 1px);
    }

    100% {
        transform: translate(0, 0);
    }

}


body.camera-shake {

    animation:
        cameraShake .18s ease;
}


/* PAGE LEAVING */

body.page-transition-out {

    animation:
        pageTransitionOut .38s ease forwards;

}


@keyframes pageTransitionOut {

    from {

        opacity: 1;

        transform:
            scale(1);

    }

    to {

        opacity: 0;

        transform:
            scale(1.025);

    }

}


/* MOBILE */

@media (max-width: 700px) {

    .camera-focus-frame {

        width: 110px;

        height: 75px;

    }


    .camera-flash-text {

        font-size: 8px;

        bottom: 14%;

    }

}/* =========================================
   TEAM STATEMENT
========================================= */

.team-statement {
    width: min(90%, 1100px);
    margin: 90px auto 120px;
    padding: 55px 48px;
    border: 1px solid rgba(239, 229, 211, 0.28);
    background: rgba(13, 28, 45, 0.55);
    position: relative;
    overflow: hidden;
}

.statement-label {
    font-family: monospace;
    font-size: 13px;
    letter-spacing: 5px;
    color: #c9b18d;
    margin-bottom: 45px;
}

.statement-ar {
    display: flex;
    flex-direction: column;
    gap: 2px;

    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.15;
    font-weight: 400;

    color: #f2eadf;
}

.statement-ar span:nth-child(2) {
    color: #65a5a4;
}

.statement-en {
    display: flex;
    flex-direction: column;
    gap: 3px;

    margin-top: 38px;

    font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(25px, 3vw, 45px);
    letter-spacing: 3px;

    color: #f2eadf;
}

.statement-en span:nth-child(2) {
    color: #c9b18d;
}

.statement-line {
    width: 100%;
    height: 1px;
    background: rgba(239, 229, 211, 0.25);
    margin-top: 45px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .team-statement {
        width: 88%;
        margin: 60px auto 80px;
        padding: 35px 25px;
    }

    .statement-label {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }

    .statement-ar {
        font-size: 43px;
    }

    .statement-en {
        font-size: 23px;
        letter-spacing: 2px;
        margin-top: 30px;
    }

    .statement-line {
        margin-top: 30px;
    }

}
/* =========================================================
   ON AIR بِالعَافيَه
   CINEMATIC INTRO LOGO REVEAL
   ========================================================= */

.intro-animation {
    position: relative;
    z-index: 20;

    width: min(900px, 92vw);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    direction: ltr;

    perspective: 1000px;
}


/* =========================================================
   SIGNAL
   ========================================================= */

.intro-signal {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 30px;

    color: var(--beige);

    font-family: "Space Mono", monospace;
    font-size: 9px;
    letter-spacing: .28em;

    opacity: 0;
    transform: translateY(14px);

    animation:
        signalReveal .7s
        cubic-bezier(.2,.8,.2,1)
        .2s forwards;
}

.signal-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--teal);

    box-shadow:
        0 0 12px rgba(78,132,132,.8);

    animation:
        signalPulse 1.2s infinite;
}

@keyframes signalReveal {
    to {
        opacity: .75;
        transform: translateY(0);
    }
}

@keyframes signalPulse {
    0%,100% {
        opacity: .35;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


/* =========================================================
   LOGO
   ========================================================= */

.animated-logo {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: min(700px, 90vw);
    min-height: 190px;
}


/* =========================================================
   ON AIR
   ========================================================= */

.logo-english {
    display: flex;
    align-items: center;
    justify-content: center;

    line-height: .8;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(70px, 11vw, 145px);

    font-weight: 800;

    letter-spacing: -.085em;

    color: var(--cream);

    white-space: nowrap;
}

.logo-letter {
    display: inline-block;

    opacity: 0;

    filter: blur(10px);

    will-change:
        transform,
        opacity,
        filter;
}


/* الحروف تدخل من أماكن مختلفة */

.letter-o {
    transform:
        translate(-90px,-55px)
        rotate(-14deg)
        scale(.7);

    animation:
        letterReveal .9s
        cubic-bezier(.16,1,.3,1)
        .55s forwards;
}

.letter-n {
    transform:
        translate(-55px,65px)
        rotate(10deg)
        scale(.65);

    animation:
        letterReveal .9s
        cubic-bezier(.16,1,.3,1)
        .67s forwards;
}

.letter-a {
    transform:
        translate(55px,-70px)
        rotate(12deg)
        scale(.65);

    animation:
        letterReveal .9s
        cubic-bezier(.16,1,.3,1)
        .79s forwards;
}

.letter-i {
    transform:
        translate(35px,55px)
        rotate(-10deg)
        scale(.7);

    animation:
        letterReveal .9s
        cubic-bezier(.16,1,.3,1)
        .91s forwards;
}

.letter-r {
    transform:
        translate(95px,-35px)
        rotate(16deg)
        scale(.65);

    animation:
        letterReveal .9s
        cubic-bezier(.16,1,.3,1)
        1.03s forwards;
}

@keyframes letterReveal {
    to {
        opacity: 1;

        filter: blur(0);

        transform:
            translate(0)
            rotate(0)
            scale(1);
    }
}


/* =========================================================
   بِالعَافيَه
   ========================================================= */

.logo-arabic {
    position: relative;

    margin-top: 20px;

    color: var(--teal);

    font-family: "Cairo", sans-serif;

    font-size:
        clamp(25px,3.3vw,48px);

    font-weight: 600;

    letter-spacing: .02em;

    opacity: 0;

    transform:
        translateY(25px)
        scale(.85);

    filter: blur(8px);

    animation:
        arabicReveal 1s
        cubic-bezier(.16,1,.3,1)
        1.45s forwards;
}

@keyframes arabicReveal {
    to {
        opacity: 1;

        filter: blur(0);

        transform:
            translateY(0)
            scale(1);
    }
}


/* خطوط جانبية للاسم */

.logo-arabic::before,
.logo-arabic::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 45px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--teal)
        );

    opacity: .55;
}

.logo-arabic::before {
    right: calc(100% + 20px);
}

.logo-arabic::after {
    left: calc(100% + 20px);

    transform: rotate(180deg);
}


/* =========================================================
   UNDERLINE
   ========================================================= */

.logo-rule {
    position: relative;

    width: 0;
    height: 1px;

    margin-top: 17px;

    background: var(--gold-line);

    animation:
        ruleReveal .8s
        ease
        1.85s forwards;
}

.logo-rule span {
    position: absolute;

    right: 0;
    top: -2px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--teal);

    box-shadow:
        0 0 12px rgba(78,132,132,.7);
}

@keyframes ruleReveal {
    to {
        width: 180px;
    }
}


/* =========================================================
   TRACKING POINTS
   ========================================================= */

.track-point {
    position: absolute;

    width: 5px;
    height: 5px;

    border: 1px solid var(--teal);

    opacity: 0;

    transform: scale(0);

    animation:
        trackAppear .6s
        ease
        1.55s forwards;
}

.track-point::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 13px;
    height: 13px;

    border:
        1px solid
        rgba(78,132,132,.25);

    transform:
        translate(-50%,-50%);
}

.point-1 {
    top: 15px;
    left: 18%;
}

.point-2 {
    top: 55px;
    right: 14%;
}

.point-3 {
    bottom: 48px;
    left: 13%;
}

.point-4 {
    bottom: 18px;
    right: 21%;
}

@keyframes trackAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        opacity: .8;
        transform: scale(1.35);
    }

    100% {
        opacity: .45;
        transform: scale(1);
    }
}


/* =========================================================
   TRACKING LINES
   ========================================================= */

.track-line {
    position: absolute;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--teal),
            transparent
        );

    opacity: .35;

    animation:
        trackingLine .8s
        ease
        1.6s forwards;
}

.line-top {
    top: 35px;
    left: 24%;
}

.line-bottom {
    bottom: 30px;
    right: 23%;
}

@keyframes trackingLine {
    to {
        width: 100px;
    }
}


/* =========================================================
   STATEMENT
   ========================================================= */

.intro-statement {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 34px;

    color: var(--beige);

    font-family: "Space Mono", monospace;

    font-size:
        clamp(8px,.8vw,12px);

    letter-spacing: .18em;

    opacity: 0;

    transform: translateY(12px);

    animation:
        statementReveal .8s
        ease
        2.05s forwards;
}

.intro-statement span {
    position: relative;
}

.intro-statement span:not(:last-child)::after {
    content: "•";

    position: absolute;

    right: -11px;

    color: var(--teal);
}

@keyframes statementReveal {
    to {
        opacity: .7;
        transform: translateY(0);
    }
}


/* =========================================================
   ENTER BUTTON
   ========================================================= */

.enter-wrapper {
    margin-top: 34px;

    opacity: 0;

    transform: translateY(18px);

    animation:
        enterReveal .8s
        cubic-bezier(.16,1,.3,1)
        2.35s forwards;
}

@keyframes enterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enter-button {
    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    min-width: 245px;

    padding: 13px 17px 13px 19px;

    border:
        1px solid
        rgba(216,200,181,.48);

    background:
        rgba(3,12,20,.28);

    color: var(--cream);

    cursor: pointer;

    overflow: hidden;

    font-family: "Space Mono", monospace;

    transition:
        border-color .35s ease,
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}

.enter-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 1px;

    background: var(--teal);

    transition: left .6s ease;
}

.enter-button:hover::before {
    left: 120%;
}

.enter-button:hover {
    border-color: var(--teal);

    background:
        rgba(78,132,132,.08);

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.35);
}

.enter-button:active {
    transform: scale(.97);
}


/* =========================================================
   CLAPPERBOARD
   ========================================================= */

.enter-icon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--teal);

    flex-shrink: 0;

    transition:
        transform .35s ease;
}

.enter-icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;

    stroke-linejoin: round;
}

.enter-button:hover .enter-icon {
    transform:
        rotate(-5deg)
        translateY(-2px);
}


/* =========================================================
   ENTER TEXT
   ========================================================= */

.enter-copy {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 3px;

    flex: 1;

    direction: ltr;
}

.enter-main {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: .22em;
}

.enter-sub {
    color: var(--beige);

    font-size: 7px;

    letter-spacing: .15em;

    opacity: .6;
}

.enter-arrow {
    color: var(--teal);

    font-size: 23px;

    transition:
        transform .35s ease;
}

.enter-button:hover .enter-arrow {
    transform:
        translateX(-5px);

    color: var(--cream);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .intro-signal {
        margin-bottom: 22px;

        font-size: 7px;

        letter-spacing: .2em;
    }

    .animated-logo {
        min-height: 145px;
    }

    .logo-english {
        font-size:
            clamp(48px,17vw,85px);
    }

    .logo-arabic {
        margin-top: 14px;

        font-size:
            clamp(20px,6vw,30px);
    }

    .logo-arabic::before,
    .logo-arabic::after {
        width: 25px;
    }

    .logo-arabic::before {
        right: calc(100% + 10px);
    }

    .logo-arabic::after {
        left: calc(100% + 10px);
    }

    .intro-statement {
        gap: 11px;

        font-size: 7px;

        letter-spacing: .12em;
    }

    .intro-statement span:not(:last-child)::after {
        right: -8px;
    }

    .enter-wrapper {
        margin-top: 27px;
    }

    .enter-button {
        min-width: 220px;

        padding: 11px 14px;
    }

    .track-point {
        width: 4px;
        height: 4px;
    }
}
.logo-space {
    display: block;
    width: clamp(18px, 2vw, 32px);
    flex-shrink: 0;
}
/* =========================================================
   ON AIR — CINEMATIC LOGO REVEAL
========================================================= */

.intro-animation {
    position: relative;
    z-index: 20;

    width: min(900px, 92vw);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    direction: ltr;

    perspective: 1200px;
}


/* =========================================================
   SIGNAL DETECTED
========================================================= */

.intro-signal {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 30px;

    color: var(--beige);

    font-family: "Space Mono", monospace;
    font-size: 9px;
    letter-spacing: .28em;

    opacity: 0;
    transform: translateY(14px);

    animation:
        signalReveal .7s
        cubic-bezier(.2,.8,.2,1)
        .25s forwards;
}

.signal-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--teal);

    box-shadow:
        0 0 12px rgba(78,132,132,.8);

    animation:
        signalPulse 1.2s infinite;
}

@keyframes signalReveal {

    to {
        opacity: .75;
        transform: translateY(0);
    }

}

@keyframes signalPulse {

    0%,
    100% {
        opacity: .35;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


/* =========================================================
   LOGO CONTAINER
========================================================= */

.animated-logo {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: min(750px, 90vw);

    min-height: 210px;
}


/* =========================================================
   ON AIR
========================================================= */

.logo-english {
    display: flex;
    align-items: center;
    justify-content: center;

    direction: ltr;

    line-height: .8;

    font-family:
        Arial Black,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        clamp(70px, 11vw, 145px);

    font-weight: 900;

    letter-spacing: -.085em;

    color: var(--cream);

    white-space: nowrap;
}


/* =========================================================
   INDIVIDUAL LETTERS
========================================================= */

.logo-letter {

    display: inline-block;

    opacity: 0;

    filter: blur(12px);

    will-change:
        transform,
        opacity,
        filter;
}


/* O */

.letter-o {

    transform:
        translate(-140px, -90px)
        rotate(-22deg)
        scale(.55);

    animation:
        logoLetterIn .95s
        cubic-bezier(.16,1,.3,1)
        .55s forwards;
}


/* N */

.letter-n {

    transform:
        translate(-100px, 100px)
        rotate(15deg)
        scale(.6);

    animation:
        logoLetterIn .95s
        cubic-bezier(.16,1,.3,1)
        .68s forwards;
}


/* A */

.letter-a {

    transform:
        translate(110px, -100px)
        rotate(18deg)
        scale(.58);

    animation:
        logoLetterIn .95s
        cubic-bezier(.16,1,.3,1)
        .81s forwards;
}


/* I */

.letter-i {

    transform:
        translate(70px, 90px)
        rotate(-15deg)
        scale(.6);

    animation:
        logoLetterIn .95s
        cubic-bezier(.16,1,.3,1)
        .94s forwards;
}


/* R */

.letter-r {

    transform:
        translate(150px, -65px)
        rotate(20deg)
        scale(.55);

    animation:
        logoLetterIn .95s
        cubic-bezier(.16,1,.3,1)
        1.07s forwards;
}


@keyframes logoLetterIn {

    0% {

        opacity: 0;

        filter: blur(14px);

    }

    45% {

        opacity: 1;

    }

    100% {

        opacity: 1;

        filter: blur(0);

        transform:
            translate(0,0)
            rotate(0)
            scale(1);

    }

}


/* =========================================================
   ARABIC TEAM NAME
========================================================= */

.logo-arabic {

    position: relative;

    margin-top: 22px;

    color: var(--teal);

    font-family:
        "Cairo",
        "Tajawal",
        sans-serif;

    font-size:
        clamp(25px, 3.3vw, 48px);

    font-weight: 600;

    letter-spacing: .02em;

    opacity: 0;

    transform:
        translateY(28px)
        scale(.82);

    filter: blur(10px);

    animation:
        arabicLogoIn 1s
        cubic-bezier(.16,1,.3,1)
        1.48s forwards;
}


@keyframes arabicLogoIn {

    to {

        opacity: 1;

        filter: blur(0);

        transform:
            translateY(0)
            scale(1);

    }

}


/* =========================================================
   ARABIC SIDE LINES
========================================================= */

.logo-arabic::before,
.logo-arabic::after {

    content: "";

    position: absolute;

    top: 50%;

    width: 50px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--teal)
        );

    opacity: 0;

    animation:
        sideLineIn .7s ease
        1.75s forwards;
}


.logo-arabic::before {

    right:
        calc(100% + 22px);
}


.logo-arabic::after {

    left:
        calc(100% + 22px);

    transform:
        rotate(180deg);
}


@keyframes sideLineIn {

    from {

        opacity: 0;

        width: 0;

    }

    to {

        opacity: .55;

        width: 50px;

    }

}


/* =========================================================
   UNDERLINE
========================================================= */

.logo-rule {

    position: relative;

    width: 0;

    height: 1px;

    margin-top: 18px;

    background:
        var(--gold-line);

    animation:
        logoRuleIn .8s ease
        1.9s forwards;
}


.logo-rule span {

    position: absolute;

    right: 0;

    top: -2px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background:
        var(--teal);

    box-shadow:
        0 0 12px
        rgba(78,132,132,.8);
}


@keyframes logoRuleIn {

    to {

        width: 180px;

    }

}


/* =========================================================
   TRACKING POINTS
========================================================= */

.track-point {

    position: absolute;

    width: 5px;

    height: 5px;

    border:
        1px solid
        var(--teal);

    opacity: 0;

    transform: scale(0);

    animation:
        trackPointIn .6s ease
        1.55s forwards;
}


.track-point::after {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 14px;
    height: 14px;

    border:
        1px solid
        rgba(78,132,132,.22);

    transform:
        translate(-50%,-50%);
}


.point-1 {

    top: 18px;
    left: 15%;
}


.point-2 {

    top: 60px;
    right: 13%;
}


.point-3 {

    bottom: 50px;
    left: 11%;
}


.point-4 {

    bottom: 20px;
    right: 20%;
}


@keyframes trackPointIn {

    0% {

        opacity: 0;
        transform: scale(0);

    }

    70% {

        opacity: .8;
        transform: scale(1.4);

    }

    100% {

        opacity: .45;
        transform: scale(1);

    }

}


/* =========================================================
   TRACKING LINES
========================================================= */

.track-line {

    position: absolute;

    width: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--teal),
            transparent
        );

    opacity: .35;

    animation:
        trackingLineIn .8s ease
        1.65s forwards;
}


.line-top {

    top: 38px;
    left: 23%;
}


.line-bottom {

    bottom: 32px;
    right: 22%;
}


@keyframes trackingLineIn {

    to {

        width: 105px;

    }

}


/* =========================================================
   TEAM STATEMENT
========================================================= */

.intro-statement {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 34px;

    color: var(--beige);

    font-family:
        "Space Mono",
        monospace;

    font-size:
        clamp(8px,.8vw,12px);

    letter-spacing: .18em;

    opacity: 0;

    transform:
        translateY(12px);

    animation:
        statementIn .8s ease
        2.05s forwards;
}


.intro-statement span {

    position: relative;
}


.intro-statement span:not(:last-child)::after {

    content: "•";

    position: absolute;

    right: -11px;

    color: var(--teal);

}


@keyframes statementIn {

    to {

        opacity: .7;

        transform:
            translateY(0);

    }

}


/* =========================================================
   ENTER BUTTON
========================================================= */

.enter-wrapper {

    margin-top: 34px;

    opacity: 0;

    transform:
        translateY(20px);

    animation:
        enterIn .8s
        cubic-bezier(.16,1,.3,1)
        2.35s forwards;
}


@keyframes enterIn {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.enter-button {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    min-width: 245px;

    padding:
        13px 17px 13px 19px;

    border:
        1px solid
        rgba(216,200,181,.48);

    background:
        rgba(3,12,20,.28);

    color:
        var(--cream);

    cursor: pointer;

    overflow: hidden;

    font-family:
        "Space Mono",
        monospace;

    transition:
        border-color .35s ease,
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


/* moving light */

.enter-button::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 100%;

    height: 1px;

    background:
        var(--teal);

    transition:
        left .6s ease;
}


.enter-button:hover::before {

    left: 120%;

}


.enter-button:hover {

    border-color:
        var(--teal);

    background:
        rgba(78,132,132,.08);

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.35);

}


.enter-button:active {

    transform:
        scale(.97);

}


/* =========================================================
   CLAPPERBOARD ICON
========================================================= */

.enter-icon {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--teal);

    flex-shrink: 0;

    transition:
        transform .35s ease;
}


.enter-icon svg {

    width: 100%;
    height: 100%;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.4;

    stroke-linecap: round;

    stroke-linejoin: round;
}


.enter-button:hover .enter-icon {

    transform:
        rotate(-5deg)
        translateY(-2px);

}


/* =========================================================
   ENTER TEXT
========================================================= */

.enter-copy {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 3px;

    flex: 1;

    direction: ltr;
}


.enter-main {

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .22em;
}


.enter-sub {

    color:
        var(--beige);

    font-size: 7px;

    letter-spacing: .15em;

    opacity: .6;
}


.enter-arrow {

    color:
        var(--teal);

    font-size: 23px;

    transition:
        transform .35s ease;
}


.enter-button:hover .enter-arrow {

    transform:
        translateX(-5px);

    color:
        var(--cream);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .intro-signal {

        margin-bottom: 22px;

        font-size: 7px;

        letter-spacing: .2em;

    }


    .animated-logo {

        min-height: 150px;

    }


    .logo-english {

        font-size:
            clamp(48px,17vw,85px);

    }


    .logo-space {

        width: 14px;

    }


    .logo-arabic {

        margin-top: 14px;

        font-size:
            clamp(20px,6vw,30px);

    }


    .logo-arabic::before,
    .logo-arabic::after {

        width: 25px;

    }


    .logo-arabic::before {

        right:
            calc(100% + 10px);

    }


    .logo-arabic::after {

        left:
            calc(100% + 10px);

    }


    .intro-statement {

        gap: 11px;

        font-size: 7px;

        letter-spacing: .12em;

    }


    .intro-statement span:not(:last-child)::after {

        right: -8px;

    }


    .enter-wrapper {

        margin-top: 27px;

    }


    .enter-button {

        min-width: 220px;

        padding:
            11px 14px;

    }


    .track-point {

        width: 4px;

        height: 4px;

    }

}
/* =========================================================
   WAIT FOR LOADER — START INTRO AFTER LOADING
========================================================= */

/* نوقف كل حركات اللوجو أثناء شاشة التحميل */
body:not(.page-loaded) .intro-animation,
body:not(.page-loaded) .intro-animation * {
    animation-play-state: paused;
}

/* بعد اختفاء الـ loader تبدأ الحركة */
body.page-loaded .intro-animation,
body.page-loaded .intro-animation * {
    animation-play-state: running;
}
/* =========================================================
   FINAL INTRO TEXT
========================================================= */

.intro-statement {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    margin-top: 34px;

    color: var(--cream);

    font-family:
        "Space Mono",
        monospace;

    font-size:
        clamp(8px, .75vw, 12px);

    font-weight: 400;

    line-height: 1.45;

    letter-spacing: .08em;

    direction: ltr;

    opacity: 0;

    transform: translateY(12px);

    animation:
        statementReveal .8s
        ease
        2.05s forwards;
}


.intro-statement span {

    display: block;

    position: relative;

    color: var(--cream);

    opacity: .82;
}


/* السطر التاني */

.intro-statement span:nth-child(2) {

    color: var(--beige);

    opacity: .65;

}


/* إزالة الـ bullets القديمة */

.intro-statement span:not(:last-child)::after {

    display: none;

}


/* =========================================================
   ARABIC FINAL STATEMENT
========================================================= */

.intro-final-statement {

    margin-top: 28px;

    color: var(--beige);

    font-family:
        "Cairo",
        sans-serif;

    font-size:
        clamp(10px, .9vw, 14px);

    font-weight: 400;

    line-height: 1.7;

    letter-spacing: .01em;

    direction: rtl;

    text-align: center;

    opacity: 0;

    transform: translateY(12px);

    animation:
        finalStatementReveal .8s
        cubic-bezier(.16,1,.3,1)
        2.18s forwards;
}


@keyframes finalStatementReveal {

    to {

        opacity: .78;

        transform: translateY(0);

    }

}


/* =========================================================
   ENTER — NO BOX
========================================================= */

.enter-wrapper {

    margin-top: 34px;

    opacity: 0;

    transform: translateY(18px);

    animation:
        enterReveal .8s
        cubic-bezier(.16,1,.3,1)
        2.35s forwards;
}


.enter-button {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 5px 2px;

    min-width: auto;

    border: none;

    outline: none;

    background: transparent;

    color: var(--cream);

    cursor: pointer;

    font-family:
        "Space Mono",
        monospace;

    transition:
        transform .35s ease,
        opacity .35s ease;
}


/* =========================================================
   ENTER ICON
========================================================= */

.enter-icon {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--teal);

    flex-shrink: 0;

    transition:
        transform .4s cubic-bezier(.16,1,.3,1),
        color .3s ease;
}


.enter-icon svg {

    width: 100%;

    height: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.25;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   ENTER TEXT
========================================================= */

.enter-copy {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 1px;

    direction: ltr;

}


.enter-main {

    color: var(--cream);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .28em;

    line-height: 1;
}


.enter-sub {

    color: var(--beige);

    font-size: 5px;

    letter-spacing: .13em;

    line-height: 1.4;

    opacity: .5;
}


/* =========================================================
   ARROW
========================================================= */

.enter-arrow {

    color: var(--teal);

    font-size: 17px;

    line-height: 1;

    opacity: .8;

    transition:
        transform .4s cubic-bezier(.16,1,.3,1),
        color .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.enter-button:hover {

    transform: translateY(-3px);

    opacity: 1;
}


.enter-button:hover .enter-icon {

    transform:
        rotate(-8deg)
        scale(1.08);

    color: var(--cream);
}


.enter-button:hover .enter-arrow {

    transform: translateX(-5px);

    color: var(--cream);
}


.enter-button:active {

    transform: scale(.95);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .intro-statement {

        margin-top: 27px;

        font-size: 7px;

        gap: 3px;

        letter-spacing: .06em;

    }


    .intro-final-statement {

        margin-top: 22px;

        font-size: 10px;

    }


    .enter-wrapper {

        margin-top: 28px;

    }


    .enter-icon {

        width: 21px;

        height: 21px;

    }


    .enter-main {

        font-size: 9px;

        letter-spacing: .23em;

    }


    .enter-sub {

        font-size: 4.5px;

    }


    .enter-arrow {

        font-size: 15px;

    }

}
/* =========================================================
   CINEMATIC CLAPPERBOARD
========================================================= */

.cinematic-clapper {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--teal);

    flex-shrink: 0;

    opacity: .9;

    filter:
        drop-shadow(
            0 0 5px rgba(78,132,132,.18)
        );

    transition:
        transform .4s cubic-bezier(.16,1,.3,1),
        color .3s ease,
        filter .3s ease;
}

.cinematic-clapper svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.25;

    stroke-linecap: round;
    stroke-linejoin: round;

    overflow: visible;
}

.cinematic-clapper .clapper-top {
    fill: rgba(78,132,132,.08);

    transform-origin: 48px 18px;

    transition:
        transform .4s cubic-bezier(.16,1,.3,1);
}

.cinematic-clapper .clapper-play {
    fill: currentColor;
    stroke: none;
    opacity: .8;
}

.cinematic-clapper .focus-corner {
    stroke-width: .9;
    opacity: .3;
}


/* HOVER */

.enter-button:hover .cinematic-clapper {
    color: var(--cream);

    transform:
        translateY(-2px)
        scale(1.08);

    filter:
        drop-shadow(
            0 0 9px rgba(78,132,132,.35)
        );
}

.enter-button:hover
.cinematic-clapper .clapper-top {
    transform:
        rotate(-7deg)
        translate(-1px,-2px);
}


/* MOBILE */

@media (max-width: 600px) {

    .cinematic-clapper {
        width: 27px;
        height: 27px;
    }

}
/* =====================================================
   CINEMATIC ENTER BUTTON
===================================================== */

.enter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 34px;
}


/* BUTTON */

.enter-button {
    appearance: none;
    border: none;
    outline: none;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 6px 4px;

    color: #f3dfc2;

    cursor: pointer;

    font-family: "Space Mono", monospace;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}


/* REMOVE DEFAULT BUTTON EFFECT */

.enter-button:focus {
    outline: none;
}

.enter-button:hover {
    transform: translateY(-2px);
}


/* =====================================================
   CLAPPERBOARD ICON
===================================================== */

.enter-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}


/* SVG */

.enter-icon svg {
    width: 30px;
    height: 30px;

    overflow: visible;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* BODY */

.clapper-body {
    fill: none;

    stroke: #4e8484;

    stroke-width: 1.5;
}


/* TOP */

.clapper-top {
    fill: none;

    stroke: #d8c8b5;

    stroke-width: 1.5;

    stroke-linejoin: round;

    transform-origin: center;
}


/* STRIPES */

.clapper-stripe {
    fill: none;

    stroke: #4e8484;

    stroke-width: 1.4;

    stroke-linecap: round;
}


/* BODY LINES */

.clapper-line {
    stroke: #d8c8b5;

    stroke-width: 1;

    opacity: 0.75;
}


/* DOT */

.clapper-dot {
    fill: #d92832;

    opacity: 0.9;

    filter:
        drop-shadow(0 0 4px rgba(217,40,50,0.45));
}


/* =====================================================
   HOVER — CLAPPER OPENS SLIGHTLY
===================================================== */

.enter-button:hover .enter-icon svg {
    transform: translateY(-1px) scale(1.04);

    filter:
        drop-shadow(0 0 7px rgba(78,132,132,0.28));
}

.enter-button:hover .clapper-top {
    transform:
        rotate(-7deg)
        translate(-1px, -2px);
}


/* =====================================================
   ENTER TEXT
===================================================== */

.enter-copy {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 2px;

    line-height: 1;
}


.enter-main {
    font-family: "Space Mono", monospace;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #f3dfc2;

    transition:
        letter-spacing 0.35s ease,
        color 0.35s ease;
}


.enter-sub {
    font-family: "Space Mono", monospace;

    font-size: 5px;

    letter-spacing: 1.5px;

    color: #7d8584;

    opacity: 0.85;
}


/* =====================================================
   ARROW
===================================================== */

.enter-arrow {
    font-family: "Space Mono", monospace;

    font-size: 15px;

    color: #4e8484;

    margin-left: 2px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}


.enter-button:hover .enter-arrow {
    transform: translateX(5px);

    color: #d8c8b5;
}


.enter-button:hover .enter-main {
    letter-spacing: 4px;

    color: #ffffff;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .enter-wrapper {
        margin-top: 28px;
    }

    .enter-button {
        gap: 11px;
    }

    .enter-icon,
    .enter-icon svg {
        width: 26px;
        height: 26px;
    }

    .enter-main {
        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .enter-sub {
        font-size: 4px;
        letter-spacing: 1px;
    }

    .enter-arrow {
        font-size: 13px;
    }

}