@font-face {
    font-family: 'To Japan';
    src: url('../fonts/1154623929.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Shaky Hand Some Comic';
    src: url('../fonts/8601408.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    background-attachment: fixed;
    font-family: 'To Japan', Arial, sans-serif;
    color: white;
    overflow-x: hidden;
}

/* Scrolling Banner */
.scrolling-banner {
    width: 100%;
    background: #000000;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    padding: 20px 0;
}

.banner-content {
    display: inline-block;
    animation: scroll 5s linear infinite;
}

.banner-content span {
    margin: 0 2px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%);
        /* Mulai dari setengah konten */
    }

    100% {
        transform: translateX(0);
        /* Bergerak ke kanan */
    }
}

/* Optional: Pause on hover */
.scrolling-banner:hover .banner-content {
    animation-play-state: paused;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    background: #FCB559;
    color: rgb(41, 41, 41);
    border: 3px solid #000;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'To Japan', Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 3px 6px 0px black;

}

.btn:hover {
    background: #ffce8e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn_icon {
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_icon:hover {
    background: #f0f0f0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #DACDCD !important;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #000;
    box-shadow: 3px 6px 0px black;

}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;

}

.header__logo_icon {
    width: 100px;
    height: auto;
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 3px 4px 0px black;
    animation: bounceAndGlow 2s ease-in-out infinite;
    /* Animasi loop berjalan terus */

}

@keyframes bounceAndGlow {

    0%,
    100% {
        transform: translateY(0);
        /* Posisi awal */
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        /* Glow minimal */
    }

    50% {
        transform: translateY(-5px);
        /* Naik 5px */
    }
}

.header__nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 25px;
    background: #fff;
    border: 3px solid #000;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 3px 6px 0px black;

}

.nav-link:hover {
    background: #FCB559;
    transform: translateY(-2px);
    color: rgb(65, 65, 65);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.header__burger span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-section.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Ini adalah kuncinya untuk efek parallax sederhana */
}

.hero__content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero__left {
    flex: 1;
}

.hero__dog {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 70px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease-in-out;
    /* Transisi halus untuk semua efek */
}

.hero__dog:hover {
    transform: scale(1.1) rotate(5deg);
    /* Membesar 10% dan rotasi 5 derajat */
}

.hero__right {
    flex: 1;
    text-align: center;
}

.hero__title {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 0px #000, -4px -4px 0px #000, 4px -4px 0px #000, -4px 10px 0px #000;
    margin-bottom: 20px;
    line-height: 1;
}

.hero__text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section - Reworked for unique layout */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    /* Warna yang berbeda dari hero/tokenomics */
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    position: relative;
    overflow: hidden;
    /* Penting untuk efek visual */
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about__title {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 0px #000;
    /* Shadow lebih sederhana */
    text-align: center;
    /* Judul di tengah */
    margin-bottom: 60px;
    line-height: 1.1;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Dua kolom utama */
    gap: 50px;
    /* Jarak antar kolom */
    align-items: start;
    /* Align item ke atas */
}

.about__media-area {
    display: flex;
    flex-direction: column;
    /* Gambar dan video di tumpuk vertikal */
    gap: 30px;
    align-items: center;
    /* Pusatkan gambar/video */
    padding: 20px;
    /* Padding di sekitar area media */
    background: rgba(0, 0, 0, 0.1);
    /* Background ringan */
    border-radius: 25px;
    border: 5px solid #000;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
}

.about__image-wrapper,
.about__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* Lebar maksimum media */
    border: 5px solid #FCB559;
    /* Border warna cerah */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 0px #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__image-wrapper:hover,
.about__video-wrapper:hover {
    transform: translateY(-10px) rotate(-3deg);
    box-shadow: 10px 10px 0px #000;
}

.about__image--main,
.about__video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Pastikan gambar/video mengisi ruang */
}

.about__image-caption,
.about__video-caption {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    /* Sembunyikan caption secara default */
    transition: opacity 0.3s ease;
}

.about__image-wrapper:hover .about__image-caption,
.about__video-wrapper:hover .about__video-caption {
    opacity: 1;
    /* Tampilkan caption saat hover */
}


