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

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 255, 204, 0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(119, 78, 255, 0.18), transparent 34%),
        linear-gradient(180deg, #050817 0%, #060b1e 45%, #03050f 100%);
    font-family: "Manrope", sans-serif;
    color: #ffffff;
}

.header {
    width: 100%;
    padding: 24px 48px;
}

.navBar {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid #cbd1cf46;
    border-radius: 999px;
    background: #151b31;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35), 0 0 35px rgba(43, 255, 209, 0.08);
}

.logoHead {
    width: 150px;
    height: auto;
    display: block;
}

.navMenu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.navMenu a {
    display: inline-block;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: 0.25s ease;
}

.navMenu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btnJoin {
    border: none;
    cursor: pointer;
    padding: 11px 20px;
    border-radius: 999px;
    color: #031018;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #27ffd2, #58f7ff 48%, #b8ff62);
    box-shadow: 0 0 24px rgba(39, 255, 210, 0.32);
    transition: 0.25s ease;
}

.btnJoin:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 34px rgba(39, 255, 210, 0.46);
}

.heroSection {
    width: 100%;
    max-width: 980px;
    margin: 70px auto 0;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tagline {
    max-width: 900px;
    font-size: clamp(50px, 7vw, 92px);
    line-height: 1.10;
    font-weight: 900;
    letter-spacing: -0.05m;
    color: #ffffff;
    text-shadow: 0 0 42px rgba(67, 255, 224, 0.16);
}
.accentText {
    color: #52f0de ;
}

.headline {
    max-width: 690px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
}

.ctaHeroContainer {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btnJoinEarlyAcces,
.btnExploreStreambet {
    cursor: pointer;
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: 0.25s ease;
}

.btnJoinEarlyAcces {
    border: none;
    color: #031018;
    background: linear-gradient(135deg, #52f0de, #58f7ff 55%, #4d8dff);
    box-shadow: 0 0 30px rgba(82, 240, 222, 0.34);
}

.btnJoinEarlyAcces:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 42px rgba(39, 255, 210, 0.52);
}

.btnExploreStreambet {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.btnExploreStreambet:hover {
    transform: translateY(-3px);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(88, 247, 255, 0.36);
}

.heroMockupContainer {
    width: 100%;
    max-width: 1120px;
    margin: 62px auto 0;
    padding: 0 32px;
    position: relative;
}

.heroMockupContainer::before {
    content: "";
    position: absolute;
    inset: -70px 40px auto;
    height: 260px;
    background: radial-gradient(circle, rgba(82, 240, 222, 0.18), transparent 68%);
    filter: blur(18px);
    z-index: -1;
}

.heroMockup {
    width: 100%;
    display: block;
    /* border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.46),
        0 0 55px rgba(82, 240, 222, 0.13),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05); */
}

@media (max-width: 800px) {
    .header {
        padding: 18px;
    }

    .navBar {
        border-radius: 28px;
        flex-wrap: wrap;
    }

    .navMenu {
        order: 3;
        width: 100%;
        justify-content: space-between;
        gap: 4px;
    }

    .navMenu a {
        font-size: 12px;
        padding: 8px 9px;
    }

    .logoHead {
        width: 128px;
    }

    .btnJoin {
        padding: 10px 16px;
        font-size: 12px;
    }

    .heroSection {
        margin-top: 54px;
        padding: 0 22px;
    }

    .tagline {
        font-size: clamp(48px, 14vw, 70px);
        letter-spacing: -0.06em;
    }

    .headline {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .ctaHeroContainer {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .btnJoinEarlyAcces,
    .btnExploreStreambet {
        width: 100%;
        max-width: 320px;
        padding: 14px 20px;
        font-size: 14px;
    }

    .heroMockupContainer {
        margin-top: 44px;
        padding: 0 18px;
    }

    .heroMockup {
        border-radius: 18px;
    }
}