/* * * * * *
    BACKGROUND VIDEO
*/

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -10;
    opacity: 0.08;
    pointer-events: none;
}

/* * * * * *
    PRELOADER — video only, no text
*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#preloader-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

/* Lock scroll while preloader is active */
body.preloader-active {
    overflow: hidden;
}

/* * * * * */


/* * * * * *
    BASE STUFF
*/

    #section-2 h1::before,  #section-2 h1::after , #section-4 h1::before, #section-4 .todo-done::before, #section-5 h1::before, #disclaimer-text h2::after {
        position: absolute;
        width: 100%;
        z-index: -1;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        height: 50px;
        content: " ";

        overflow: visible;
    }
/* * * * * */


/* * * * * *
    MARQUEE
*/

    
    #header-scrolltext {
        position: relative;
        padding: 10px 0px;
        width: 100%;
        overflow: hidden;
        background-color: #7a621e;
        color: #f5dfc9;
        display: flex;
        align-items: center;
        font-size: 3rem;
        font-family: "Thesead", Amplitude, sans-serif;
        white-space: nowrap;
    }

    .marquee-content {
        display: flex;
        flex-direction: row;
        width: max-content;
        animation: marquee-infinite 30s linear infinite;
    }

    .marquee-content span {
        padding-right: 0px;
    }

    @keyframes marquee-infinite {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

/* * * * * */


/* * * * * *
    FLYING EFFECT
*/

    #scrolling-fly {
        position: fixed;
        top: -1200px;
        left: -1200px;
        width: 300px;
        z-index: 9999;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        transform-origin: center;
    }

    #scrolling-fly.flying {
        opacity: 1;
        animation: fly-diag-dramatic 8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes fly-diag-dramatic {
        0% {
            top: -10vh;
            left: -1500px;
            transform: scale(7) rotate(-5deg);
            opacity: 0;
            z-index: 10000;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            top: 150vh;
            left: 150vw;
            transform: scale(0) rotate(45deg);
            opacity: 0;
            z-index: 10000;
        }
    }

/* * * * * */

