* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #03050a;
    color: white;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    padding: 0 35px;

    display: flex;
    align-items: center;

    background: rgba(3, 5, 10, 0.78);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(70, 150, 255, 0.12);

    z-index: 1000;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 4px;

    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-left: 55px;
}

.nav-links a {
    color: #aeb9c9;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* =========================
   ACCOUNT BUTTONS
========================= */

.account-buttons {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 10px;

    width: max-content;
    min-width: max-content;

    flex-shrink: 0;
}

.login-button,
.signup-button {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 38px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;

    white-space: nowrap;

    border-radius: 7px;

    flex-shrink: 0;
}

/* LOG IN */

.login-button {
    width: 75px;

    color: white;

    border: 1px solid rgba(100, 170, 255, 0.35);
    background: rgba(20, 35, 55, 0.7);
}

.login-button:hover {
    background: rgba(35, 60, 90, 0.9);
}

/* SIGN UP */

.signup-button {
    width: 92px;

    color: white;

    background: #1677ff;

    border: 1px solid #3d91ff;
}

.signup-button:hover {
    background: #3188ff;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(0, 100, 255, 0.18),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #050914 0%,
            #03050a 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(30, 110, 255, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(30, 110, 255, 0.055) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );
}

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: 100px;

    background: rgba(255, 30, 150, 0.045);

    filter: blur(100px);

    border-radius: 50%;
}

.hero-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    background: rgba(0, 90, 255, 0.1);

    filter: blur(120px);

    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;

    padding: 20px;
}

.hero-small {
    color: #579dff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 5px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(70px, 12vw, 150px);

    line-height: 0.9;

    letter-spacing: 15px;

    font-weight: 900;

    text-shadow:
        0 0 25px rgba(30, 120, 255, 0.35);
}

.hero-description {
    max-width: 550px;

    margin: 30px auto;

    color: #9da9bb;

    font-size: 17px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;

    gap: 12px;

    margin-top: 30px;
}

.primary-button,
.secondary-button {
    padding: 14px 24px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.25s ease;
}

.primary-button {
    background: #1677ff;

    color: white;

    border: 1px solid #3d91ff;
}

.primary-button:hover {
    background: #3188ff;

    transform: translateY(-2px);
}

.secondary-button {
    background: rgba(20, 30, 45, 0.7);

    color: white;

    border: 1px solid rgba(100, 170, 255, 0.3);
}

.secondary-button:hover {
    background: rgba(30, 45, 65, 0.9);

    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    color: #647083;

    font-size: 9px;

    letter-spacing: 2px;

    text-align: center;
}

.scroll-arrow {
    margin-top: 8px;

    font-size: 17px;

    animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* =========================
   SECTIONS
========================= */

.content-section {
    min-height: 75vh;

    padding: 130px 8%;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            180deg,
            #03050a,
            #050811
        );
}

.content-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 10%;
    right: 10%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(50, 130, 255, 0.2),
        transparent
    );
}

.section-content {
    width: 100%;

    max-width: 1100px;

    margin: auto;
}

.section-label {
    color: #4e98ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.section-content h2 {
    font-size: clamp(35px, 5vw, 65px);

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.section-content > p:not(.section-label) {
    max-width: 700px;

    color: #929daf;

    line-height: 1.8;

    margin-bottom: 15px;
}

/* =========================
   CARDS
========================= */

.card-grid {
    display: grid;

    grid-template-columns: repeat(
        auto-fit,
        minmax(250px, 1fr)
    );

    gap: 20px;

    margin-top: 35px;
}

.info-card {
    padding: 28px;

    min-height: 210px;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 25, 40, 0.9),
            rgba(7, 12, 20, 0.9)
        );

    border: 1px solid rgba(80, 150, 255, 0.12);

    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);

    border-color: rgba(80, 150, 255, 0.35);

    box-shadow:
        0 10px 40px rgba(0, 60, 160, 0.12);
}

.card-tag {
    display: inline-block;

    color: #5ba0ff;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.leak-tag {
    color: #ff65b5;
}

.info-card h3 {
    font-size: 22px;

    margin-bottom: 12px;
}

.info-card p {
    color: #858f9f;

    line-height: 1.6;
}

.reveal-button {
    margin-top: 20px;

    padding: 10px 18px;

    background: transparent;

    color: white;

    border: 1px solid rgba(90, 150, 255, 0.3);

    border-radius: 5px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;
}

