/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Prevent right click */
button, a, img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-context-menu: none;
    context-menu: none;
}

button::-webkit-context-menu,
a::-webkit-context-menu,
img::-webkit-context-menu {
    display: none;
}

button, a, img {
    pointer-events: auto;
}

button:contextmenu,
a:contextmenu,
img:contextmenu {
    display: none;
}

:root {
    --primary-color: #4eb39e;
    --secondary-color: #aad10e; 
    --accent-color: #49a7d2;
    --dark-color: #07919c;
    --text-color: #ffffff;
    --light-text: #e0e0e0;
    
    /* Font Families */
    --font-cartoon: 'Bangers', cursive;
    --font-main: 'Fredoka', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -ms-overflow-style: none;
    overscroll-behavior: none;
}

body::-webkit-scrollbar {
    display: none;
    -webkit-overflow-scrolling: touch;
}

body .img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
    border-radius: 10px;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled::before {
    opacity: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 100vw;
    margin: 0 auto;
    position: relative;
    background: transparent;
    transition: padding 0.3s ease-in-out;
}

.header.scrolled .navbar {
    padding: 0.6rem 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-part1 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(230, 79, 87, 0.2);
}

.logo-part2 {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(74, 228, 193, 0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(74, 228, 193, 0.2),
        rgba(230, 79, 87, 0.2)
    );
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(74, 228, 193, 0.5);
}

.nav-links a:hover::before {
    transform: translateX(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(74, 228, 193, 0.3);
}

/* Hero Section */
.hero {
    padding: 150px 5% 100px;
    background: url('../images/bg.jpg?v=<?php echo time(); ?>') no-repeat center center;
    background-size: cover;
    color: var(--text-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(7, 145, 156, 0.85) 0%, 
        rgba(7, 145, 156, 0.90) 70%,
        rgba(7, 145, 156, 0.95) 90%,
        rgba(7, 145, 156, 1) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at center, var(--secondary-color) 0%, transparent 60%),
        linear-gradient(to bottom, transparent 70%, var(--dark-color) 100%);
    opacity: 0.1;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: -15px;
}

.cta-buttons {
    margin: 0;
    width: 100%;
    max-width: 300px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Button Styles */
.button {
    --stone-50: var(--text-color);
    --stone-800: var(--dark-color);
    --yellow-400: var(--secondary-color);

    font-size: 1rem;
    cursor: pointer;
    position: relative;
    font-family: "Rubik", sans-serif;
    font-weight: bold;
    line-height: 1;
    padding: 1px;
    transform: translate(-4px, -4px);
    outline: none;
    outline-offset: 5px;
    border-radius: 9999px;
    background-color: var(--stone-800);
    color: var(--stone-800);
    transition:
        transform 150ms ease,
        box-shadow 150ms ease;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    box-shadow:
        0.5px 0.5px 0 0 var(--stone-800),
        1px 1px 0 0 var(--stone-800),
        1.5px 1.5px 0 0 var(--stone-800),
        2px 2px 0 0 var(--stone-800),
        2.5px 2.5px 0 0 var(--stone-800),
        3px 3px 0 0 var(--stone-800),
        0 0 0 2px var(--stone-50),
        0.5px 0.5px 0 2px var(--stone-50),
        1px 1px 0 2px var(--stone-50),
        1.5px 1.5px 0 2px var(--stone-50),
        2px 2px 0 2px var(--stone-50),
        2.5px 2.5px 0 2px var(--stone-50),
        3px 3px 0 2px var(--stone-50),
        3.5px 3.5px 0 2px var(--stone-50),
        4px 4px 0 2px var(--stone-50);

    width: 100%;

    &:hover {
        transform: translate(0, 0);
        box-shadow: 0 0 0 2px var(--stone-50);
    }

    &:active,
    &:focus-visible {
        outline-color: var(--yellow-400);
    }

    &:focus-visible {
        outline-style: dashed;
    }

    & > div {
        position: relative;
        pointer-events: none;
        background-color: var(--yellow-400);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 9999px;
        -webkit-tap-highlight-color: transparent;

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 9999px;
            opacity: 0.5;
            background-image: radial-gradient(
                rgb(255 255 255 / 80%) 20%,
                transparent 20%
            ),
            radial-gradient(rgb(255 255 255 / 100%) 20%, transparent 20%);
            background-position:
                0 0,
                4px 4px;
            background-size: 8px 8px;
            mix-blend-mode: hard-light;
            animation: dots 0.5s infinite linear;
        }

        & > span {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.25rem;
            gap: 0.25rem;
            filter: drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.25));
    color: var(--dark-color);
            font-family: var(--font-cartoon);
            font-size: 1.3rem;
            letter-spacing: 1px;

            & > span {
                color: var(--accent-color);
            }

            &:active {
                transform: translateY(2px);
            }
        }
    }
}

