
/* * * * * *
    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: #3a1e0d;
        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; /* Jangan hilang dulu sebelum keluar */
        }
        100% {
            top: 150vh;
            left: 150vw;
            transform: scale(0) rotate(45deg);
            opacity: 0;
            z-index: 10000;
        }
    }

/* * * * * */

/* * * * * *
    HERO SECTION
*/

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

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

        column-gap: 5%;
        padding: 60px 40px;

        flex-wrap: wrap;
        position: relative; /* Added for absolute children */
        background-color: #fff5ee;
        text-align: center;
        overflow-x: hidden;
    }

    #hero-right-img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 450px;
        z-index: 1;
        pointer-events: none;
        opacity: 0; /* Start hidden for animation */
        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); /* Start blurred */
        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: center;
        text-align: center;

        min-width: 300px;
        max-width: 500px;

        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: 3.5rem;
        margin-bottom: 25px;
        animation-delay: 0.6s;
    }

    #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;
    }

    #copy-btn {
        background-color: #e8983a;
        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: #f0c9a0;
        transform: translate(-1px, -1px);
        box-shadow: 3px 3px 0px black;
    }

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

    #social-row {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
    }

    #social-row a {
        background-color: #e8983a;
        border-left: 4px solid black;
        border-bottom: 4px solid black;
        border-right: 2px solid black;
        border-top: 2px solid black;
        border-radius: 15px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
        box-shadow: 4px 4px 0px black;
    }

    #social-row a:hover {
        background-color: #f5dfc9;
        transform: translate(-3px, -3px);
        box-shadow: 7px 7px 0px black;
    }

    #social-row a:active {
        transform: translate(1px, 1px);
        box-shadow: 2px 2px 0px black;
    }

    #social-row img {
        height: 30px;
        width: 30px;
        display: block;
        object-fit: contain;
    }

    @media only screen and (max-width: 760px) {
        #hero-text {
            text-align: center;
        }
    }
    





/* * * * * */





















/* * * * * *
    CONTENT SECTIONS
*/

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

    padding: 50px 0px;
}

/* * * * * */








/* * * * * *
    SECTION TWO
     - John isnt special
*/

    #section-2 {
        background-color: #f0c9a0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 50px 20px; /* Reduced from 80px */
        position: relative;
        overflow: hidden;
        min-height: 35vh; /* Slightly more compact */
    }
    
    #section-2 #isnt-john {
        font-size: 2rem; /* Reduced from 2.5rem */
        font-weight: bolder;
        max-width: 800px;
        position: relative;
        z-index: 10;
        line-height: 1.2;
        text-align: center;
        margin: 10px auto 20px auto; /* Tighter top margin */
    }

    #section-2 #heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    #section-2 #heading h1 {
        margin-bottom: 10px;
    }

    #sec2-img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 450px;
        z-index: 1;
        pointer-events: none; /* Allows clicks to pass through to elements behind if any */
    }

    @media only screen and (max-width: 768px) {
        #section-2 #isnt-john {
            font-size: 1.8rem;
        }
        #sec2-img {
            width: 250px;
            opacity: 0.6; /* Slight fade on mobile so it doesn't distract from text */
        }
        .ca-box {
            padding: 8px 15px;
        }
        .ca-box span {
            font-size: 0.9rem;
        }
        .social-btn {
            width: 48px;
            height: 48px;
        }
        .social-btn img {
            width: 24px;
            height: 24px;
        }
    }

    /* * * * * *
        CA & SOCIAL BUTTONS
    */

    .ca-and-socials {
        display: flex;
        flex-direction: row; /* Row on desktop for compact look */
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 5px;
        z-index: 5;
        position: relative;
        flex-wrap: wrap; /* Wrap on smaller screens */
    }

    .ca-container {
        display: flex;
        justify-content: center;
        width: auto;
    }

    .ca-box {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: #fcebd2;
        border: 2px solid black;
        border-radius: 14px;
        padding: 6px 15px;
        box-shadow: 3px 3px 0px black;
        font-family: monospace;
        font-weight: bold;
        color: black;
    }

    .ca-box span {
        font-size: 0.95rem;
        letter-spacing: -0.3px;
    }

    #copy-btn {
        background: linear-gradient(135deg, #f2a84d 0%, #e68d2a 100%);
        border: 1.5px solid black;
        border-radius: 10px;
        padding: 6px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.1s, box-shadow 0.1s, filter 0.2s;
        box-shadow: 2px 2px 0px black;
    }

    #copy-btn:hover {
        filter: brightness(1.1);
    }

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

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

    .social-btn {
        background: linear-gradient(135deg, #f2a84d 0%, #e68d2a 100%);
        border: 2px solid black;
        border-radius: 12px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 2.5px 2.5px 0px black;
        transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
        text-decoration: none;
    }

    .social-btn:hover {
        transform: translate(-2px, -2px);
        box-shadow: 5px 5px 0px black;
        filter: brightness(1.05);
    }

    .social-btn:active {
        transform: translate(2px, 2px);
        box-shadow: 1px 1px 0px black;
    }

    .social-btn img {
        width: 22px;
        height: 22px;
        filter: grayscale(1) brightness(0); /* Make icons black as per screenshot */
        opacity: 0.8;
    }
    
    /* * * * * */
    /* * * * * */







/* * * * * *
    SECTION 3 (BREAKER)
      [ JOHN IS JUST JOHN ]
*/

    #section-3 {
        width: 100%;
        overflow: hidden;
        display: grid;
        place-items: center;

        position: relative;
    }

    #just-john {
        width: 90%;
        max-width: 600px;
        overflow: hidden;

        display: grid;
        place-items: center;

        padding: 30px 20px;

        box-sizing: border-box;
        background-color: #fff5ee;
        text-align: center;


        border: solid 4px black;
        border-radius: 30px;

        margin: 100px 0px;
    } #just-john h1 {
        width: fit-content;
        margin: 0px;
        font-size: 6rem;
    } #just-john span {
        font-weight: bolder;
        font-size: 1.5rem;
    }

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

        #just-john span {
            font-size: 3vw;
        }
    }

