* {
    box-sizing: border-box;
}

:root {
    --background: #f7f8fa;
    --card: rgba(255, 255, 255, 0.88);
    --text: #111318;
    --muted: #707580;
    --border: #e5e7eb;
    --button: #111318;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    overflow-x: hidden;
}


/* SUBTLE BACKGROUND */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            rgba(20, 24, 32, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20, 24, 32, 0.025) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}


.background-glow {
    position: fixed;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.13;

    pointer-events: none;
}

.glow-1 {
    background: #9f8cf0;

    top: -180px;
    left: -180px;
}

.glow-2 {
    background: #83b8ed;

    top: 40%;
    right: -200px;
}


/* MAIN */

.container {
    position: relative;

    width: min(
        720px,
        calc(100% - 30px)
    );

    margin: auto;
}


/* HERO */

.hero {
    padding: 65px 0 30px;

    text-align: center;
}


.eyebrow {
    display: inline-block;

    padding: 7px 12px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: rgba(255,255,255,.7);

    color: #777c86;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


.hero h1 {
    margin: 24px 0 0;

    font-size: clamp(
        40px,
        10vw,
        72px
    );

    line-height: .95;

    letter-spacing: -3px;

    font-weight: 900;
}


.hero h1 span {
    color: #9178f5;
}


.legally {
    margin-top: 14px;

    color: #777c86;

    font-size: 21px;

    font-weight: 700;

    letter-spacing: 4px;
}


.hero p {
    max-width: 580px;

    margin: 23px auto 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.65;
}


/* GAME STRIP */

.game-strip {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

    margin: 28px auto 0;

    max-width: 560px;
}


.game-chip {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px 8px 8px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: rgba(255,255,255,.75);

    font-size: 12px;

    font-weight: 700;

    color: #4b4f58;

    opacity: 0;

    transform: translateY(6px);

    animation: chipIn .5s ease forwards;
}


.game-chip:nth-child(1) { animation-delay: .05s; }
.game-chip:nth-child(2) { animation-delay: .15s; }
.game-chip:nth-child(3) { animation-delay: .25s; }
.game-chip:nth-child(4) { animation-delay: .35s; }


@keyframes chipIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.game-icon {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    border-radius: 7px;
}


/* NOTICE */

.notice {
    display: flex;

    gap: 10px;

    align-items: baseline;

    margin: 10px 0 42px;

    padding: 13px 15px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: rgba(255,255,255,.65);

    color: #777c86;

    font-size: 11px;
}


.notice strong {
    flex-shrink: 0;

    color: #34373d;
}


/* LABELS */

.section-label,
.mini-label {
    color: #858a94;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.1px;
}


/* HONEYGAIN */

.honey-card {
    position: relative;

    overflow: hidden;

    margin-top: 10px;

    padding: 26px;

    border: 1px solid #dedfe5;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(145, 120, 245, .12),
            transparent 35%
        ),
        rgba(255,255,255,.9);

    box-shadow:
        0 20px 60px rgba(28,32,45,.08);

    transform: rotate(-0.25deg);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.honey-card:hover {
    transform: rotate(0deg) translateY(-3px);

    box-shadow:
        0 25px 70px rgba(28,32,45,.11);
}


.card-header {
    display: flex;

    align-items: center;

    gap: 14px;
}


.app-logo {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 15px;

    color: white;

    font-size: 21px;

    font-weight: 900;
}


.honey-logo {
    background: #111318;
}


.app-name h2 {
    margin: 3px 0 0;

    font-size: 27px;

    letter-spacing: -1.2px;
}


.status-dot {
    width: 8px;
    height: 8px;

    margin-left: auto;

    border-radius: 50%;

    background: #67c891;

    box-shadow:
        0 0 0 5px rgba(103,200,145,.12);
}


.description {
    margin: 20px 0;

    max-width: 650px;

    color: #5f646e;

    font-size: 14px;

    line-height: 1.65;
}


/* STATS */

.stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;

    margin: 22px 0;
}


.stat {
    padding: 14px;

    border: 1px solid #e8e9ed;

    border-radius: 14px;

    background: #fafbfc;
}


.stat strong {
    display: block;

    font-size: 19px;

    letter-spacing: -.5px;
}


.stat span {
    display: block;

    margin-top: 3px;

    color: #858a94;

    font-size: 10px;

    line-height: 1.35;
}


/* BUTTON */