@keyframes dots {
    0% {
        background-position:
            0 0,
            4px 4px;
    }
    100% {
        background-position:
            8px 0,
            12px 4px;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-text);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.community-text {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 0 #ffffff;
    cursor: pointer;
    object-fit: cover;
    padding: 0;
    border: 2px solid #ffffff;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 0 var(--secondary-color);
}

.footer .logo {
    font-size: 2.5rem;
    margin-top: 1rem;
}

.footer-logo .logo-part1 {
    color: var(--accent-color);
}

.footer-logo .logo-part2 {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 5%;
    }

    .community-text {
        font-size: 1.8rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-icon {
        width: 65px;
        height: 65px;
        box-shadow: 3px 3px 0 0 #ffffff;
        padding: 0;
        object-fit: cover;
        border: 2px solid #ffffff;
    }

    .social-icon:active {
        transform: translate(3px, 3px);
    }

    .footer .logo {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 5%;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .community-text {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-icon {
        width: 55px;
        height: 55px;
        box-shadow: 2px 2px 0 0 #ffffff;
        padding: 0;
        object-fit: cover;
        border: 2px solid #ffffff;
    }

    .social-icon:active {
        transform: translate(2px, 2px);
    }

    .footer .logo {
        font-size: 2rem;
    }
}

/* Main Content Layout */
.main-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 6rem 5%;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.section-container {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

/* About Section */
.gallery-stack {
    position: relative;
    padding: 4rem 0;
    background: var(--dark-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-right: 1rem;
    color: var(--secondary-color);
    font-family: var(--font-cartoon);
    font-size: 2.5rem;
    text-shadow: 2px 2px 0 var(--dark-color);
    z-index: 4;
}

.gallery-title i {
    font-size: 2rem;
    z-index: 4;
}

.stack-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    perspective: 1000px;
}

.photo-stack {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    transform-style: preserve-3d;
    padding: 20px;
}

.stack-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.5s ease-out;
    transform-origin: center;
    border: 8px solid var(--text-color);
    background-color: var(--text-color);
    aspect-ratio: 16/9;
}

/* Posisi awal stack dengan rotasi acak */
.stack-img:nth-child(1) { 
    transform: translateZ(0px) rotate(-2deg) scale(1); 
    z-index: 5; 
}
.stack-img:nth-child(2) { 
    transform: translateZ(-20px) translateX(-15px) translateY(10px) rotate(4deg) scale(0.98); 
    z-index: 4; 
    filter: brightness(0.95);
}
.stack-img:nth-child(3) { 
    transform: translateZ(-40px) translateX(10px) translateY(-15px) rotate(-5deg) scale(0.96); 
    z-index: 3; 
    filter: brightness(0.9);
}
.stack-img:nth-child(4) { 
    transform: translateZ(-60px) translateX(-20px) translateY(5px) rotate(7deg) scale(0.94); 
    z-index: 2; 
    filter: brightness(0.85);
}
.stack-img:nth-child(5) { 
    transform: translateZ(-80px) translateX(15px) translateY(-10px) rotate(-3deg) scale(0.92); 
    z-index: 1; 
    filter: brightness(0.8);
}

.stack-img.sliding {
    animation: throwOut 1.2s cubic-bezier(0.36, 0, 0.66, -0.56) forwards;
    transform-origin: left bottom;
}

@keyframes throwOut {
    0% {
        transform: translateZ(0) rotate(-2deg) scale(1) translateX(0) translateY(0);
        opacity: 1;
    }
    80% {
        opacity: 1;
        transform: translateZ(100px) rotate(45deg) scale(0.8) translateX(150%) translateY(-100%);
    }
    100% {
        transform: translateZ(100px) rotate(45deg) scale(0.8) translateX(200%) translateY(-150%);
        opacity: 0;
    }
}

/* Hover effect */
.photo-stack:hover .stack-img:not(:first-child) {
    transform: translateZ(-20px) scale(0.95);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 5%;
        width: 40%;
        padding: 0.5rem;
        z-index: 999;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-end;
    }

    .nav-links.active {
        pointer-events: all;
    }

    .nav-links a {
        --stone-50: var(--text-color);
        --stone-800: var(--accent-color);
        --yellow-400: var(--secondary-color);
        
        opacity: 0;
        transform: translateX(100%) translate(-2px, -2px);
        margin: 0;
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
        font-weight: bold;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        position: relative;
        padding: 1px;
        border-radius: 9999px;
        background-color: var(--stone-800);
        color: var(--stone-800);
        transition: transform 150ms ease, box-shadow 150ms ease;
        box-shadow:
            0.5px 0.5px 0 0 var(--stone-800),
            1px 1px 0 0 var(--stone-800),
            1.5px 1.5px 0 0 var(--stone-800),
            0 0 0 2px var(--stone-50),
            0.5px 0.5px 0 2px var(--stone-50),
            1px 1px 0 2px var(--stone-50),
            1.5px 1.5px 0 2px var(--stone-50);
        will-change: transform, opacity;
    }

    .nav-links a:hover {
        transform: translate(0, 0);
        box-shadow: 0 0 0 2px var(--stone-50);
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 9999px;
        background-color: var(--yellow-400);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .nav-links a span {
        position: relative;
        display: block;
        padding: 0.5rem 0.8rem;
        color: var(--dark-color);
        z-index: 1;
    }

    .nav-links.active a {
        animation: slideIn 0.3s ease forwards;
    }

    .nav-links.closing a {
        animation: slideOut 0.3s ease forwards;
        animation-delay: 0s !important; /* Override semua delay */
    }

    /* Delay hanya untuk animasi masuk */
    .nav-links.active a:not(.closing a):nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active a:not(.closing a):nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active a:not(.closing a):nth-child(3) { animation-delay: 0.3s; }
    .nav-links.active a:not(.closing a):nth-child(4) { animation-delay: 0.4s; }
    .nav-links.active a:not(.closing a):nth-child(5) { animation-delay: 0.5s; }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 250px;
    }

    .cta-buttons {
        max-width: 250px;
    }

    .gallery-stack {
        padding: 0 1rem 4rem;
    }

    .gallery-title {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    .gallery-title i {
        font-size: 1.8rem;
    }

    .stack-container {
        max-width: 100%;
        padding: 0;
        position: relative;
        width: 90%;
        margin: 0 auto;
        transform: none;
        left: auto;
    }

    .photo-stack {
        height: 300px;
        width: 100%;
        max-width: 350px;
        position: relative;
        margin: 0 auto;
        transform: none;
        left: auto;
        padding: 0;
    }

    .stack-img {
        aspect-ratio: 3/4;
    }

    .button {
        transform: translate(-2px, -2px);
        font-size: 0.9rem;
        box-shadow:
            0.5px 0.5px 0 0 var(--stone-800),
            1px 1px 0 0 var(--stone-800),
            1.5px 1.5px 0 0 var(--stone-800),
            2px 2px 0 0 var(--stone-800),
            0 0 0 2px var(--stone-50),
            0.5px 0.5px 0 2px var(--stone-50),
            1px 1px 0 2px var(--stone-50),
            1.5px 1.5px 0 2px var(--stone-50),
            2px 2px 0 2px var(--stone-50);

        & > div > span {
            padding: 0.6rem 1rem;
            font-size: 1.2rem;
        }
    }

    .gallery-description {
        margin-top: 2rem;
        padding: 0 1.5rem;
        font-size: 1rem;
        max-width: 100%;
    }

    .header.scrolled {
        transform: scale(0.8);
    }
    
    .navbar {
        padding: 1rem 5%;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 120px 3% 80px;
    }

    .hero-image {
        max-width: 200px;
    }

    .cta-buttons {
        max-width: 200px;
    }

    .photo-stack {
        height: 250px;
        max-width: 280px;
    }

    .button {
        transform: translate(-1px, -1px);
        font-size: 0.85rem;
        box-shadow:
            0.5px 0.5px 0 0 var(--stone-800),
            1px 1px 0 0 var(--stone-800),
            0 0 0 2px var(--stone-50),
            0.5px 0.5px 0 2px var(--stone-50),
            1px 1px 0 2px var(--stone-50);

        & > div > span {
            padding: 0.5rem 0.9rem;
            font-size: 1.1rem;
        }
    }

    .gallery-stack {
        padding: 0 1rem 4rem;
    }

    .gallery-title {
        margin-bottom: 1.5rem;
        margin-top: 2rem;
    }
    
    .gallery-title i {
        font-size: 1.6rem;
    }

    .stack-img:nth-child(1) { 
        transform: translateZ(0) translateX(-3%) rotate(-4deg) scale(1);
        left: 3%;
    }
    .stack-img:nth-child(2) { 
        transform: translateZ(-20px) translateX(2%) translateY(15px) rotate(5deg) scale(0.96);
        left: -2%;
    }
    .stack-img:nth-child(3) { 
        transform: translateZ(-40px) translateX(-4%) translateY(-20px) rotate(-6deg) scale(0.92);
        left: 4%;
    }
    .stack-img:nth-child(4) { 
        transform: translateZ(-60px) translateX(3%) translateY(10px) rotate(7deg) scale(0.88);
        left: -3%;
    }
    .stack-img:nth-child(5) { 
        transform: translateZ(-80px) translateX(-5%) translateY(-15px) rotate(-8deg) scale(0.84);
        left: 5%;
    }

    .gallery-description {
        margin-top: 1.5rem;
        padding: 0 1rem;
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 100%;
    }

    .header.scrolled {
        transform: scale(0.85);
    }
    
    .navbar {
        padding: 0.9rem 5%;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%) translate(-2px, -2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translate(-2px, -2px);
    }
}

@keyframes slideOut {
    0% {
        opacity: 1;
        transform: translateX(0) translate(-2px, -2px);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) translate(-2px, -2px);
    }
}

.gallery-description {
    max-width: 300px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    z-index: 4;
}

.gallery-description p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Slide Up Animation */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
    will-change: opacity, transform;
    max-width: 100%;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
    max-width: 100%;
}

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

/* Tokenomics Section */
.tokenomics-wrapper {
    padding: 2rem;
    background: var(--dark-color);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    box-shadow: 5px 5px 0 0 var(--secondary-color);
    width: 100%;
}

.tokenomics {
    position: relative;
}

.tokenomics-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.token-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    min-width: 0; /* Untuk handling overflow */
}