.about__text-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Jarak antar card */
    align-items: center;
    /* Pusatkan card */
}

.about__card {
    background: #fff;
    border: 5px solid #000;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 8px 8px 0px black;
    color: #000;
    text-align: center;
    width: 100%;
    max-width: 500px;
    /* Lebar maksimum card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__card:hover {
    transform: translateX(10px) rotate(2deg);
    /* Efek hover yang berbeda */
    box-shadow: 12px 12px 0px black;
}

.about__card--alt {
    background: #FCB559;
    /* Warna card alternatif */
    color: #fff;
    border-color: #000;
    transform: rotate(-3deg);
    /* Rotasi sedikit untuk kesan playful */
    margin-top: 20px;
    /* Beri jarak agar tidak terlalu rapat */
}

.about__card--alt:hover {
    transform: translateX(-10px) rotate(0deg);
    /* Efek hover untuk card alternatif */
}


.about__card--alt .about__card-title {
    color: #fff;
    /* Judul putih untuk card alternatif */
    text-shadow: 1px 1px 0px #000;
}

.about__card--alt .about__card-text {
    color: #eee;
}

.about__card-title {
    font-size: 32px;
    font-weight: bold;
    color: #FCB559;
    text-shadow: 1px 1px 0px #000;
    margin-bottom: 15px;
}

.about__card-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: bold;
    color: #333;
}

.about__btn {
    margin-top: 40px;
    /* Jarak dari card */
    font-size: 20px;
    padding: 15px 30px;
}


/* Responsive adjustments for the About Section */
@media (max-width: 992px) {
    .about__content {
        grid-template-columns: 1fr;
        /* Satu kolom pada tablet */
        gap: 50px;
    }

    .about__title {
        font-size: 60px;
    }

    .about__media-area {
        padding: 15px;
    }

    .about__image-wrapper,
    .about__video-wrapper {
        max-width: 100%;
        /* Lebar penuh */
    }

    .about__card {
        max-width: 100%;
        /* Lebar penuh */
    }

    .about__card--alt {
        margin-top: 0;
        /* Hapus margin atas pada stack */
        transform: rotate(0deg);
        /* Hapus rotasi */
    }

    .about__card--alt:hover {
        transform: translateX(0) rotate(0deg);
        /* Hapus efek hover translateX */
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 0;
    }

    .about__title {
        font-size: 45px;
        margin-bottom: 40px;
    }

    .about__media-area {
        gap: 20px;
        padding: 10px;
    }

    .about__card {
        padding: 25px;
    }

    .about__card-title {
        font-size: 26px;
    }

    .about__card-text {
        font-size: 16px;
    }

    .about__btn {
        font-size: 18px;
        padding: 12px 25px;
    }
}

/* New Section: Milestone Timeline (Carousel Roadmap) */
.timeline {
    padding: 100px 0;
    background-color: #DACDCD;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    position: relative;
    overflow: hidden;
}

.timeline__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline__title {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 0px #000, -4px -4px 0px #000, 4px -4px 0px #000, -4px 10px 0px #000;
    text-align: center;
    margin-bottom: 60px;
    /* Adjust margin to accommodate the video card */
    line-height: 1.4;
}

/* NEW: Video Card Styling */
.timeline__video-card {
    background: #fff;
    border: 5px solid #000;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 8px 8px 0px black;
    color: #000;
    text-align: center;
    max-width: 800px;
    /* Lebar maksimal card video */
    margin: 0px auto 70px auto;
    /* Margin bawah untuk memisahkan dari carousel */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.timeline__video-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 12px 12px 0px black;
}

.timeline__video-title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.4;
    color: #FCB559;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 15px;
}

.timeline__video-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
    font-weight: bold;
}

.timeline__video-wrapper {
    width: 100%;
    max-width: 700px;
    /* Batasi lebar video di dalam card */
    border: 5px solid #FCB559;
    /* Border warna cerah untuk video */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 5px 5px 0px #000;
}

.timeline__video {
    width: 100%;
    height: auto;
    display: block;
}

/* END NEW: Video Card Styling */


