/* =========================================================
   REXUS88 PREMIUM FILM
   PREMIUM NEON CINEMA
========================================================= */

:root {

    --bg: #07070f;
    --bg-soft: #0d0d18;
    --card: rgba(18, 18, 32, .72);

    --cyan: #00f5ff;
    --pink: #ff2bd6;
    --purple: #8b5cff;

    --text: #f7f7fb;
    --muted: #9696aa;

    --border: rgba(255,255,255,.09);

    --container: 1180px;

    --radius: 24px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(0,245,255,.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(255,43,214,.07),
            transparent 30%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        "Inter",
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}

.section {
    padding: 110px 0;
}

h1,
h2,
h3 {

    font-family:
        "Outfit",
        sans-serif;

    line-height: 1.05;

}

h1 {
    font-size: clamp(4rem, 8vw, 7.4rem);
    letter-spacing: -5px;
}

h2 {
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    letter-spacing: -3px;
}

p {
    color: var(--muted);
}


/* =========================================================
   BACKGROUND
========================================================= */

.noise {

    position: fixed;

    inset: 0;

    pointer-events: none;

    opacity: .025;

    z-index: 50;

    background-image:
        url("/rexus88-tanpabatas.png");

}

.neon-orb {

    position: fixed;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .08;

    pointer-events: none;

    z-index: -1;

}

.orb-one {

    background: var(--cyan);

    top: 15%;
    left: -180px;

}

.orb-two {

    background: var(--pink);

    right: -180px;
    bottom: 15%;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 20;

}

.nav-wrapper {

    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    border-bottom: 1px solid var(--border);

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-family: "Outfit", sans-serif;

    font-weight: 800;

    font-size: 20px;

    letter-spacing: -.5px;

}

.logo-mark {

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color: #05050b;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            #8ffaff
        );

    box-shadow:
        0 0 25px rgba(0,245,255,.35);

}

.logo-text span {
    color: var(--pink);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}

.main-nav a {

    position: relative;

    color: #aaaaba;

    font-size: 13px;

    font-weight: 600;

    transition: .3s;

}

.main-nav a:hover,
.main-nav a.active {

    color: white;

}

.main-nav a.active::after {

    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 10px var(--cyan);

    bottom: -12px;

    left: 50%;

    transform: translateX(-50%);

}

.nav-button {

    padding: 11px 18px;

    border: 1px solid rgba(0,245,255,.3);

    border-radius: 10px;

    color: var(--cyan);

    font-size: 12px;

    font-weight: 700;

    transition: .3s;

}

.nav-button:hover {

    background: var(--cyan);

    color: #05050b;

    box-shadow:
        0 0 25px rgba(0,245,255,.25);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 900px;

    padding-top: 150px;
    padding-bottom: 100px;

    display: flex;

    align-items: center;

}

.hero-grid {

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    align-items: center;

    gap: 80px;

}

.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;

}

.pulse {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 14px var(--cyan);

}

.hero h1 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.65);

}

.hero-description {

    max-width: 540px;

    margin-top: 30px;

    font-size: 16px;

    line-height: 1.8;

}

.hero-actions {

    display: flex;

    gap: 13px;

    flex-wrap: wrap;

    margin-top: 35px;

}


/* =========================================================
   BUTTONS
========================================================= */

.button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 0 22px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 800;

    transition: .3s;

}

.button-primary {

    background: var(--cyan);

    color: #05050b;

    box-shadow:
        0 0 30px rgba(0,245,255,.18);

}

.button-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 0 40px rgba(0,245,255,.35);

}

.button-outline {

    border: 1px solid var(--border);

    color: white;

    background: rgba(255,255,255,.025);

}

.button-outline:hover {

    border-color: var(--pink);

    color: var(--pink);

}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {

    display: flex;

    gap: 35px;

    margin-top: 55px;

}

.hero-stats div {

    display: flex;

    flex-direction: column;

    gap: 2px;

}

.hero-stats strong {

    font-family: "Outfit", sans-serif;

    font-size: 23px;

}

.hero-stats span {

    color: #707082;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual {

    position: relative;

    display: flex;

    justify-content: center;

}

.hero-glow {

    position: absolute;

    width: 70%;

    aspect-ratio: 1;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--pink)
        );

    filter: blur(90px);

    opacity: .12;

}

.hero-image-card {

    position: relative;

    width: min(100%, 510px);

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 35px;

    border:
        1px solid rgba(255,255,255,.14);

    box-shadow:
        0 30px 100px rgba(0,0,0,.6);

    transform:
        rotate(2deg);

}

.hero-image-card::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    border-radius: inherit;

    box-shadow:
        inset 0 0 70px rgba(0,245,255,.13);

    pointer-events: none;

}

.hero-image-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        saturate(1.15)
        contrast(1.05);

}

.image-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(4,4,12,.85)
        );

}

.floating-label {

    position: absolute;

    z-index: 5;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 16px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 12px;

    background:
        rgba(5,5,12,.7);

    backdrop-filter:
        blur(15px);

}

.floating-label small {

    display: block;

    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 1.5px;

}

.floating-label strong {

    display: block;

    margin-top: 2px;

    font-family: "Outfit", sans-serif;

    font-size: 13px;

}

.mini-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 12px var(--pink);

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    display: grid;

    grid-template-columns: 1fr 360px;

    align-items: end;

    gap: 50px;

    margin-bottom: 50px;

}

.section-number {

    display: block;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;

}

.section-heading h2 span,
.about h2 span,
.cinema-panel h2 span {

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.55);

}

