/* Base styles */
body {
    background-color: #000;
    color: #f3f4f6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header styles */
header {
    background-image: linear-gradient(to right, #111827, #000000);
}

/* Navigation styles */
.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: #d1d5db;
}

.nav-link:hover {
    color: #ffffff;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero section */
.hero {
    /*background-color: #1f2937;*/
    /*padding: 1rem 0;*/
    /*border-bottom: 1px solid #374151;*/
    background: linear-gradient(135deg, #121212, #1e1e1e);
    box-sizing: border-box;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
}

/* Content area */
.content-area {
    min-height: 500px;
}

/* Blog post styles */
.blog-post {
    background-color: #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.blog-post:hover {
    transform: scale(1.01);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid #4b5563;
    background-color: #1f2937;
    color: #d1d5db;
}

.pagination button.active {
    background-color: #2563eb;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Ad container */
.ad-container {
    margin: 2rem 0;
    text-align: center;
}

/* Blog content */
.blog-content {
    line-height: 1.7;
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-content ul, .blog-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content ul {
    list-style-type: disc; /* Atau circle, square, dll. */
    color: white; /* Untuk warna teks LI */
}

.blog-content ol {
    list-style-type: decimal; /* Atau lower-alpha, upper-roman, dll. */
    color: white; /* Untuk warna teks LI */
}

/* Pastikan LI juga memiliki warna putih */
.blog-content ul li,
.blog-content ol li {
    color: white;
}

.blog-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.blog-content a:hover {
    color: #2563eb;
}

.blog-content pre {
    background-color: #374151;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.blog-content code {
    font-family: monospace;
    background-color: #374151;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
}