:root {
    --background-color: #f4f7fc;
    --card-bg-color: #ffffff;
    --primary-text-color: #1a202c;
    --secondary-text-color: #718096;
    --border-color: #e2e8f0;
    --shadow-color: rgba(149, 157, 165, 0.1);
    --accent-color: #4299e1;
    --buy-color: #28a745;
    --sell-color: #f56565;
    --community-color: #007bff;
}

body {
    background-color: var(--background-color);
    color: var(--primary-text-color);
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.main-logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.main-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8em;
    margin-bottom: 25px;
    color: var(--primary-text-color);
}

.bio {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--secondary-text-color);
    margin: 0 auto 30px auto;
    max-width: 750px;
    text-align: center;
}

.metrics-section {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.metrics-header {
    margin-bottom: 40px;
}

.metrics-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2em;
    margin: 0 0 10px 0;
}

.metrics-header p {
    font-size: 1em;
    color: var(--secondary-text-color);
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px 20px;
}

.metric-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.metric-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--primary-text-color);
}

.metric-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.1em;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-text-color);
}

.metric-label {
    font-size: 0.75em;
    font-weight: 700;
    color: var(--secondary-text-color);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.metric-change {
    font-size: 0.9em;
    font-weight: 500;
}

.metric-change.positive { color: var(--buy-color); }
.metric-change.community { color: var(--community-color); }
.metric-change.neutral { color: var(--secondary-text-color); }

/* --- PERUBAHAN DI SINI --- */

.chart-container {
    width: 100%;
    max-width: 900px;
    /* Menghapus background, border, dan shadow dari container utama */
    margin-top: 40px;
}

.chart-header-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 0 10px 20px 10px; /* Memberi jarak bawah dari chart */
    text-align: left;
}

.chart-info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8em;
    color: var(--secondary-text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-value {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-text-color);
}

.info-value.price {
    font-size: 1.5em;
    font-family: 'Orbitron', sans-serif;
}

.info-value.change.positive {
    color: var(--buy-color);
}

.info-value.contract {
    font-family: 'Roboto Mono', monospace;
    font-size: 1em;
}

.chart-iframe-wrapper {
    width: 100%;
    height: 450px;
    /* Memindahkan background, border, dan shadow ke pembungkus iframe */
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -2px var(--shadow-color);
    overflow: hidden; /* Penting agar iframe mengikuti border-radius */
}

.chart-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* --- AKHIR PERUBAHAN --- */


.platform-links-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    font-weight: 500;
    color: var(--secondary-text-color);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.platform-link:hover {
    color: var(--accent-color);
    background-color: rgba(66, 153, 225, 0.1);
}

.platform-link svg {
    width: 24px;
    height: 24px;
}

.main-footer {
    text-align: center;
    padding: 25px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-text-color);
}