.reveal-button:hover {
    background: rgba(30, 110, 255, 0.15);
}

/* =========================
   MERCH
========================= */

.merch-section {
    min-height: 65vh;
}

.merch-message {
    max-width: 700px;

    margin-top: 35px;

    padding: 50px 30px;

    text-align: center;

    border: 1px solid rgba(70, 140, 255, 0.14);

    border-radius: 12px;

    background:
        radial-gradient(
            circle at center,
            rgba(20, 90, 200, 0.08),
            transparent 65%
        );
}

.merch-icon {
    font-size: 35px;

    color: #4d9bff;

    margin-bottom: 20px;
}

.merch-message h3 {
    font-size: 28px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.merch-message p {
    color: #7f8998;

    line-height: 1.7;
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 45px 30px;

    text-align: center;

    border-top: 1px solid rgba(70, 140, 255, 0.1);

    background: #020408;
}

.footer-logo {
    font-size: 20px;

    font-weight: 900;

    letter-spacing: 5px;

    margin-bottom: 12px;
}

footer p {
    color: #566171;

    font-size: 11px;
}

/* =========================
   SCROLL ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

/* =========================
   ACCOUNT PAGES
========================= */

.account-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(0, 90, 255, 0.12),
            transparent 45%
        ),
        #03050a;
}

.account-background {
    position: fixed;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(30, 110, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(30, 110, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    pointer-events: none;
}

.account-container {
    position: relative;

    width: 100%;

    max-width: 470px;

    padding: 30px 20px;
}

.account-logo {
    display: block;

    text-align: center;

    color: white;

    text-decoration: none;

    font-size: 27px;
    font-weight: 900;

    letter-spacing: 5px;

    margin-bottom: 30px;
}

.account-box {
    padding: 40px 35px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 23, 38, 0.95),
            rgba(5, 9, 16, 0.97)
        );

    border: 1px solid rgba(80, 150, 255, 0.15);

    border-radius: 12px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4);
}

.account-box h1 {
    font-size: 38px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.account-description {
    color: #818c9d;

    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    color: #9ba7b8;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.form-group input {
    width: 100%;

    height: 46px;

    padding: 0 14px;

    color: white;

    background: rgba(0, 0, 0, 0.3);

    border: 1px solid rgba(100, 150, 220, 0.2);

    border-radius: 6px;

    outline: none;

    font-size: 14px;
}

.form-group input:focus {
    border-color: rgba(50, 140, 255, 0.65);

    box-shadow:
        0 0 0 3px rgba(30, 120, 255, 0.08);
}

.account-submit {
    width: 100%;

    height: 46px;

    margin-top: 10px;

    border: none;

    border-radius: 6px;

    background: #1677ff;

    color: white;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.5px;

    cursor: pointer;
}

.account-submit:hover {
    background: #3188ff;
}

.form-message {
    min-height: 20px;

    margin-top: 15px;

    color: #ff6d9f;

    font-size: 12px;

    text-align: center;
}

.account-switch {
    margin-top: 25px;

    color: #6f7b8d;

    font-size: 12px;

    text-align: center;
}

.account-switch a {
    color: #5c9fff;

    text-decoration: none;
}

.account-switch a:hover {
    text-decoration: underline;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {
    .navbar {
        padding: 0 22px;
    }

    .nav-links {
        margin-left: 30px;
        gap: 20px;
    }
}

/* =========================
   SMALL TABLET
========================= */

@media (max-width: 800px) {
    .navbar {
        padding: 0 18px;
    }

    .nav-links {
        display: none;
    }

    .account-buttons {
        gap: 8px;
    }

    .login-button {
        width: 70px;
    }

    .signup-button {
        width: 85px;
    }

    .hero h1 {
        letter-spacing: 8px;
    }

    .content-section {
        padding: 110px 6%;
    }
}

/* =========================
   PHONE
========================= */

@media (max-width: 500px) {
    .navbar {
        height: 64px;

        padding: 0 12px;
    }

    .logo {
        font-size: 20px;

        letter-spacing: 3px;
    }

    .account-buttons {
        gap: 6px;
    }

    .login-button {
        width: 66px;

        font-size: 10px;
    }

    .signup-button {
        width: 78px;

        font-size: 10px;
    }

    .hero h1 {
        font-size: 65px;

        letter-spacing: 5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;
    }

    .primary-button,
    .secondary-button {
        width: 210px;
    }

    .account-box {
        padding: 30px 22px;
    }
}