/* * * * * */











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

    #section-4 {
        background-color: #f0c9a0;
        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; /* Responsive wrap for small screens */
    }

    #section-4 #pleb-pump {
        width: 500px;
        max-width: 90%;
        margin: 0;
        transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    
    #section-4 #pleb-pump:hover {
        transform: scale(1.05) rotate(-3deg);
    }
    
    #section-4 #pleb-pump:active {
        transform: scale(0.95) rotate(2deg);
    }

    #side-todolist {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* List-style alignment */
        text-align: left;
    }

    #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;
    }

    #progress_bar {
        width: 56%;
        max-width: 525px;
        margin-top: 30px;
    }


/* * * * * */











/* * * * * *
    SECTION 6
      VIDEO 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.avif");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2; /* Deepest layer */
}

/* The Blur Overlay */
#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); /* Subtle dark tint while blurred */
    z-index: -1; /* Above background, below content */
    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-6 #video-container, 
#section-6 h1, 
#section-6 span {
    position: relative;
    z-index: 10; /* Keep content above the overlay */
}

#section-6 img {
    max-width: 100%;
}
#video-container {

    width: fit-content;
    max-width: 90%;
    box-sizing: border-box;
    height: fit-content;


    border-radius: 15px;

    border-left: solid 5px black;
    border-bottom: solid 5px black;
    border-right: solid 2px black;
    border-top: solid 2px black;

    color: black;   

    position: relative;
    overflow: hidden;

    padding: 15px;
}

#video-container #twitter-bar {
    display: flex;

    gap: 10px;
    padding-bottom: 15px;
}
#twitter-bar div {
    display: flex;
    flex-direction: column;
} #twitter-bar a {
    text-decoration: none;
    font-family: "Vividly", BerlinSans, sans-serif;
} #twitter-bar #pfp {
    height: 45px;
    border-radius: 3px;
} #twitter-bar #checkmark {
    width: 17px;
} #twitter-bar span {
    display: flex;
    align-items: center;

} #video-container #video-wrapper {
    max-width: 500px;
    width: 100%;
    max-height: 500px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
} #video-wrapper video {

    /*background-image: url("./ASSETS/section-6/videoframe_0.jpg");*/
    background-size: cover;
    background-position: center;
    margin: 0px;
    padding: 0px;
    max-width: 100%;
}

/* * * * * */











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


    #section-5 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #f0c9a0;
        height: 70vh; /* Fixed height as requested */
        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;
        border-bottom: 2px solid rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }

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

    .token-info .value {
        font-family: inherit;
        font-size: 1.5rem;
        font-weight: bold;
        color: #3a1e0d;
        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%;
        }
    }

    @media only screen and (max-width: 680px) {
        #chart-mobile {
            display: block;
        } #chart-desktop {
            display: none;
        }

        #section-5 span {
            margin-top: 0px;
        }
    }


/* * * * * */