/* * * * * *
    HERO SECTION
*/

    #hero-section {
        display: flex;
        justify-content: flex-start;
        align-items: center;

        min-height: 100vh;
        width: 100%;
        box-sizing: border-box;

        padding: 60px 60px 60px 10%;

        position: relative;
        background-image: url("../ASSETS/hero-lastframe.jpg");
        background-size: cover;
        background-position: center;
        text-align: left;
        overflow-x: hidden;
    }

    #hero-right-img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 450px;
        z-index: 1;
        pointer-events: none;
        opacity: 0;
        animation: topSlideIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        animation-delay: 0.3s;
    }

    @keyframes topSlideIn {
        0% { transform: translateY(150px); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }

    @media only screen and (max-width: 768px) {
        #hero-right-img {
            width: 200px;
        }
    }

    #hero-image {
        height: 600px;
        max-height: 70vh;
        min-height: 410px;
        filter: blur(25px);
        animation: heroBlurIn 1.8s ease-out forwards;
    }

    @keyframes heroBlurIn {
        0% { filter: blur(25px); opacity: 0; }
        100% { filter: blur(0); opacity: 1; }
    }

    #hero-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;

        min-width: 300px;
        max-width: 500px;
        color: #fff;

        font-size: 1.5rem;
    } 
    
    #hero-text h1, #hero-text span {
        opacity: 0;
        filter: blur(12px);
        animation: textBlurTyping 1.1s ease-out forwards;
    }

    #hero-text h1 {
        font-size: 5rem;
        margin-bottom: 25px;
        animation-delay: 0.6s;
        text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

    #hero-text span:nth-child(2) { animation-delay: 1.1s; }
    #hero-text span:nth-child(3) { animation-delay: 1.6s; }
    #hero-text span:nth-child(4) { animation-delay: 2.1s; }
    #hero-text span:nth-child(5) { animation-delay: 2.6s; }
    #hero-text span:nth-child(6) { animation-delay: 3.1s; }
    #hero-text span:nth-child(7) { animation-delay: 3.6s; }

    @keyframes textBlurTyping {
        0% { filter: blur(15px); opacity: 0; transform: translateY(12px); }
        100% { filter: blur(0); opacity: 1; transform: translateY(0); }
    }


    #hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
        width: 100%;
    }

    #hero-ca {
        background-color: #f5dfc9;
        color: #000;
        padding: 10px 20px;
        border-radius: 15px;
        border-left: 4px solid black;
        border-bottom: 4px solid black;
        border-right: 2px solid black;
        border-top: 2px solid black;
        font-weight: bold;
        font-size: 0.95rem;
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        box-shadow: 5px 5px 0px black;
        margin-bottom: 10px;
    }

    #ca-text {
        font-family: 'Courier New', Courier, monospace;
        word-break: break-all;
        line-height: 1.1;
        letter-spacing: 0.5px;
    }

    /* CA container / box styles */
    .ca-and-socials {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .ca-container {
        width: 100%;
    }

    .ca-box {
        background-color: rgba(245, 223, 201, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 12px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.85rem;
        color: #fff;
        word-break: break-all;
        max-width: 420px;
    }

    .ca-box span {
        opacity: 1 !important;
        filter: none !important;
        animation: none !important;
        flex: 1;
        font-size: 0.78rem;
        letter-spacing: 0.3px;
    }

    .social-btns {
        display: flex;
        gap: 12px;
    }

    .social-btn {
        background-color: rgba(230, 194, 85, 0.9);
        border-left: 4px solid black;
        border-bottom: 4px solid black;
        border-right: 2px solid black;
        border-top: 2px solid black;
        border-radius: 12px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 3px 3px 0px black;
    }

    .social-btn:hover {
        transform: translate(-2px, -2px) rotate(-3deg) !important;
        box-shadow: 5px 5px 0px black;
    }

    #copy-btn {
        background-color: #e6c255;
        color: #000;
        border: 2px solid black;
        padding: 6px;
        cursor: pointer;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: transform 0.1s, background-color 0.2s, box-shadow 0.1s;
        box-shadow: 2px 2px 0px black;
    }

    #copy-btn:hover {
        background-color: #e6c255;
        transform: translate(-1px, -1px);
        box-shadow: 3px 3px 0px black;
    }

    #copy-btn:active {
        transform: translate(1px, 1px);
        box-shadow: 1px 1px 0px black;
    }

    @media only screen and (max-width: 760px) {
        #hero-text {
            text-align: center;
            align-items: center;
        }
        .ca-and-socials {
            align-items: center;
        }
        .ca-box {
            justify-content: center;
        }
    }

    @media only screen and (max-width: 480px) {
        #hero-section {
            padding: 40px 20px;
            justify-content: center;
        }
        #hero-text h1 {
            font-size: 3.5rem;
        }
    }
/* * * * * */


/* * * * * *
    CONTENT SECTIONS
*/

.content-section {
    width: 100%;
    max-width: 100%;

    padding: 50px 0px;
}

/* * * * * */


/* * * * * *
    SECTION TWO
*/

    #section-2 {
        background-color: #e6c255;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 50px 20px;
        position: relative;
        min-height: 35vh;
    }
    
    .about-content {
        padding: 30px;
        text-align: center;
        width: 30%;
        z-index: 10;
    }

    .about-content h2 {
        margin: 0 0 20px 0;
        font-size: 3.5rem;
        font-family: "Thesead", Amplitude, sans-serif;
        text-align: center;
        color: #000;
        text-shadow: 2px 2px 0px rgba(255,255,255,0.8);
    }

    .about-content p {
        margin: 0;
        font-size: 1.5rem;
        font-family: "Vividly", BerlinSans, sans-serif;
        line-height: 1.5;
        font-weight: bold;
        color: #333;
    }

    #sec2-img {
        position: absolute;
        left: -20%;
        bottom: -150px;
        width: 900px;
        z-index: 1;
        pointer-events: none;
    }

    @media only screen and (max-width: 768px) {
        .about-content {
            width: 90%;
            padding: 15px;
        }
        .about-content h2 {
            font-size: 2.5rem;
        }
        .about-content p {
            font-size: 1.1rem;
        }
        #sec2-img {
            display: none;
        }
    }

/* * * * * */


/* * * * * *
    SECTION THREE
*/

    #section-3 {
        min-height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff5ee;
        padding: 60px 20px;
    }

    #just-john {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #just-john span {
        font-size: 2rem;
        font-family: "Vividly", BerlinSans, sans-serif;
        color: #7a621e;
    }

    #just-john h1 {
        font-size: 5rem;
        margin: 0;
        color: #000;
    }

    @media only screen and (max-width: 640px) {
        #just-john h1 {
            font-size: 10vw;
        }
        #just-john span {
            font-size: 5vw;
        }
    }

