/* =========================================================
   NVIDIOT
   AI IS SMART. WE AREN'T.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #f5f5f5;
    font-family: "Anton", Impact, sans-serif;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    /* MATCHED TO NVIDIOT LOGO */
    --green: #96C302;

    --green-dark: #6f9000;

    --black: #050505;

    --dark: #0b0b0b;

    --dark-2: #111111;

    --white: #f5f5f5;

    --grey: #888;

    --border: rgba(150, 195, 2, 0.25);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    height: 80px;
    width: 100%;

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

    padding: 0 5vw;

    border-bottom: 1px solid rgba(150, 195, 2, 0.15);

    background: rgba(5, 5, 5, 0.92);

    position: sticky;
    top: 0;
    z-index: 1000;

    backdrop-filter: blur(12px);
}

.nav-logo {
    font-family: "Anton", sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
}

.nav-logo span {
    color: var(--green);
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: 0.2s ease;
}

.navbar nav a:hover {
    color: var(--green);
}

.nav-button {
    background: var(--green);
    color: #000;

    padding: 12px 20px;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;

    transition: 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 25px rgba(150, 195, 2, 0.45);
}


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

.hero {
    min-height: calc(100vh - 80px);

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    padding: 80px 7vw;

    position: relative;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    background: var(--green);

    opacity: 0.08;

    filter: blur(150px);

    border-radius: 50%;

    right: -200px;
    top: 10%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.status-pill {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 14px;

    border: 1px solid var(--border);

    color: var(--green);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

.status-pill span {

    width: 7px;
    height: 7px;

    background: var(--green);

    border-radius: 50%;

    box-shadow:
        0 0 10px var(--green);

    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}


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

.hero h1 {

    font-family: "Anton", sans-serif;

    font-size: clamp(90px, 14vw, 210px);

    line-height: 0.8;

    letter-spacing: -5px;

    color: var(--green);

    text-shadow:
        0 0 20px rgba(150, 195, 2, 0.2),
        0 0 70px rgba(150, 195, 2, 0.08);
}


/* WHITE "OT" */
.hero h1 .white-text {
    color: var(--white);
}


.hero h2 {

    font-family: "Anton", sans-serif;

    font-size: clamp(32px, 4vw, 65px);

    line-height: 0.95;

    margin-top: 35px;

    letter-spacing: -1px;
}

.hero h2 span {
    color: var(--green);
}

.hero-description {

    max-width: 520px;

    margin-top: 25px;

    color: #aaa;

    font-size: 16px;

    line-height: 1.7;
}


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

.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 35px;
}

.button {

    display: inline-flex;

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

    padding: 15px 24px;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.2s ease;
}

.button-primary {

    background: var(--green);

    color: #000;
}

.button-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(150, 195, 2, 0.25);
}

.button-secondary {

    border: 1px solid #333;

    color: #fff;
}

.button-secondary:hover {

    border-color: var(--green);

    color: var(--green);
}


/* =========================================================
   CONTRACT BOX
   ========================================================= */

.contract-box {

    display: flex;

    align-items: center;

    max-width: 620px;

    margin-top: 30px;

    background: #0b0b0b;

    border: 1px solid #202020;
}

.contract-box span {

    padding: 14px;

    color: var(--green);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

    border-right: 1px solid #202020;
}

