:root {
    --primary-color: #D4AF37; 
    --secondary-color: #0D0D0D; 
    --text-color: #E0E0E0;
    --dark-grey: #1A1A1A;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.pexels.com/photos/270085/pexels-photo-270085.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 50px; /* Disesuaikan dengan tinggi header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

main {
    padding-bottom: 100px; 
}

.site-header-top {
    background-color: rgba(13, 13, 13, 0.9);
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: 50px;
    display: flex; /* Memastikan container di dalamnya bisa di-align */
    align-items: center;
}
.site-header-top .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.logo img {
    height: 45px;
    width: auto;
}

.site-footer {
    background-color: var(--secondary-color);
    padding: 10px; /* Sedikit dikurangi agar lebih compact */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--primary-color);
    z-index: 1000;
}
.footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.8rem;
    transition: color 0.3s;
}
.footer-button:hover {
    color: var(--primary-color);
}
.footer-button svg {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.slideshow-container { max-width: 1200px; position: relative; margin: 20px auto; box-shadow: 0 0 20px rgba(0,0,0,0.5); border-radius: 8px; overflow: hidden; }
.mySlides { display: none; }
.mySlides img { width: 100%; vertical-align: middle; }
.prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -22px; color: white; font-weight: bold; font-size: 20px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; background-color: rgba(0,0,0,0.5); }
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: var(--primary-color); color: var(--secondary-color); }
.dots-container { text-align: center; padding: 10px; }
.dot { cursor: pointer; height: 15px; width: 15px; margin: 0 5px; background-color: #717171; border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; }
.active, .dot:hover { background-color: var(--primary-color); }
.fade { animation-name: fade; animation-duration: 1.5s; }
@keyframes fade { from {opacity: .4} to {opacity: 1} }

.hero { text-align: center; padding: 60px 20px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem auto; }
.cta-button { display: inline-block; background-color: var(--primary-color); color: var(--secondary-color); padding: 15px 35px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6); }

.section { padding: 60px 0; background-color: rgba(26, 26, 26, 0.9); margin-top: 40px; border-top: 2px solid var(--primary-color); border-bottom: 2px solid var(--primary-color); }
.section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 40px; }
.section .container { padding: 0 2rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: var(--secondary-color); border-radius: 8px; overflow: hidden; transition: transform 0.3s ease; border: 1px solid var(--primary-color); }
.blog-card:hover { transform: translateY(-5px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 20px; }
.blog-content h3 { margin-top: 0; font-size: 1.4rem; }
.blog-content p { font-size: 0.95rem; line-height: 1.6; }
.blog-link { display: inline-block; margin-top: 15px; color: var(--primary-color); text-decoration: none; font-weight: bold; }
.blog-link:hover { text-decoration: underline; }

/* Gaya FAQ Baru dengan <details> */
.faq-item { margin-bottom: 10px; border-bottom: 1px solid #444; }
.faq-question { width: 100%; padding: 15px; font-size: 1.2rem; color: var(--text-color); cursor: pointer; position: relative; list-style: none; /* Hapus marker default */ }
.faq-question::-webkit-details-marker { display: none; } /* Hapus marker di Chrome/Safari */
.faq-question::after { content: '+'; position: absolute; right: 15px; font-size: 1.5rem; color: var(--primary-color); transition: transform 0.3s; }
.faq-answer { padding: 0 15px 15px 15px; line-height: 1.7; color: #ccc; }
details[open] > .faq-question::after { transform: rotate(45deg); }


.page-header { text-align: center; padding: 40px 20px; border-bottom: 1px solid var(--primary-color); }
.page-header h1 { font-size: 3rem; margin: 0; }
.article-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; padding: 40px 0; }
.article-card { background: var(--dark-grey); border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s; border: 1px solid #444; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
.article-list a.article-card { text-decoration: none; color: inherit; } /* Menghapus style inline */
.article-card img { width: 100%; height: 220px; object-fit: cover; }
.article-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.article-meta { font-size: 0.85rem; color: #aaa; margin-bottom: 15px; }
.read-more-btn { display: inline-block; margin-top: 20px; color: var(--secondary-color); background-color: var(--primary-color); padding: 10px 20px; text-decoration: none; font-weight: bold; border-radius: 5px; transition: background-color 0.3s; align-self: flex-start; }
.read-more-btn:hover { background-color: #fff; }

.article-container { max-width: 800px; margin: 40px auto; background-color: rgba(26, 26, 26, 0.95); padding: 2rem 3rem; border-radius: 8px; border: 1px solid #444; }
.article-header h1 { font-size: 2.8rem; line-height: 1.2; margin: 0; text-align: center; }
.article-container .article-meta { color: #aaa; margin: 10px 0 30px 0; text-align: center; }
.featured-image { width: 100%; height: auto; border-radius: 8px; margin-bottom: 30px; }
.article-body { font-size: 1.1rem; line-height: 1.8; }
.article-body h2 { font-size: 1.8rem; margin-top: 40px; margin-bottom: 20px; border-bottom: 2px solid var(--primary-color); padding-bottom: 10px; }
.article-body p { margin-bottom: 20px; }
.article-body a { color: var(--primary-color); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-body blockquote { border-left: 4px solid var(--primary-color); margin: 30px 20px; padding-left: 20px; font-style: italic; color: #ccc; font-size: 1.2rem; }
.article-body ul { list-style-type: '⚽'; padding-left: 30px; }
.article-body li { padding-left: 15px; margin-bottom: 10px; }
.back-to-blog { display: inline-block; margin-top: 40px; color: var(--primary-color); text-decoration: none; font-weight: bold; }