.timeline__carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.timeline__carousel {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 40px;
    padding: 20px 0;
}

/* Sembunyikan scrollbar untuk Webkit (Chrome, Safari) */
.timeline__carousel::-webkit-scrollbar {
    display: none;
}

.timeline__item {
    flex: 0 0 auto;
    width: 350px;
    background: #fff;
    border: 5px solid #000;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 8px 8px 0px black;
    color: #000;
    text-align: center;
    scroll-snap-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timeline__item:hover {
    transform: translateY(-10px) rotate(3deg);
    box-shadow: 12px 12px 0px black;
}

.timeline__item-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border: 3px solid #FCB559;
    border-radius: 50%;
    padding: 5px;
    background: #f0f0f0;
}

.timeline__item-date {
    font-size: 18px;
    font-weight: bold;
    color: #2b2b2b;
    margin-bottom: 10px;
    display: block;
}

.timeline__item-title {
    font-size: 28px;
    line-height: 1.4;
    font-weight: bold;
    color: #FCB559;
    text-shadow: 1px 1px 0px #000;
    margin-bottom: 15px;
}

.timeline__item-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}

.timeline__nav-btn {
    background: #FCB559;
    border: 3px solid #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 3px 6px 0px black;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    z-index: 5;
}

.timeline__nav-btn:hover {
    background: #ffd39a;
    transform: translateY(-3px);
}

.timeline__nav-btn img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

/* Responsive adjustments for the Timeline Section */
@media (max-width: 992px) {
    .timeline__title {
        font-size: 60px;
    }

    /* NEW: Video card responsiveness */
    .timeline__video-card {
        padding: 25px;
        margin-bottom: 50px;
        max-width: 100%;
    }

    .timeline__video-title {
        font-size: 32px;
    }

    .timeline__video-text {
        font-size: 16px;
    }

    .timeline__video-wrapper {
        max-width: 100%;
        border-radius: 10px;
    }

    /* END NEW */

    .timeline__carousel-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .timeline__carousel {
        width: 100%;
        padding: 0 20px;
    }

    .timeline__nav-btn {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .timeline__item {
        width: 300px;
    }

    .timeline__title {
        font-size: 50px;
    }

    /* NEW: Video card responsiveness */
    .timeline__video-card {
        padding: 20px;
    }

    .timeline__video-title {
        font-size: 28px;
    }

    /* END NEW */
}

@media (max-width: 576px) {
    .timeline__title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    /* NEW: Video card responsiveness */
    .timeline__video-card {
        padding: 15px;
        margin-bottom: 30px;
    }

    .timeline__video-title {
        font-size: 24px;
    }

    .timeline__video-text {
        font-size: 14px;
    }

    /* END NEW */

    .timeline__carousel {
        padding: 0 10px;
    }

    .timeline__item {
        width: 260px;
        padding: 20px;
    }

    .timeline__item-title {
        font-size: 24px;
    }

    .timeline__item-text {
        font-size: 14px;
    }

    .timeline__item-icon {
        width: 80px;
        height: 80px;
    }

    .timeline__nav-btn {
        width: 50px;
        height: 50px;
    }

    .timeline__nav-btn img {
        width: 25px;
        height: 25px;
    }
}

/* New Section: Roadmap (example) */
.roadmap {
    padding: 80px 0;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    background: #FCB559;
}

.roadmap__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.roadmap__content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    /* Tambahkan atau pastikan ini ada untuk stacking awal */
    flex-direction: column;
    /* Mengatur flex-direction menjadi kolom secara default */
}

.roadmap__image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
    /* Tambahkan display grid untuk mengatur gambar dalam 2 baris 1 kolom */
    display: grid;
    grid-template-columns: 1fr;
    /* Satu kolom */
    gap: 20px;
    /* Jarak antar gambar */
}

.roadmap__image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 5px solid #000;
    box-shadow: 8px 8px 0px black;
    transition: transform 0.3s ease-in-out;
}

.roadmap__image:hover {
    transform: scale(1.02);
}

.roadmap__card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 5px solid #000;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 8px 8px 0px black;
    color: #000;
    text-align: center;
}