.contract-box code {

    flex: 1;

    padding: 14px;

    color: #777;

    font-size: 11px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.contract-box button {

    border: 0;

    background: var(--green);

    color: #000;

    padding: 14px;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;
}


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

.hero-image {

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 2;
}

.hero-image img {

    width: min(90%, 600px);

    filter:
        drop-shadow(
            0 0 30px rgba(150, 195, 2, 0.25)
        );

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

@keyframes float {

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

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}


/* =========================================================
   TICKER
   ========================================================= */

.ticker {

    overflow: hidden;

    border-top: 1px solid var(--green);

    border-bottom: 1px solid var(--green);

    background: var(--green);

    color: #fff;

    padding: 12px 0;

    white-space: nowrap;

    font-size: 34px;

    font-weight: 900;

    letter-spacing: 2px;
}

.ticker div {

    display: inline-block;

    animation:
        ticker 25s linear infinite;
}

.ticker span {

    margin: 0 20px;
}

@keyframes ticker {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    padding: 130px 8vw;
}

.section-label {

    color: var(--green);

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.section h2 {

    font-family: "Anton", sans-serif;

    font-size: clamp(50px, 7vw, 105px);

    line-height: 0.9;

    letter-spacing: -2px;
}

.section h2 span {

    color: var(--green);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {

    max-width: 1200px;
}

.about p {

    max-width: 650px;

    color: #999;

    font-size: 19px;

    line-height: 1.7;

    margin-top: 25px;
}

.about p:last-child {

    color: var(--green);

    font-weight: 700;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid #222;

    border-bottom: 1px solid #222;
}

.feature-card {

    padding: 55px 45px;

    border-right: 1px solid #222;

    transition: 0.25s ease;
}

.feature-card:last-child {

    border-right: 0;
}

.feature-card:hover {

    background: #0b0b0b;
}

.feature-number {

    color: var(--green);

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 50px;
}

.feature-card h3 {

    font-family: "Anton", sans-serif;

    font-size: 32px;

    margin-bottom: 18px;
}

.feature-card p {

    color: #777;

    font-size: 19px;

    line-height: 1.7;
}


/* =========================================================
   TOKEN
   ========================================================= */

.token-section {

    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #080d05 100%
        );
}

.token-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 70px;

    border-top: 1px solid #222;

    border-left: 1px solid #222;
}

.token-item {

    padding: 30px;

    border-right: 1px solid #222;

    border-bottom: 1px solid #222;
}

.token-item span {

    display: block;

    color: #666;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.token-item strong {

    font-family: "Anton", sans-serif;

    font-size: 30px;

    color: var(--green);
}


/* =========================================================
   REWARDS
   ========================================================= */

.rewards-section {

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #080d05 100%
        );

    border-top: 1px solid #222;

    border-bottom: 1px solid #222;
}

.rewards-section .section-label {

    margin-bottom: 25px;
}

.rewards-section h2 {

    margin-bottom: 35px;
}

.rewards-section p {

    max-width: 650px;

    color: #888;

    font-size: 20px;

    line-height: 1.7;

    margin-top: 15px;
}

.rewards-section p:first-of-type {

    color: var(--green);

    font-size: 26px;

    font-weight: 800;
}

.rewards-section .button {

    margin-top: 40px;

    min-width: 240px;
}


/* =========================================================
   MEME SECTION
   ========================================================= */

.meme-section {

    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 100px 30px;

    background:
        radial-gradient(
            circle at center,
            rgba(150, 195, 2, 0.12),
            transparent 55%
        );

    border-top: 1px solid #1d1d1d;

    border-bottom: 1px solid #1d1d1d;
}

.big-label {

    color: var(--green);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 4px;
}

.meme-section h2 {

    font-family: "Anton", sans-serif;

    font-size: clamp(60px, 9vw, 140px);

    line-height: 0.85;

    margin: 30px 0;
}

.meme-answer {

    display: inline-block;

    padding: 12px 20px;

    background: var(--green);

    color: #000;

    font-size: 18px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* =========================================================
   BUY
   ========================================================= */

.buy-section {

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.buy-section p {

    color: #888;

    margin: 30px 0;

    font-size: 22px;
}

.large-button {

    padding: 20px 40px;

    font-size: 19px;
}

.buy-section small {

    margin-top: 20px;

    color: #555;

    font-size: 11px;
}


/* =========================================================
   COMMUNITY
   ========================================================= */

.community {

    padding: 120px 8vw;

    text-align: center;

    border-top: 1px solid #222;
}

.community h2 {

    font-family: "Anton", sans-serif;

    font-size: clamp(55px, 8vw, 120px);

    line-height: 0.85;

    margin-bottom: 50px;
}

.community h2 span {

    color: var(--green);
}

.social-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;
}

.social-buttons a {

    border: 1px solid #333;

    padding: 16px 25px;

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.2s ease;
}

.social-buttons a:hover {

    background: var(--green);

    border-color: var(--green);

    color: #000;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

    padding: 70px 8vw;

    border-top: 1px solid #222;

    text-align: center;
}

.footer-logo {

    font-family: "Anton", sans-serif;

    font-size: 45px;
}

.footer-logo span {

    color: var(--green);
}

footer p {

    color: var(--green);

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-top: 10px;
}

.footer-warning {

    color: #444;

    font-size: 12px;

    margin-top: 40px;

    letter-spacing: 1px;
}

.copyright {

    color: #333;

    font-size: 12px;

    margin-top: 15px;
}


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

@media (max-width: 900px) {

    .navbar {

        padding: 0 20px;
    }

    .navbar nav {

        display: none;
    }

    .nav-button {

        padding: 10px 14px;
    }


    .hero {

        grid-template-columns: 1fr;

        padding: 70px 25px;

        text-align: center;
    }

    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .hero h1 {

        font-size: 110px;
    }

    .hero h2 {

        font-size: 45px;
    }

    .hero-description {

        font-size: 14px;
    }

    .hero-buttons {

        flex-direction: column;

        width: 100%;
    }

    .button {

        width: 100%;
    }

    .contract-box {

        width: 100%;
    }

    .hero-image {

        margin-top: 20px;
    }


    .features {

        grid-template-columns: 1fr;
    }

    .feature-card {

        border-right: 0;

        border-bottom: 1px solid #222;
    }

    .feature-card:last-child {

        border-bottom: 0;
    }


    .token-grid {

        grid-template-columns: 1fr 1fr;
    }


    .section {

        padding: 90px 25px;
    }


    .social-buttons {

        flex-direction: column;
    }

    .social-buttons a {

        width: 100%;
    }

}


@media (max-width: 500px) {

    .hero h1 {

        font-size: 80px;

        letter-spacing: -2px;
    }

    .hero h2 {

        font-size: 35px;
    }

    .token-grid {

        grid-template-columns: 1fr;
    }

    .meme-section h2 {

        font-size: 55px;
    }

}


/* =========================================================
   FINAL MOBILE POLISH
   ========================================================= */

@media (max-width: 900px) {

    /* HERO */
    .hero h1 {
        font-size: 90px;
        letter-spacing: -3px;
    }

    .hero h2 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 480px;
    }

    /* HERO BUTTONS */
    .hero-buttons {
        width: 100%;
        max-width: 420px;
    }

    .button {
        width: 100%;
        padding: 17px 20px;
        font-size: 16px;
    }

    /* CONTRACT BOX */
    .contract-box {
        width: 100%;
        max-width: 500px;
    }

    .contract-box span {
        font-size: 13px;
        padding: 13px 10px;
    }

    .contract-box code {
        font-size: 10px;
        min-width: 0;
    }

    .contract-box button {
        font-size: 13px;
        padding: 13px 12px;
    }

    /* TICKER */
    .ticker {
        font-size: 18px;
        padding: 11px 0;
    }

    /* SECTION HEADINGS */
    .section h2 {
        font-size: 62px;
    }

    /* FEATURE CARDS */
    .feature-card {
        padding: 45px 30px;
    }

    .feature-number {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .feature-card h3 {
        font-size: 30px;
    }

    .feature-card p {
        font-size: 18px;
    }

    /* TOKEN BOXES */
    .token-item span {
        font-size: 15px;
    }

    .token-item strong {
        font-size: 27px;
    }

    /* REWARDS */
    .rewards-section p {
        font-size: 18px;
        max-width: 500px;
    }

    .rewards-section p:first-of-type {
        font-size: 22px;
    }

    .rewards-section .button {
        width: 100%;
        max-width: 420px;
    }

    /* MEME SECTION */
    .meme-section {
        min-height: 500px;
        padding: 80px 20px;
    }

    .big-label {
        font-size: 16px;
    }

    .meme-section h2 {
        font-size: 65px;
    }

    .meme-answer {
        font-size: 17px;
    }

    /* BUY SECTION */
    .buy-section p {
        font-size: 20px;
    }

    .large-button {
        font-size: 18px;
    }

    /* COMMUNITY */
    .community h2 {
        font-size: 65px;
    }

    .social-buttons {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .social-buttons a {
        width: 100%;
        font-size: 17px;
        padding: 17px 20px;
    }

    /* FOOTER */
    .footer-warning {
        font-size: 11px;
    }

    .copyright {
        font-size: 11px;
    }
}


@media (max-width: 500px) {

    /* SMALL PHONES */
    .navbar {
        height: 70px;
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 24px;
    }

    .nav-button {
        padding: 10px 13px;
        font-size: 14px;
    }

    /* HERO */
    .hero {
        padding: 55px 18px;
    }

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

    .hero h2 {
        font-size: 34px;
        margin-top: 28px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    /* CONTRACT */
    .contract-box span {
        font-size: 12px;
    }

    .contract-box code {
        font-size: 9px;
    }

    .contract-box button {
        font-size: 12px;
        padding: 13px 10px;
    }

    /* TICKER */
    .ticker {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    /* SECTIONS */
    .section {
        padding: 80px 20px;
    }

    .section-label {
        font-size: 15px;
    }

    .section h2 {
        font-size: 52px;
    }

    /* TOKEN */
    .token-grid {
        grid-template-columns: 1fr;
    }

    .token-item {
        padding: 25px;
    }

    .token-item span {
        font-size: 14px;
    }

    .token-item strong {
        font-size: 28px;
    }

    /* REWARDS */
    .rewards-section p {
        font-size: 17px;
    }

    .rewards-section p:first-of-type {
        font-size: 20px;
    }

    /* MEME */
    .meme-section {
        min-height: 450px;
        padding: 70px 18px;
    }

    .big-label {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .meme-section h2 {
        font-size: 52px;
    }

    .meme-answer {
        font-size: 16px;
        padding: 11px 16px;
    }

    /* COMMUNITY */
    .community {
        padding: 90px 20px;
    }

    .community h2 {
        font-size: 52px;
    }

    /* FOOTER */
    footer {
        padding: 60px 20px;
    }

    .footer-logo {
        font-size: 40px;
    }
}
