/* =========================================================
   YOURWEB3 / DAILY PROFIT NFT
   COMPLETE STYLE.CSS
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #ffffff;
    color: #111111;

    overflow-x: hidden;

    padding-bottom: 105px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


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

.site-header {
    width: 100%;
    height: 115px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    width: 100%;
    height: 100%;

    padding: 0 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ---------- BRAND ---------- */

.brand {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    white-space: nowrap;

    font-size: 25px;
    font-weight: 400;

    line-height: 1;
}


/* Logo star */

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-right: 12px;

    color: #62cbe0;

    font-size: 38px;

    line-height: 1;
}


/* Daily */

.brand-black {
    display: inline-block;

    color: #111111;

    font-size: 25px;
    font-weight: 400;

    white-space: nowrap;
}


/* Profit */

.brand-blue {
    display: inline-block;

    margin-left: 7px;

    color: #74c9d9;

    font-size: 25px;
    font-weight: 400;

    white-space: nowrap;
}


/* NFT */

.brand-nft {
    display: inline-block;

    margin-left: 7px;

    color: #111111;

    font-size: 25px;
    font-weight: 400;

    white-space: nowrap;
}


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

.header-right {
    display: flex;

    align-items: center;

    flex-shrink: 0;

    gap: 22px;
}


/* ---------- AIRDROP ---------- */

.airdrop {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #9bcfd7;

    font-size: 24px;
    font-weight: 400;

    white-space: nowrap;
}

.airdrop-dot {
    display: inline-block;

    width: 13px;
    height: 13px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ec7470;
}


/* ---------- THREE DOT ---------- */

.menu-button {
    width: 32px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #555555;
}


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

.hero {
    width: 100%;

    min-height: 900px;

    padding-top: 88px;

    background: #ffffff;

    overflow: hidden;
}

.hero-content {
    width: 100%;

    text-align: center;
}


/* ---------- EYEBROW ---------- */

.eyebrow {
    margin-bottom: 58px;

    color: #111111;

    font-size: 14px;
    font-weight: 400;

    letter-spacing: 7px;

    line-height: 1.2;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.hero h1 {
    margin: 0;

    padding: 0;

    font-weight: 300;

    line-height: .96;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
}


/* EARN WITH */

.hero-faded {
    color: #f0f1f2;

    font-size: 72px;
    font-weight: 300;
}


/* WEB3 + MONTHLY */

.hero-gradient {
    font-size: 77px;
    font-weight: 300;

    background:
        linear-gradient(
            100deg,
            #5fc9df 5%,
            #7ed7c3 55%,
            #e5d5cc 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


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

.hero-buttons {
    margin-top: 45px;

    display: flex;

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

    gap: 18px;
}

.hero-button {
    display: flex;

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

    width: 165px;
    min-height: 60px;

    padding: 0 20px;

    border-radius: 35px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 400;

    background:
        linear-gradient(
            100deg,
            #5bc8df 0%,
            #83d8c4 55%,
            #e7d6cd 100%
        );

    box-shadow:
        0 10px 24px
        rgba(94, 201, 224, .12);

    transition:
        transform .15s ease;
}

.hero-button:active {
    transform: scale(.97);
}


/* =========================================================
   NFT ART
========================================================= */

.hero-art {
    width: 100%;

    height: 440px;

    margin-top: 0;

    position: relative;

    display: flex;

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


/* ---------- NFT CARD ---------- */

.nft-card {
    width: 255px;
    height: 335px;

    position: relative;

    overflow: hidden;

    border-radius: 39px;

    transform: rotate(-8deg);

    background:
        linear-gradient(
            145deg,
            #101010 0%,
            #292929 48%,
            #151515 49%,
            #292929 100%
        );

    box-shadow:
        0 28px 50px
        rgba(0, 0, 0, .20);

    animation:
        nftFloat 5s ease-in-out infinite;
}


/* diagonal shine */

.nft-card::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            132deg,
            transparent 0%,
            transparent 44%,
            rgba(255,255,255,.07) 45%,
            rgba(255,255,255,.02) 48%,
            transparent 49%,
            transparent 100%
        );
}


/* NFT brand */

.nft-brand {
    position: absolute;

    top: 31px;
    left: 28px;

    color: #999999;

    font-size: 11px;

    letter-spacing: 4px;

    z-index: 2;
}


/* NFT symbol */

.nft-symbol {
    position: absolute;

    top: 108px;
    left: 0;
    right: 0;

    text-align: center;

    color: #68d0e5;

    font-size: 63px;

    line-height: 1;

    z-index: 2;
}


/* NFT name */

.nft-name {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 94px;

    text-align: center;

    color: #ffffff;

    font-size: 18px;

    letter-spacing: 10px;

    z-index: 2;
}


/* divider */

.nft-divider {
    position: absolute;

    left: 27px;
    right: 27px;

    bottom: 70px;

    height: 1px;

    background: #555555;

    z-index: 2;
}


/* small text */

.nft-small {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 40px;

    text-align: center;

    color: #999999;

    font-size: 8px;

    letter-spacing: 3px;

    z-index: 2;
}


/* =========================================================
   NFT GLOW
========================================================= */

.art-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.art-glow-left {
    width: 145px;
    height: 145px;

    left: 10%;

    top: 40%;

    background:
        rgba(130, 220, 204, .32);

    filter: blur(2px);
}

.art-glow-right {
    width: 120px;
    height: 120px;

    right: 8%;

    bottom: 6%;

    background:
        rgba(100, 205, 225, .27);

    filter: blur(2px);
}


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

.discover {
    width: 100%;

    min-height: 480px;

    padding: 80px 25px;

    display: flex;

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

    text-align: center;

    background:
        linear-gradient(
            110deg,
            #ebfaff,
            #e0faf2,
            #fff0e8
        );
}

.discover h2 {
    margin: 0;

    color: #111111;

    font-size: 42px;

    line-height: 1.06;

    font-weight: 800;

    letter-spacing: -1px;
}


/* =========================================================
   BOTTOM NAVIGATION
========================================================= */

.bottom-nav {
    position: fixed;

    left: 50%;
    bottom: 16px;

    transform: translateX(-50%);

    z-index: 500;

    width: calc(100% - 36px);

    max-width: 680px;

    height: 68px;

    padding: 0 25px;

    display: flex;

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

    border-radius: 38px;

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

    box-shadow:
        0 10px 32px
        rgba(0, 0, 0, .13);

    backdrop-filter: blur(10px);
}

.bottom-nav a {
    color: #888888;

    font-size: 15px;
    font-weight: 400;

    white-space: nowrap;
}

.bottom-nav a.active {
    color: #444444;
}

.separator {
    color: #a9a9a9;

    font-size: 13px;
}


/* =========================================================
   THREE-DOT MENU
========================================================= */

.menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 1000;

    display: none;

    align-items: flex-start;
    justify-content: flex-end;

    padding: 130px 20px 0;

    background:
        rgba(0, 0, 0, .20);
}

.menu-overlay.show {
    display: flex;
}

.menu-box {
    width: 250px;

    padding: 25px;

    position: relative;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, .18);
}