.info-item h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.info-item p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Contract Address Item */
.info-item.contract-item {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.copy-btn {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--secondary-color);
    padding: 0.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    z-index: 2;
}

.copy-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.copy-btn i {
    font-size: 1rem;
    transition: all 0.2s ease;
}

.copy-btn.copied {
    animation: pop 0.3s ease;
}

@keyframes pop {
    0% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.2);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

.contract-address {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    padding-right: 2.5rem;
    word-break: break-all;
    position: relative;
}

/* Price Items */
.info-item.price-item {
    grid-column: span 2;
}

.price-up {
    position: relative;
    overflow: hidden;
    background: rgba(0, 255, 0, 0.05) !important;
    border: 1px solid rgba(6, 245, 231, 0.2) !important;
}

.price-down {
    position: relative;
    overflow: hidden;
    background: rgba(255, 0, 0, 0.05) !important;
    border: 1px solid rgba(255, 0, 0, 0.2) !important;
}

/* Shimmer effect untuk price up */
.price-up::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(6, 245, 231, 0.05) 25%,
        rgba(6, 245, 231, 0.1) 35%,
        rgba(6, 245, 231, 0.2) 50%,
        rgba(6, 245, 231, 0.1) 65%,
        rgba(6, 245, 231, 0.05) 75%,
        transparent 100%
    );
    animation: shimmer 4s ease-in-out infinite;
}