.roadmap__card-title {
    font-size: 45px;
    font-weight: bold;
    color: #FCB559;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.roadmap__card-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
    font-weight: bold;
}

.roadmap__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.roadmap__list li {
    background: #f0f0f0;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.roadmap__list li:hover {
    background: #FCB559;
    color: #fff;
}

/* Responsive adjustments for the new section */
@media (min-width: 769px) {

    /* Untuk layar yang lebih besar dari 768px */
    .roadmap__content {
        flex-direction: row;
        /* Kembali ke layout baris pada layar yang lebih besar */
    }
}

@media (max-width: 768px) {
    .roadmap__content {
        flex-direction: column;
        gap: 30px;
    }

    .roadmap__image-container,
    .roadmap__card {
        min-width: unset;
        width: 100%;
    }

    .roadmap__card {
        padding: 30px;
    }

    .roadmap__card-title {
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .roadmap__card {
        padding: 20px;
    }

    .roadmap__card-title {
        font-size: 30px;
    }

    .roadmap__card-text {
        font-size: 16px;
    }

    .roadmap__list li {
        font-size: 14px;
    }
}

/* New Section: Community Highlights */
.community {
    padding: 100px 0;
    /* Lebih banyak padding untuk ruang */
    background-color: #DACDCD;
    /* Warna yang mirip dengan body, tapi bisa diubah */
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    position: relative;
    /* Penting untuk positioning elemen anak */
    overflow: hidden;
    /* Mengatasi potensi overflow gambar */
}

.community__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    /* Pastikan konten di atas background */
}

.community__title {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 0px #000, -4px -4px 0px #000, 4px -4px 0px #000, -4px 10px 0px #000;
    text-align: center;
    margin-bottom: 60px;
}

.community__content {
    display: flex;
    align-items: center;
    /* Memastikan semua elemen sejajar vertikal */
    justify-content: center;
    /* Pusatkan konten */
    gap: 30px;
    /* Jarak antar elemen */
    flex-wrap: wrap;
    /* Memungkinkan wrap pada layar kecil */
}

.community__card {
    background: #fff;
    border: 5px solid #000;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 5px 10px 0px black;
    color: #000;
    text-align: center;
    flex: 1;
    /* Agar card bisa melebar dan menyempit */
    min-width: 300px;
    /* Lebar minimum sebelum wrap */
    max-width: 400px;
    /* Lebar maksimum agar tidak terlalu lebar */
    position: relative;
    /* Penting untuk transform */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.community__card:hover {
    transform: translateY(-10px) rotate(-2deg);
    /* Efek hover yang unik */
    box-shadow: 8px 15px 0px black;
}

/* Penyesuaian posisi card agar sedikit tumpang tindih dengan gambar */
.community__card_left {
    transform: translateX(20px);
    /* Geser ke kanan sedikit */
}

.community__card_right {
    transform: translateX(-20px);
    /* Geser ke kiri sedikit */
}

.community__card-title {
    font-size: 32px;
    font-weight: bold;
    color: #FCB559;
    text-shadow: 1px 1px 0px #000;
    margin-bottom: 15px;
    line-height: 1.4;

}

.community__card-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: bold;
    color: #333;
}

.community__btn {
    margin-top: 15px;
    /* Jarak dari teks */
}

.community__image-wrapper {
    flex-shrink: 0;
    /* Agar gambar tidak menyusut terlalu banyak */
    z-index: 10;
    /* Pastikan gambar di atas card saat tumpang tindih */
    box-shadow: 10px 15px 0px rgba(0, 0, 0, 0.4);
    /* Bayangan lebih kuat untuk gambar utama */
    border: 5px solid #000;
    border-radius: 50%;
    /* Membuat gambar bulat */
    overflow: hidden;
    /* Penting untuk border-radius */
    transition: transform 0.3s ease-in-out;
}

.community__image-wrapper:hover {
    transform: scale(1.05) rotate(5deg);
    /* Efek hover pada gambar */
}

