* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0a0c;
    color: #ffffff;
}

/* NAVBAR HEADER */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    background: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.logo h1 span {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.btn-group {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 9px 22px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-login {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-login:hover {
    background-color: #ffd700;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.btn-daftar {
    background: linear-gradient(135deg, #ffd700, #ff9900);
    color: #000000;
    border: none;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.btn-daftar:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
}

/* RUNNING TEXT */
.marquee-container {
    background: linear-gradient(90deg, #111, #ffd700, #ffae00, #ffd700, #111);
    color: #000000;
    padding: 8px 0;
    font-weight: 800;
    font-size: 13px;
}

/* SLIDER BANNER TOP */
.banner-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.slides {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 380px;
    object-fit: cover;
}

.dots-container {
    position: absolute;
    bottom: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: #ffd700;
    width: 25px;
    border-radius: 10px;
    box-shadow: 0 0 8px #ffd700;
}

/* FITUR KEREN 1: QUICK LINK GRID */
.quick-links-section {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 15px;
}

.section-title-sm {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.quick-card {
    background: linear-gradient(145deg, #15151a, #1a1a22);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.quick-icon {
    font-size: 28px;
    background: rgba(255, 215, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.quick-info h4 {
    font-size: 15px;
    color: #ffd700;
    margin-bottom: 2px;
}

.quick-info p {
    font-size: 12px;
    color: #aaa;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0055;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 10px;
}

.ai-badge {
    background: #00e5ff;
    color: #000;
}

/* GAME SECTION */
.game_section {
    max-width: 1200px;
    margin: 35px auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    color: #ffd700;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.game_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 18px;
}

.game_box {
    background: linear-gradient(145deg, #18181c, #101012);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.game_box:hover {
    transform: translateY(-7px);
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.game_img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.game_img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.game_box:hover .game_img img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game_box:hover .overlay {
    opacity: 1;
}

.btn-play-hover {
    background: #ffd700;
    color: #000;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 0 10px #ffd700;
}

.cy-game-body {
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cy-game-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cy-rtp-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #aaa;
}

.cy-rtp-num {
    color: #00ff66;
    font-weight: 700;
}

.cy-rtp-track {
    background-color: #222;
    height: 7px;
    border-radius: 4px;
    overflow: hidden;
}

.cy-rtp-fill {
    background: linear-gradient(90deg, #00ff66, #ffd700);
    height: 100%;
    border-radius: 4px;
}

.cy-btn-play {
    display: block;
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #000000;
    text-decoration: none;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cy-btn-play:hover {
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
}

/* FITUR KEREN 2: ARTIKEL SEO & FAQ ACCORDION */
.seo-article-section {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 15px;
}

.article-card {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
}

.article-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 20px;
}

.article-card p {
    color: #ccc;
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-container {
    margin-top: 25px;
    border-top: 1px dashed rgba(255, 215, 0, 0.3);
    padding-top: 20px;
}

.faq-container h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 16px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: #141418;
    color: #fff;
    border: 1px solid #333;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.faq-question:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.faq-answer {
    display: none;
    background: #0d0d10;
    padding: 12px 15px;
    border-radius: 0 0 6px 6px;
    border: 1px solid #222;
    border-top: none;
}

.faq-answer p {
    font-size: 12.5px;
    color: #aaa;
    margin: 0;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #777;
    font-size: 12px;
    border-top: 1px solid #222;
    margin-top: 30px;
}

@media (max-width: 600px) {
    .game_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .quick-grid {
        grid-template-columns: 1fr;
    }
    .logo h1 {
        font-size: 20px;
    }
    .btn {
        padding: 7px 14px;
        font-size: 11px;
    }
}
.logo-img {
    height: 45px; /* Sesuaikan tingginya dengan header */
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5)); /* Efek glowing emas */
}