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

body {
    font-family: 'Lato', sans-serif;
    background-color: #0a0118;
    color: white;
    overflow-x: hidden;
}

.page {
    min-height: 100vh;
    background: radial-gradient(ellipse at 75% 45%, #5a0d5a 0%, #2a0635 35%, #0a0118 70%);
    display: flex;
    flex-direction: column;
}

/* ===== NAV ===== */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 50px;
    position: relative;
    z-index: 20;
}

.nav-logo {
    width: 65px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

nav ul li a.active {
    color: #ffffff;
    font-weight: 700;
    border-bottom: 2px solid #e91e7a;
    padding-bottom: 3px;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
}

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

.hero {
    display: flex;
    align-items: center;
    padding: 20px 50px 0 50px;
    flex: 1;
    position: relative;
    min-height: 480px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 10;
    width: 430px;
    flex-shrink: 0;
}

.logo-box {
    position: relative;
    display: inline-block;
}

.big-logo {
    width: 310px;
    object-fit: contain;
    display: block;
}

.star-cyan {
    position: absolute;
    top: 5px;
    right: -30px;
    font-size: 26px;
    color: #00e5ff;
}

.star-yellow {
    position: absolute;
    bottom: 30px;
    left: -22px;
    font-size: 22px;
    color: #ffd600;
}

.desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-weight: 300;
}

.btns {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-play {
    background-color: #e91e7a;
    color: white;
    border: none;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-watch {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 13px 22px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== SCROLL INDICATOR ===== */

.scroll-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    z-index: 10;
    flex-shrink: 0;
}

.vline {
    width: 1px;
    height: 55px;
    background-color: #e91e7a;
}

.scroll-label {
    writing-mode: vertical-rl;
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    text-transform: uppercase;
}

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

.hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    position: relative;
}

.char {
    height: 490px;
    object-fit: contain;
    position: relative;
    z-index: 5;
    mix-blend-mode: screen;
}

.squid-bg {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 110px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: 8px;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
}

.social {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 10;
}

.social a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
}


.social a:hover {
    color: #e91e7a;
}

/* ===== GAME BG TEXT ===== */

.game-bg {
    position: absolute;
    bottom: 5px;
    left: 50px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 12px;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

/* ===== CARDS ===== */

.cards {
    display: flex;
    gap: 16px;
    padding: 25px 65px 50px 65px;
    background: rgba(80, 10, 80, 0.25);
    position: relative;
    z-index: 10;
}

.card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
    border-radius: 12px;
}

.play-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    z-index: 5;
    backdrop-filter: blur(4px);
}