/* General Styling */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styling untuk Latar Belakang Animasi Partikel */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Header & Navigation */
header {
    background-color: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f7b731;
}

/* Floating Social Links */
.social-links {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: #f7b731;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease;
}
.social-icon:hover {
    transform: scale(1.1);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #f7b731;
    color: #000000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffc95e;
    transform: translateY(-3px);
}

/* Main Content Sections */
main section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #f7b731;
}

/* ▼▼▼ KELAS BARU UNTUK EFEK KACA ▼▼▼ */
.glass-panel {
    background: rgba(255, 255, 255, 0.05); /* Latar semi-transparan */
    backdrop-filter: blur(10px); /* Efek buram */
    -webkit-backdrop-filter: blur(10px); /* Untuk Safari */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}
/* ▲▲▲ KELAS BARU UNTUK EFEK KACA ▲▲▲ */

#about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Tokenomics Section */
.tokenomics-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}
.tokenomics-list {
    flex-basis: 50%;
}
.tokenomics-list ul {
    list-style: none;
    padding: 0;
}
.tokenomics-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.2); /* Dibuat lebih transparan */
    padding: 10px;
    border-radius: 5px;
}
.contract-address {
    margin-top: 30px;
}
.address-box {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    word-break: break-all;
}
.address-box button {
    margin-left: 15px;
    background-color: #f7b731;
    border: none;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.tokenomics-chart-placeholder {
    flex-basis: 40%;
    height: 300px;
    border: 2px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #555;
}

/* Roadmap Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #f7b731;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #000;
    border: 4px solid #f7b731;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-content h3 {
    margin: 0;
    color: #f7b731;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    nav {
        margin-top: 15px;
    }
    nav a {
        margin: 0 10px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .tokenomics-content {
        flex-direction: column;
    }
    .timeline::after {
        left: 10px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 0;
        left: 0 !important;
        text-align: left !important;
    }
    .timeline-dot {
        left: 0 !important;
    }
}