/* Shimmer effect untuk price down */
.price-down::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 0, 0, 0.05) 25%,
        rgba(255, 0, 0, 0.1) 35%,
        rgba(255, 0, 0, 0.2) 50%,
        rgba(255, 0, 0, 0.1) 65%,
        rgba(255, 0, 0, 0.05) 75%,
        transparent 100%
    );
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(0%);
    }
    50% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .token-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .token-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .info-item {
        padding: 0.75rem;
    }

    .info-item h3 {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    .copy-btn {
        padding: 0.4rem;
    }

    .copy-btn i {
        font-size: 0.9rem;
    }

    .contract-address {
        font-size: 0.8rem;
    }

    .info-item.price-item {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .token-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-item.contract-item {
        grid-column: span 2;
    }

    .copy-btn {
        padding: 0.3rem;
    }

    .copy-btn i {
        font-size: 0.8rem;
    }

    .contract-address {
        font-size: 0.75rem;
    }
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        padding: 4rem 1rem;
        gap: 3rem;
    }

    .section-container {
        width: 100%;
        display: block;
        padding: 0;
    }

    .tokenomics-wrapper {
        margin: 0 auto;
        max-width: 800px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 3rem 1rem;
        gap: 2.5rem;
    }

    .tokenomics-wrapper {
        padding: 1.5rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .tokenomics-wrapper {
        padding: 1rem;
        margin: 0;
        border-width: 1px;
        box-shadow: 3px 3px 0 0 var(--secondary-color);
    }
}

/* Tokenomics Title - untuk konsistensi */
.tokenomics-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.2rem;
    z-index: 4;
}

