/* Custom CSS untuk overrides Tailwind atau styling spesifik */
body {
    font-family: 'Inter', sans-serif; /* Font utama Inter */
    background-color: #000000; /* Latar belakang paling hitam */
    color: #e0e0e0; /* Warna teks terang */
    line-height: 1.6;
}
.logo-text {
    font-family: 'Roboto Mono', monospace; /* Font untuk logo DWV */
}
/* Styling untuk scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a; /* Track scrollbar gelap */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #00C853; /* Warna aksen hijau untuk thumb scrollbar */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00A040; /* Warna hijau lebih gelap saat hover */
}
.header-bg {
    background-color: #0A0A0A; /* Header sangat gelap */
}
.nav-bg {
    background-color: #111111; /* Navigasi sangat gelap */
}
.main-content-bg {
    background-color: #1A1A1A; /* Konten utama sangat gelap */
}
.card-bg {
    background-color: #111111; /* Latar belakang card sangat gelap */
}
.accent-border {
    border-color: #00C853; /* Warna aksen hijau */
}
.accent-text {
    color: #00C853; /* Warna aksen hijau untuk teks */
}
.chart-container {
    background-color: #111111; /* Latar belakang chart container sangat gelap */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6); /* Bayangan lebih gelap */
    margin-bottom: 30px;
}
.chart-container iframe {
    width: 100%;
    height: 400px; /* Tinggi default untuk iframe chart */
    border-radius: 8px;
    overflow: hidden;
}
.external-link-button {
    display: inline-block;
    background-color: #00C853; /* Warna aksen hijau */
    color: white;
    padding: 12px 25px;
    border-radius: 9999px; /* Bentuk pil */
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.4); /* Bayangan hijau */
    text-decoration: none;
    margin: 5px;
}
.external-link-button:hover {
    background-color: #00A040; /* Warna hijau lebih gelap saat hover */
    transform: translateY(-2px); /* Efek sedikit terangkat */
}

/* Custom bullet point styling */
.custom-bullet-list {
    list-style: none; /* Remove default bullet points */
    padding-left: 0; /* Remove default padding */
}

.custom-bullet-list li {
    position: relative;
    padding-left: 1.8em; /* Space for the custom bullet and some margin */
    margin-bottom: 0.8em; /* Spacing between list items */
    line-height: 1.5; /* Ensure text wraps nicely with bullet */
}

.custom-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0.5em; /* Position of the bullet */
    top: 0.6em; /* Adjust vertically to align with text */
    width: 0.6em; /* Size of the bullet */
    height: 0.6em;
    background-color: #00C853; /* Accent green color */
    border-radius: 50%; /* Make it a circle */
    transform: translateY(-50%); /* Center vertically */
}