.main-button,
.secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-weight: 800;

    transition:
        transform .18s ease,
        opacity .18s ease,
        box-shadow .18s ease;
}


.main-button {
    width: 100%;

    padding: 15px 20px;

    border-radius: 12px;

    background: var(--button);

    color: white;

    box-shadow:
        0 10px 25px rgba(17,19,24,.15);
}


.main-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(17,19,24,.20);
}


.main-button span {
    margin-left: 8px;
}


.small-note {
    margin-top: 10px;

    text-align: center;

    color: #9599a2;

    font-size: 9px;
}


/* METHODS */

.methods {
    padding-top: 62px;
}


.section-header {
    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 15px;
}


.section-header h2 {
    margin: 4px 0 0;

    font-size: 29px;

    letter-spacing: -1.3px;
}


.count {
    color: #999da5;

    font-size: 11px;
}


/* METHOD CARD */

.method-card {
    display: grid;

    grid-template-columns:
        25px 52px 1fr;

    gap: 14px;

    align-items: start;

    margin-bottom: 12px;

    padding: 21px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: rgba(255,255,255,.82);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.method-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 45px rgba(28,32,45,.06);
}


.method-number {
    padding-top: 17px;

    color: #9a9ea7;

    font-size: 11px;

    font-weight: 800;
}


.viefaucet-logo {
    background: #7657e8;
}


.earnapp-logo {
    background: #3478e5;
}


.method-title-row {
    display: flex;

    align-items: start;

    justify-content: space-between;

    gap: 15px;
}


.method-title-row h3 {
    margin: 3px 0 0;

    font-size: 21px;

    letter-spacing: -.7px;
}


.tag {
    padding: 6px 9px;

    border-radius: 999px;

    background: #f0f1f4;

    color: #747984;

    font-size: 9px;

    font-weight: 700;

    white-space: nowrap;
}


.method-content p {
    margin: 12px 0;

    color: #686d77;

    font-size: 13px;

    line-height: 1.6;
}


.secondary-button {
    padding: 10px 14px;

    border: 1px solid #dfe1e6;

    border-radius: 11px;

    background: white;

    color: #17191e;

    font-size: 12px;
}


.secondary-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(0,0,0,.07);
}


/* BALANCE */

.example-balance {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin: 0 0 13px;

    padding: 7px 10px;

    border-radius: 9px;

    background: #f4f6f9;

    color: #7b8089;

    font-size: 10px;
}


.example-balance strong {
    color: #17191e;

    font-size: 12px;
}


/* TIPS */

.tips {
    padding: 65px 0 30px;
}


.tips h2 {
    margin: 5px 0 16px;

    font-size: 26px;

    letter-spacing: -1px;
}


.tip-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}


.tip {
    padding: 16px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: rgba(255,255,255,.6);
}


.tip span {
    color: #9a9ea7;

    font-size: 9px;

    font-weight: 800;
}


.tip p {
    margin: 8px 0 0;

    color: #686d77;

    font-size: 11px;

    line-height: 1.5;
}


/* FOOTER */

footer {
    padding: 30px 0 55px;

    text-align: center;

    color: #858a94;

    font-size: 10px;

    line-height: 1.5;
}


.footer-small {
    color: #a1a5ad;

    font-size: 9px;
}


/* MOBILE */

@media (max-width: 620px) {

    .container {
        width:
            calc(100% - 22px);
    }


    .hero {
        padding-top: 48px;
    }


    .hero h1 {
        letter-spacing: -2px;
    }


    .game-strip {
        gap: 8px;
    }


    .game-chip {
        font-size: 11px;

        padding: 6px 12px 6px 6px;
    }


    .notice {
        display: block;
    }


    .notice strong {
        display: block;

        margin-bottom: 3px;
    }


    .honey-card {
        padding: 21px;
    }


    .stats {
        grid-template-columns: 1fr;
    }


    .stat {
        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 15px;
    }


    .stat span {
        text-align: right;
    }


    .method-card {
        grid-template-columns:
            20px 45px 1fr;

        gap: 10px;

        padding: 17px;
    }


    .method-card .app-logo {
        width: 45px;
        height: 45px;

        border-radius: 13px;
    }


    .method-title-row {
        display: block;
    }


    .tag {
        display: inline-block;

        margin-top: 7px;
    }


    .tip-grid {
        grid-template-columns: 1fr;
    }

}