.community__main-image {
    width: 350px;
    /* Ukuran tetap untuk gambar utama */
    height: 350px;
    /* Ukuran tetap */
    object-fit: cover;
    /* Pastikan gambar mengisi area tanpa terdistorsi */
    display: block;
    /* Menghilangkan spasi ekstra di bawah gambar */
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .community__card_left {
        transform: translateX(0);
        /* Hapus geseran pada tablet */
    }

    .community__card_right {
        transform: translateX(0);
        /* Hapus geseran pada tablet */
    }

    .community__content {
        flex-direction: column;
        /* Stack card dan gambar pada tablet */
        gap: 40px;
    }

    .community__image-wrapper {
        order: -1;
        /* Pindahkan gambar ke atas saat stack */
        margin-bottom: 20px;
    }

    .community__main-image {
        width: 300px;
        height: 300px;
    }

    .community__title {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .community__title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .community__card {
        padding: 25px;
    }

    .community__card-title {
        font-size: 28px;
    }

    .community__card-text {
        font-size: 16px;
    }

    .community__main-image {
        width: 250px;
        height: 250px;
    }
}

/* Tokenomics Section */
.tokenomics {
    padding: 80px 0;
    background-color: #FCB559;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
}

.tokenomics__container {
    max-width: 1200px;
    margin: 0 auto;
}

.tokenomics__inner {
    background: rgb(138, 124, 131);
    border: 5px solid #000;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 10px 10px 20px rgba(153, 72, 72, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.tokenomics__content {
    flex: 1;
    text-align: center;
}

.tokenomics__title {
    font-size: 100px;
    font-weight: bold;
    color: white;
    text-shadow: 4px 4px 0px #050505, -4px -4px 0px #000000, 4px -4px 0px #000000, -4px 10px 0px #020202;
    margin-bottom: 40px;
    line-height: 1.4;
}

.tokenomics__items {
    margin-bottom: 10px;
    flex-wrap: wrap;
    /* Memungkinkan wrap jika layar kecil */
}

.tokenomics__item {
    background: #000;
    color: #ffffff;
    margin: 10px;
    border-radius: 20px;
    border: 3px solid #000;
    text-align: center;
    min-width: 150px;
    flex: 0 0 auto;
    padding: 10px;
    /* Menjaga item tetap fleksibel tapi tidak meregang */
}

.tokenomics__label {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.tokenomics__value {
    display: block;
    font-size: 28px;
    font-weight: bold;
}

.tokenomics__contract {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 25px;
    padding: 15px 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 3px 6px 0px black;

}

.image-pov {
    text-align: center;
    margin-top: 20px;
}

.image-gif {
    max-width: 800px;
    height: auto;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 3px 10px 0px black;

}

.contract__address {
    font-size: 16px;
    color: #000;
    word-break: break-all;
}

.contract__btn {
    background: #FCB559;
    color: #000;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}

.tokenomics__image {
    flex: 0 0 300px;
    text-align: center;
}

.tokenomics__image-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-shadow: 2px 2px 0px #fff;
    margin-bottom: 10px;
}

.tokenomics__image-subtext {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-shadow: 1px 1px 0px #fff;
}

.tokenomics__image-container {
    background: #FCB559;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
    position: relative;
    transform: rotate(20deg);
    box-shadow: 3px 6px 0px black;


}


.tokenomics__image-container img {
    width: 500px;
    height: auto;
    border-radius: 10px;


}

.contract__address {
    flex: 1;
    font-family: 'Shaky Hand Some Comic', monospace;
    font-size: 20px;
    color: #000;
    word-break: break-all;
    margin: 0;

}

.contract__btn {
    background: #FCB559;
    color: #000;
    border: 3px solid #000;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 3px 6px 0px black;
}

.contract__btn:hover {
    background: #ffc881;
    transform: scale(1.05);
    color: black;

}

/* --- Contract Info Section --- */
.contract-info {
    display: flex;
    /* Untuk menempatkan alamat dan tombol di satu baris */
    align-items: center;
    /* Pusatkan secara vertikal */
    gap: 10px;
    /* Jarak antara alamat dan tombol */
    margin-top: 20px;
    /* Jarak dari elemen di atasnya */
    background-color: rgba(0, 0, 0, 0.4);
    /* Background semi-transparan */
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    /* Efek blur untuk background */
    -webkit-backdrop-filter: blur(5px);
    /* Kompatibilitas Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Border samar */
    max-width: 350px;
    /* Batasi lebar */
    justify-content: center;
    /* Pusatkan konten jika lebar kurang */
}

.contract-address {
    font-family: 'Shaky Hand Some Comic', cursive;
    /* Gunakan font meme Anda */
    color: #FCB559;
    /* Warna kuning cerah untuk alamat kontrak */
    font-size: 1.1em;
    white-space: nowrap;
    /* Mencegah teks putus baris */
    overflow: hidden;
    /* Sembunyikan bagian yang overflow */
    text-overflow: ellipsis;
    /* Tambahkan elipsis (...) jika terpotong */
    flex-grow: 1;
    /* Biarkan teks mengisi ruang yang tersedia */
}

.copy-btn {
    background-color: #FCB559;
    /* Warna kuning cerah untuk tombol */
    color: #000;
    /* Warna teks/ikon hitam */
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    /* Ukuran ikon */
    display: flex;
    /* Untuk pusatkan ikon */
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background-color: #e6c020;
    /* Warna sedikit lebih gelap saat hover */
}

.copy-feedback {
    color: #4CAF50;
    /* Warna hijau untuk feedback "COPIED!" */
    font-weight: bold;
    margin-left: 10px;
    opacity: 0;
    /* Sembunyikan secara default */
    transition: opacity 0.3s ease;
}

.copy-feedback.show {
    opacity: 1;
    /* Tampilkan saat class 'show' ditambahkan */
}

/* How to Buy Section */
.buy {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #DACDCD;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;

}

.buy__bg-right {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: auto;
    opacity: 0.3;
    z-index: 1;
}

.buy__container {
    position: relative;
    z-index: 2;
}

.buy__title {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 4px 0px #000, -4px -4px 0px #000, 4px -4px 0px #000, -4px 10px 0px #000;
    margin-bottom: 60px;
    text-align: center;
}

.buy__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.buy__item {
    background: #fff;
    border: 5px solid #000;
    border-radius: 25px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 3px 6px 0px black;

}

.buy__number {
    background: #000;
    color: #FCB559;
    width: 50px;
    height: 50px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    transform: rotate(10deg);
}

.buy__text {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
    margin: 0;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.1);
    border-top: 3px solid #000;
    background: url('../images/hero-section.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo_icon {
    width: 300px;
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 3px 6px 0px black;
    transition: all 0.3s ease-in-out;
    /* Transisi halus untuk semua efek */

}

.footer__logo_icon:hover {
    transform: translateY(-5px);
    /* Bergerak ke atas 5px */
    animation: pulse 0.6s ease-in-out infinite;
    /* Efek denyut berulang */
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-5px) scale(1);
        /* Posisi awal */
    }

    50% {
        transform: translateY(-5px) scale(1.05);
        /* Membesar sedikit */
    }
}

.footer__socials {
    display: flex;
    gap: 15px;
}

.footer__social-btn {
    width: 50px;
    height: 50px;
    box-shadow: 3px 6px 0px black;

}

.footer__social-btn img {
    width: 30px;
    height: 30px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: #1B3100;
        border-top: 3px solid #000;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .header__nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__burger {
        display: flex;
    }

    .header__burger.burger-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__burger.burger-open span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.burger-open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.hero__content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
}

.hero__title {
    font-size: 50px;
}

.hero__text {
    font-size: 18px;
}

.about__content {
    flex-direction: column;
}

.about__title,
.buy__title,
.tokenomics__title {
    font-size: 50px;
}

.tokenomics__items {
    flex-direction: column;
    align-items: center;
}

.buy__items {
    grid-template-columns: 1fr;
}

.footer__container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.about__bg-right,
.buy__bg-right {
    display: none;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 40px;
    }

    .about__title,
    .buy__title,
    .tokenomics__title {
        font-size: 35px;
    }

    .tokenomics__inner {
        padding: 30px 20px;
    }

    .tokenomics__contract {
        flex-direction: column;
        gap: 15px;
    }

    .buy__item {
        padding: 20px;
    }
}