.menu-box h3 {
    margin-bottom: 10px;

    font-size: 21px;
}

.menu-box p {
    color: #888888;

    font-size: 14px;

    line-height: 1.5;
}

.menu-close {
    position: absolute;

    top: 9px;
    right: 14px;

    border: 0;

    background: transparent;

    color: #555555;

    font-size: 28px;

    cursor: pointer;
}


/* =========================================================
   NFT ANIMATION
========================================================= */

@keyframes nftFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-8deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(-5deg);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .site-header {
        height: 115px;
    }


    .header-inner {
        padding: 0 28px;
    }


    /* ---------- MOBILE BRAND ---------- */

    .brand {
        font-size: 24px;
    }

    .brand-icon {
        width: 39px;
        height: 39px;

        margin-right: 10px;

        font-size: 36px;
    }

    .brand-black {
        font-size: 24px;
    }

    .brand-blue {
        margin-left: 6px;

        font-size: 24px;
    }

    .brand-nft {
        margin-left: 6px;

        font-size: 24px;
    }


    /* ---------- MOBILE HEADER RIGHT ---------- */

    .header-right {
        gap: 13px;
    }

    .airdrop {
        gap: 8px;

        font-size: 22px;
    }

    .airdrop-dot {
        width: 12px;
        height: 12px;
    }

    .menu-button {
        width: 27px;
    }


    /* ---------- MOBILE HERO ---------- */

    .hero {
        min-height: 900px;

        padding-top: 87px;
    }

    .eyebrow {
        margin-bottom: 57px;

        font-size: 12px;

        letter-spacing: 5px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-faded {
        font-size: 55px;
    }

    .hero-gradient {
        font-size: 60px;
    }


    /* ---------- MOBILE BUTTONS ---------- */

    .hero-buttons {
        margin-top: 43px;

        gap: 14px;
    }

    .hero-button {
        width: 150px;

        min-height: 59px;

        font-size: 19px;
    }


    /* ---------- MOBILE NFT ---------- */

    .hero-art {
        height: 435px;

        margin-top: 0;
    }

    .nft-card {
        width: 245px;
        height: 330px;
    }

    .nft-brand {
        top: 30px;
        left: 27px;
    }

    .nft-symbol {
        top: 106px;

        font-size: 60px;
    }


    /* ---------- MOBILE GLOW ---------- */

    .art-glow-left {
        width: 130px;
        height: 130px;

        left: 7%;

        top: 40%;
    }

    .art-glow-right {
        width: 110px;
        height: 110px;

        right: 6%;

        bottom: 5%;
    }


    /* ---------- MOBILE DISCOVER ---------- */

    .discover {
        min-height: 460px;

        padding: 75px 20px;
    }

    .discover h2 {
        font-size: 31px;

        line-height: 1.08;
    }


    /* ---------- MOBILE BOTTOM ---------- */

    .bottom-nav {
        width: calc(100% - 38px);

        height: 68px;

        padding: 0 20px;
    }

    .bottom-nav a {
        font-size: 14px;
    }

    .separator {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .header-inner {
        padding: 0 18px;
    }


    .brand {
        font-size: 20px;
    }

    .brand-icon {
        width: 34px;
        height: 34px;

        margin-right: 7px;

        font-size: 32px;
    }

    .brand-black {
        font-size: 20px;
    }

    .brand-blue {
        margin-left: 5px;

        font-size: 20px;
    }

    .brand-nft {
        margin-left: 5px;

        font-size: 20px;
    }


    .header-right {
        gap: 8px;
    }

    .airdrop {
        font-size: 18px;
    }


    .hero {
        min-height: 850px;

        padding-top: 78px;
    }

    .eyebrow {
        margin-bottom: 50px;

        font-size: 11px;

        letter-spacing: 4px;
    }

    .hero-faded {
        font-size: 49px;
    }

    .hero-gradient {
        font-size: 53px;
    }


    .hero-buttons {
        gap: 10px;

        margin-top: 38px;
    }

    .hero-button {
        width: 137px;

        min-height: 56px;

        font-size: 18px;
    }


    .hero-art {
        height: 410px;
    }

    .nft-card {
        width: 230px;
        height: 310px;
    }


    .bottom-nav {
        width: calc(100% - 28px);

        padding: 0 15px;
    }

    .bottom-nav a {
        font-size: 13px;
    }
}