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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    background:
        linear-gradient(180deg,
            #0d0d0d,
            #111,
            #161616);

    color: white;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;

    overflow-x: hidden;
}

/* =========================
   LOADING
========================= */

.loader {

    position: fixed;

    inset: 0;

    background: #0d0d0d;

    display: flex;

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

    flex-direction: column;

    z-index: 9999;

    transition: 1s;
}

.loader.hide {

    opacity: 0;

    pointer-events: none;
}

.loader-logo {

    font-size: 48px;

    font-weight: 900;

    color: #7dff72;

    text-shadow:
        0 0 20px #7dff72;

    animation:
        pulse 1.5s infinite alternate;
}

.loader-text {

    margin-top: 16px;

    font-size: 12px;

    letter-spacing: 4px;

    color: white;
}

@keyframes pulse {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

/* =========================
   HEADER
========================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;

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

    padding: 18px 20px;

    background:
        rgba(0, 0, 0, .45);

    backdrop-filter: blur(14px);

    z-index: 100;
}

.logo {

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #7dff72;

    text-shadow:
        0 0 12px #7dff72;

    animation:
        logoGlow 3s infinite alternate;
}

@keyframes logoGlow {

    from {

        text-shadow:
            0 0 10px #7dff72;

    }

    to {

        text-shadow:
            0 0 18px #7dff72,
            0 0 34px #7dff72;

    }

}

nav {

    display: flex;

    gap: 14px;
}

nav a {

    color: white;

    text-decoration: none;

    font-size: 12px;

    opacity: .85;

    transition: .3s;
}

nav a:hover {

    opacity: 1;

    color: #7dff72;
}

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

.hero {

    position: relative;

    height: 100vh;

    overflow: hidden;
}

.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    transform: scale(1.05);

    transition:
        transform .3s ease;
}

.overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .88),
            rgba(0, 0, 0, .25));

    z-index: 1;
}

/* =========================
   STARS
========================= */

.stars {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 2;
}

.star {

    position: absolute;

    width: 3px;
    height: 3px;

    background: white;

    border-radius: 50%;

    opacity: .7;

    animation:
        twinkle linear infinite;
}

@keyframes twinkle {

    0% {

        opacity: .2;

        transform:
            scale(.5);

    }

    50% {

        opacity: 1;

        transform:
            scale(1.4);

    }

    100% {

        opacity: .2;

        transform:
            scale(.5);

    }

}

/* =========================
   HERO LOOP LOGO
========================= */

.hero-loop-logo {

    position: absolute;

    inset: 0;

    display: flex;

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

    font-size: 42px;

    font-weight: 800;

    letter-spacing: 8px;

    color: white;

    text-shadow:
        0 0 20px #7dff72;

    opacity: 0;

    z-index: 4;

    pointer-events: none;

    animation:
        logoLoop 6s infinite;
}

@keyframes logoLoop {

    0% {
        opacity: 0;
    }

    70% {
        opacity: 0;
    }

    82% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

/* =========================
   SOUND BUTTON
========================= */

.sound-btn {

    position: absolute;

    right: 20px;
    bottom: 24px;

    width: 54px;
    height: 54px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .12);

    backdrop-filter: blur(10px);

    color: white;

    font-size: 20px;

    cursor: pointer;

    z-index: 5;

    transition: .3s;
}

.sound-btn:hover {

    transform:
        scale(1.08);

    background:
        rgba(125, 255, 114, .25);
}

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

.hero-content {

    position: absolute;

    left: 20px;
    bottom: 70px;

    z-index: 5;

    animation:
        fadeUp 1.5s ease;
}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}

.mini {

    color: #7dff72;

    font-size: 11px;

    letter-spacing: 4px;

    margin-bottom: 14px;
}

h1 {

    font-size: 74px;

    line-height: .9;

    font-weight: 900;
}

.hero-sub {

    margin-top: 18px;

    color: #ff6bcb;

    font-size: 24px;

    font-weight: bold;
}

.hero-text {

    margin-top: 20px;

    font-size: 15px;

    line-height: 1.9;

    color: #e3e3e3;
}

.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 32px;
}

/* =========================
   BUTTONS
========================= */

.main-btn,
.sub-btn,
.gallery-btn,
.vote-main-btn {

    display: inline-block;

    padding:
        16px 30px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: bold;

    transition: .35s;
}

.main-btn,
.gallery-btn,
.vote-main-btn {

    background: #7dff72;

    color: #111;

    box-shadow:
        0 0 20px #7dff72;
}

.sub-btn {

    border:
        2px solid white;

    color: white;
}

.main-btn:hover,
.sub-btn:hover,
.gallery-btn:hover,
.vote-main-btn:hover {

    transform:
        translateY(-6px);
}

/* =========================
   SECTION
========================= */

.section {

    padding:
        110px 20px;
}

.section h2 {

    font-size: 42px;

    margin-bottom: 42px;

    color: #7dff72;
}

/* =========================
   PROFILE
========================= */