.tokenomics-title i {
    font-size: 2rem;
    z-index: 4;
}

/* Roadmap Section */
.roadmap {
    position: relative;
    padding: 6rem 5%;
    background: url('../images/gb01.jpg?v=<?php echo time(); ?>') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        var(--dark-color) 0%,
        rgba(26, 26, 26, 0.8) 20%,
        rgba(26, 26, 26, 0.8) 80%,
        var(--dark-color) 100%
    );
    z-index: 1;
}

.roadmap-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
}

.roadmap-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    font-size: 1.2rem;
    z-index: 4;
}

.roadmap-title i {
    font-size: 2rem;
}

.roadmap-phases {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-item:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 0 0 var(--secondary-color);
}

.phase-number {
    color: var(--secondary-color);
    font-family: var(--font-cartoon);
    font-size: 1.5rem;
    white-space: nowrap;
}

.phase-content {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .roadmap {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .roadmap-title {
        margin-bottom: 2rem;
    }

    .roadmap-phases {
        gap: 1rem;
    }

    .phase-item {
        padding: 1rem;
        gap: 0.8rem;
    }

    .phase-number {
        font-size: 1rem;
    }

    .phase-content {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .roadmap {
        padding: 3rem 1rem;
    }

    .roadmap-title {
        margin-bottom: 1.5rem;
    }

    .roadmap-phases {
        gap: 0.8rem;
    }

    .phase-item {
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .phase-number {
        font-size: 0.9rem;
    }

    .phase-content {
        font-size: 0.85rem;
    }

    .phase-item:hover {
        transform: translateX(3px);
        box-shadow: -2px 2px 0 0 var(--secondary-color);
    }
}

.available-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.7rem;
    margin-top: 1rem;
}

.available-title {
    color: var(--text-color);
    font-size: 1.8rem;
    text-align: center;
}

.available-title span {
    color: var(--secondary-color);
}

.available-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.available-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 0 #ffffff;
    cursor: pointer;
    object-fit: cover;
    padding: 0;
    border: 2px solid #ffffff;
}

.available-icon:hover {
    transform: translateY(-2px);
}

.available-icon:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 0 #ffffff;
}

@media (max-width: 768px) {
    .available-title {
        font-size: 1.5rem;
    }

    .available-icon {
        width: 50px;
        height: 50px;
        box-shadow: 3px 3px 0 0 #ffffff;
    }

    .available-icon:active {
        transform: translate(3px, 3px);
    }
}

@media (max-width: 480px) {
    .available-title {
        font-size: 1.2rem;
    }

    .available-icon {
        width: 45px;
        height: 45px;
        box-shadow: 2px 2px 0 0 #ffffff;
    }

    .available-icon:active {
        transform: translate(2px, 2px);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.5s ease-in-out;
}

.loading-overlay.slide-out {
    transform: translateY(-100%);
}

.loader {
    width: 80px;
    height: 50px;
    position: relative;
}

.loader-text {
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0;
    color: var(--secondary-color);
    animation: text_713 3.5s ease both infinite;
    font-size: .8rem;
    letter-spacing: 1px;
    font-family: var(--font-cartoon);
}

.load {
    background-color: var(--accent-color);
    border-radius: 50px;
    display: block;
    height: 16px;
    width: 16px;
    bottom: 0;
    position: absolute;
    transform: translateX(64px);
    animation: loading_713 3.5s ease both infinite;
}

.load::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: inherit;
    animation: loading2_713 3.5s ease both infinite;
}

@keyframes text_713 {
    0% {
        letter-spacing: 1px;
        transform: translateX(0px);
    }

    40% {
        letter-spacing: 2px;
        transform: translateX(26px);
    }

    80% {
        letter-spacing: 1px;
        transform: translateX(32px);
    }

    90% {
        letter-spacing: 2px;
        transform: translateX(0px);
    }

    100% {
        letter-spacing: 1px;
        transform: translateX(0px);
    }
}

@keyframes loading_713 {
    0% {
        width: 16px;
        transform: translateX(0px);
    }

    40% {
        width: 100%;
        transform: translateX(0px);
    }

    80% {
        width: 16px;
        transform: translateX(64px);
    }

    90% {
        width: 100%;
        transform: translateX(0px);
    }

    100% {
        width: 16px;
        transform: translateX(0px);
    }
}

@keyframes loading2_713 {
    0% {
        transform: translateX(0px);
        width: 16px;
    }

    40% {
        transform: translateX(0%);
        width: 80%;
    }

    80% {
        width: 100%;
        transform: translateX(0px);
    }

    90% {
        width: 80%;
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
        width: 16px;
    }
} 