/* * * * * */


/* * * * * *
    SECTION 4 — TO DO LIST
*/

    #section-4 {
        background-color: #e6c255;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    } #section-4 span {
        font-weight: bolder;
        font-size: 2rem;
    } #section-4 h1 {
        margin: 0px;

        position: relative;
        z-index: 4;
        overflow: visible;
    }

    #section-4 h1::before {
        width: 120%;
        left: -30px;
        top: -10px;
        height: 70px;
        background-image: url(../ASSETS/DECORATION/yellow_line_long.png);
    }

    #pump-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 50px;
        width: 95%;
        max-width: 1000px;
        margin: 40px 0;
        flex-wrap: wrap;
    }

    .buy-card-link {
        text-decoration: none;
        display: block;
        cursor: pointer;
        transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
        background-color: #fff5ee;
        border-left: 5px solid black;
        border-bottom: 5px solid black;
        border-right: 2px solid black;
        border-top: 2px solid black;
        border-radius: 15px;
        box-shadow: 6px 6px 0px black;
    }
    
    .buy-card-link:hover {
        transform: scale(1.05) rotate(-2deg) !important;
    }
    
    .buy-card-link:active {
        transform: scale(0.95) rotate(2deg) !important;
    }

    .buy-card-content {
        padding: 30px 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .buy-card-content h2 {
        margin: 0;
        font-size: 3rem;
        font-family: "Thesead", Amplitude, sans-serif;
        color: #000;
        text-shadow: 2px 2px 0px rgba(255,255,255,0.8);
    }

    .buy-card-content p {
        margin: 0;
        font-size: 1.2rem;
        font-weight: bold;
        color: #333;
        font-family: Tahoma, sans-serif;
    }

    #side-todolist {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }

    #section-4 .todolist .todo-done {
        position: relative;
        z-index: 1;
        width: fit-content;
    } #section-4 .todolist .todo-done::before {
        z-index: 2;
        width: 130%;
        position: absolute;
        height: 40px;
        top: 0px;
        left: -20px;
        background-image: url(../ASSETS/DECORATION/red_line_1.png);
        background-size: contain;
        background-repeat: no-repeat;
    }

    #section-4 .todolist i {
        font-weight: lighter;
    }

/* * * * * */


/* * * * * *
    SECTION 6 — VIDEO / PARALLAX SECTION
*/

#section-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0px;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#section-6::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../ASSETS/bg4.png");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

#section-6::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0,0,0,0.1);
    z-index: -1;
    transition: backdrop-filter 1.5s ease-out, -webkit-backdrop-filter 1.5s ease-out, opacity 1.5s ease-out;
}

#section-6.revealed::after {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    pointer-events: none;
}

/* * * * * */


/* * * * * *
    SECTION 5 — TOKENOMICS
*/

    #section-5 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #e6c255;
        height: 70vh;
        padding: 40px 20px;
    }

    #section-5 h1 {
        position: relative;
        margin: 0px;
        z-index: 2;
    }
    #section-5 h1::before {
        width: 130%;
        left: -45px;
        top: 0px;
        height: 56px;
        background-image: url("../ASSETS/DECORATION/yellow_line_short.png");
    }

    #section-5-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;

        width: 90%;
        max-width: 900px;
        padding: 30px 0px;
    }

    #char5-img {
        height: 350px;
        max-height: 50vh;
        width: auto;
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }

    .tokenomics-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
        min-width: 300px;
    }

    .token-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 10px;
        border-bottom: 2px dashed rgba(122, 98, 30, 0.3);
    }

    .token-info:last-child {
        border-bottom: none;
    }

    .token-info .label {
        font-family: "Vividly", BerlinSans, sans-serif;
        font-size: 1.2rem;
        color: #8c7020;
        opacity: 0.8;
        letter-spacing: 1px;
    }

    .token-info .value {
        font-family: "Thesead", Amplitude, sans-serif;
        font-size: 1.5rem;
        font-weight: bold;
        color: #7a621e;
        line-height: 1.2;
        margin-top: 5px;
    }

    @media only screen and (max-width: 680px) {
        #section-5 {
            height: auto;
            min-height: 70vh;
        }
        
        .token-info {
            align-items: center;
            text-align: center;
        }

        .tokenomics-list {
            min-width: 100%;
        }
    }

/* * * * * */