.profile-layout {

    display: flex;

    flex-direction: column;

    gap: 28px;
}

.profile-image {

    display: flex;

    justify-content: center;

    position: relative;
}

.profile-image::before {

    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    background: #7dff72;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .15;

    z-index: -1;

    top: 60px;
}

.profile-image img {

    width: 68%;

    max-width: 260px;

    max-height: 520px;

    height: auto;

    object-fit: contain;

    border-radius: 28px;

    transform:
        rotate(-3deg);

    border:
        10px solid #fff;

    background: #fff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .45),
        0 0 40px rgba(125, 255, 114, .12);

    transition: .4s;
}

.profile-image img:hover {

    transform:
        rotate(0deg) scale(1.03);
}

.profile-info {

    display: flex;

    flex-direction: column;

    gap: 24px;
}

.profile-card {

    background: #1b1b1b;

    padding: 28px;

    border-radius: 30px;

    border:
        1px solid rgba(255, 255, 255, .05);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .35);

    transition: .4s;
}

.profile-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 0 30px rgba(125, 255, 114, .15);
}

.profile-card h3 {

    color: #ff6bcb;

    margin-bottom: 18px;
}

.profile-card p {

    line-height: 1.9;
}

.floating-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 20px;
}

.floating-tags span {

    background: #7dff72;

    color: #111;

    padding:
        10px 18px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: bold;
}

/* =========================
   MOVIE
========================= */

.movie-grid {

    display: flex;

    flex-direction: column;

    gap: 30px;
}

.movie-card {

    background: #1b1b1b;

    border-radius: 30px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, .05);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .35);

    transition: .4s;
}

.movie-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 0 30px rgba(125, 255, 114, .15);
}

iframe {

    width: 100%;

    aspect-ratio: 16/9;

    border: none;
}

.movie-card p {

    padding: 18px;
}

/* =========================
   GALLERY
========================= */

.gallery-preview {

    display: flex;

    flex-direction: column;

    align-items: center;
}

.gallery-preview img {

    width: 100%;

    max-width: 320px;

    height: 420px;

    object-fit: cover;

    border-radius: 32px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .5),
        0 0 30px rgba(125, 255, 114, .12);
}

/* =========================
   ABOUT
========================= */

.about-card {

    background: #1b1b1b;

    padding: 30px;

    border-radius: 30px;

    line-height: 1.9;

    border:
        1px solid rgba(255, 255, 255, .05);
}

/* =========================
   FINAL VOTE
========================= */

.final-vote {

    position: relative;

    padding:
        150px 24px;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #111,
            #102014,
            #111);
}

.final-vote::before {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    background: #7dff72;

    border-radius: 50%;

    filter: blur(140px);

    opacity: .15;

    top: 50%;
    left: 50%;

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

.vote-mini {

    position: relative;

    color: #7dff72;

    font-size: 11px;

    letter-spacing: 4px;

    margin-bottom: 18px;

    z-index: 2;
}

.final-vote h2 {

    position: relative;

    font-size: 44px;

    line-height: 1.5;

    margin-bottom: 26px;

    z-index: 2;
}

.vote-text {

    position: relative;

    line-height: 1.9;

    color: #d8d8d8;

    margin-bottom: 42px;

    z-index: 2;
}

.vote-main-btn {

    position: relative;

    font-size: 20px;

    font-weight: 900;

    padding:
        22px 50px;

    z-index: 2;

    box-shadow:
        0 0 25px #7dff72,
        0 0 60px rgba(125, 255, 114, .45);
}

/* =========================
   SCROLL ANIMATION
========================= */

.fade-up {

    opacity: 0;

    transform:
        translateY(40px);

    transition: 1s;
}

.fade-up.show {

    opacity: 1;

    transform:
        translateY(0);
}

/* =========================
   PC LAYOUT
========================= */

@media(min-width:900px) {

    .profile-layout {

        flex-direction: row;

        align-items: center;

        gap: 60px;
    }

    .profile-image,
    .profile-info {

        flex: 1;
    }

}


/* =========================
   PC LAYOUT
========================= */

@media(min-width:900px) {

    .profile-layout {

        flex-direction: row;

        align-items: center;

        gap: 60px;
    }

    .profile-image,
    .profile-info {

        flex: 1;
    }

}

@media(max-width:768px) {

    .hero-loop-logo {

        display: none;
    }

}

.footer {

    padding: 40px 20px;

    text-align: center;

    font-size: 12px;

    color: #aaa;

    border-top: 1px solid rgba(255, 255, 255, .08);

    background: rgba(0, 0, 0, .3);

    backdrop-filter: blur(10px);

}

.footer p {

    margin: 6px 0;
}

/* TAP EFFECT */

.tap-star {

    position: fixed;

    width: 8px;
    height: 8px;

    background: #7dff72;

    border-radius: 50%;

    pointer-events: none;

    z-index: 9999;

    box-shadow:
        0 0 10px #7dff72;

    animation: tapFade .6s ease forwards;
}

@keyframes tapFade {

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

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