.section-heading p {

    font-size: 13px;

    line-height: 1.8;

}


/* =========================================================
   MOVIE GRID
========================================================= */

.movie-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}

.movie-card {

    position: relative;

}

.movie-image {

    position: relative;

    aspect-ratio: 1 / 1.18;

    overflow: hidden;

    border-radius: 18px;

    background: var(--bg-soft);

}

.movie-image img {

    height: 100%;

    object-fit: cover;

    transition: .6s;

    filter:
        saturate(.8)
        brightness(.8);

}

.movie-card:hover img {

    transform: scale(1.06);

    filter:
        saturate(1.15)
        brightness(1);

}

.movie-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(0,0,0,.65)
        );

}

.movie-badge {

    position: absolute;

    z-index: 3;

    top: 14px;
    left: 14px;

    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    color: white;

    background:
        rgba(0,0,0,.55);

    backdrop-filter:
        blur(10px);

    font-size: 10px;

    font-weight: 800;

}

.movie-info {

    padding: 17px 3px;

}

.movie-info > span {

    color: var(--cyan);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}

.movie-info h3 {

    margin-top: 7px;

    font-size: 20px;

}

.movie-info p {

    margin-top: 5px;

    font-size: 11px;

}


/* =========================================================
   CINEMA PANEL
========================================================= */

.cinema-panel {

    position: relative;

    min-height: 400px;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 70px;

    border:
        1px solid var(--border);

    border-radius: 30px;

    background:
        linear-gradient(
            120deg,
            rgba(0,245,255,.045),
            rgba(255,43,214,.04)
        );

}

.cinema-panel-content {

    position: relative;

    z-index: 2;

    max-width: 570px;

}

.cinema-panel h2 {

    max-width: 650px;

}

.cinema-panel p {

    max-width: 480px;

    margin-top: 25px;

    font-size: 14px;

    line-height: 1.8;

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    color: white;

    font-size: 12px;

    font-weight: 700;

}

.text-link span {

    color: var(--cyan);

    transition: .3s;

}

.text-link:hover span {

    transform:
        translate(3px,-3px);

}

.cinema-decoration {

    position: absolute;

    right: 5%;

    width: 400px;
    height: 400px;

    display: grid;

    place-items: center;

}

.ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid;

}

.ring-one {

    width: 280px;
    height: 280px;

    border-color:
        rgba(0,245,255,.2);

    box-shadow:
        0 0 70px rgba(0,245,255,.08);

}

.ring-two {

    width: 190px;
    height: 190px;

    border-color:
        rgba(255,43,214,.25);

}

.play-symbol {

    position: relative;

    z-index: 2;

    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    padding-left: 4px;

    border-radius: 50%;

    color: #05050b;

    background: var(--cyan);

    box-shadow:
        0 0 40px rgba(0,245,255,.35);

    font-size: 18px;

}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;

}

.about-copy {

    padding-top: 20px;

}

.about-copy p {

    max-width: 620px;

    margin-bottom: 20px;

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    border-top:
        1px solid var(--border);

    padding-top: 55px;

}

.footer-grid {

    display: flex;

    justify-content: space-between;

    gap: 40px;

    padding-bottom: 50px;

}

.footer-grid p {

    margin-top: 15px;

    font-size: 11px;

}

.footer-links {

    display: flex;

    align-items: center;

    gap: 25px;

}

.footer-links a {

    color: #858597;

    font-size: 11px;

    transition: .3s;

}

.footer-links a:hover {

    color: var(--cyan);

}

.copyright {

    min-height: 65px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top:
        1px solid var(--border);

    color: #555568;

    font-size: 10px;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }

    .hero-content {

        max-width: 700px;

    }

    .hero-visual {

        justify-content: flex-start;

    }

    .movie-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .section-heading {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

}


@media (max-width: 720px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }

    .nav-wrapper {

        min-height: 75px;

    }

    .main-nav {

        display: none;

    }

    .nav-button {

        padding:
            9px 12px;

        font-size: 10px;

    }

    .hero {

        min-height: auto;

        padding-top: 125px;

        padding-bottom: 70px;

    }

    h1 {

        font-size:
            clamp(
                3.3rem,
                17vw,
                5rem
            );

        letter-spacing: -3px;

    }

    .hero-description {

        font-size: 14px;

    }

    .hero-stats {

        gap: 20px;

        flex-wrap: wrap;

    }

    .hero-image-card {

        border-radius: 25px;

    }

    .section {

        padding: 75px 0;

    }

    .movie-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }

    .movie-info h3 {

        font-size: 16px;

    }

    .cinema-panel {

        min-height: 480px;

        padding: 35px;

        align-items: flex-start;

    }

    .cinema-decoration {

        width: 280px;
        height: 280px;

        right: -80px;
        bottom: -70px;

    }

    .ring-one {

        width: 210px;
        height: 210px;

    }

    .ring-two {

        width: 140px;
        height: 140px;

    }

    .footer-grid {

        flex-direction: column;

    }

    .footer-links {

        flex-wrap: wrap;

    }

    .copyright {

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

    }

}


@media (max-width: 430px) {

    .logo-text {

        font-size: 17px;

    }

    .logo-mark {

        width: 32px;
        height: 32px;

    }

    .nav-button {

        display: none;

    }

    .hero-actions {

        flex-direction: column;

    }

    .button {

        width: 100%;

    }

    .movie-grid {

        gap: 10px;

    }

    .movie-image {

        border-radius: 13px;

    }

    .movie-info {

        padding:
            12px 2px;

    }

}