.elementor-99 .elementor-element.elementor-element-843caaa{--display:flex;}.elementor-99 .elementor-element.elementor-element-843caaa:not(.elementor-motion-effects-element-type-background), .elementor-99 .elementor-element.elementor-element-843caaa > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF00;}.elementor-99 .elementor-element.elementor-element-843caaa.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-99 .elementor-element.elementor-element-71dbcf9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-99 .elementor-element.elementor-element-f8b0799{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-99 .elementor-element.elementor-element-748cb21 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-weight:600;color:#000000;}.elementor-99 .elementor-element.elementor-element-be8ba4e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-posts .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-posts .elementor-post__title, .elementor-widget-posts .elementor-post__title a{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-posts .elementor-post__meta-data{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-posts .elementor-post__excerpt p{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-posts .elementor-post__read-more{color:var( --e-global-color-accent );}.elementor-widget-posts a.elementor-post__read-more{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-posts .elementor-post__card .elementor-post__badge{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-posts .elementor-pagination{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-posts .e-load-more-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-99 .elementor-element.elementor-element-dcb7fbf{--grid-row-gap:35px;--grid-column-gap:30px;}.elementor-99 .elementor-element.elementor-element-dcb7fbf .elementor-posts-container .elementor-post__thumbnail{padding-bottom:calc( 0.66 * 100% );}.elementor-99 .elementor-element.elementor-element-dcb7fbf:after{content:"0.66";}.elementor-99 .elementor-element.elementor-element-dcb7fbf .elementor-post__thumbnail__link{width:100%;}.elementor-99 .elementor-element.elementor-element-dcb7fbf .elementor-post__meta-data span + span:before{content:"///";}.elementor-99 .elementor-element.elementor-element-dcb7fbf.elementor-posts--thumbnail-left .elementor-post__thumbnail__link{margin-right:20px;}.elementor-99 .elementor-element.elementor-element-dcb7fbf.elementor-posts--thumbnail-right .elementor-post__thumbnail__link{margin-left:20px;}.elementor-99 .elementor-element.elementor-element-dcb7fbf.elementor-posts--thumbnail-top .elementor-post__thumbnail__link{margin-bottom:20px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-99 .elementor-element.elementor-element-dcb7fbf .elementor-posts-container .elementor-post__thumbnail{padding-bottom:calc( 0.5 * 100% );}.elementor-99 .elementor-element.elementor-element-dcb7fbf:after{content:"0.5";}.elementor-99 .elementor-element.elementor-element-dcb7fbf .elementor-post__thumbnail__link{width:100%;}}@media(min-width:768px){.elementor-99 .elementor-element.elementor-element-843caaa{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-7be3946 *//* =================================
   VARIABEL & PENGATURAN DASAR
==================================== */
:root {
    --primary-color: #6A44C4;
    --primary-dark: #5637A1;
    --text-dark: #1F2937;
    --white: #ffffff;
    --text-secondary: #4B5563;
    --background-light: #F9FAFB;
    --border-color: #E5E7EB;
    /* Variabel dari game-style.css */
    --correct-color: #10B981; /* Hijau */
    --wrong-color: #EF4444;   /* Merah */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* =================================
   GAYA TOMBOL (UMUM & HERO)
==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(106, 68, 196, 0.1);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

/* =================================
   HERO SECTION
==================================== */
.hero {
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F0F2F5 0%, #E6E9ED 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    letter-spacing: -0.015em;
}

.hero h1 span {
    color: var(--primary-color);
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}


/* =================================
   EDUCATION CARD SECTION & GAME SECTION
==================================== */
.edu-card-section, .game-section-wrapper {
    background-color: var(--background-light);
    padding: 2rem 0; /* PERUBAHAN DI SINI: Jarak dikurangi dari 5rem menjadi 3rem */
}

.edu-card-section .container, .game-section-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.edu-card-section .section-title, .game-section-wrapper .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.edu-card-section .section-title h2, .game-section-wrapper .section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.edu-card-section .section-title p, .game-section-wrapper .section-title p {
    margin-top: 0.75rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.edu-card-section .grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr; /* Default: 1 kolom (Mobile) */
}

.edu-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
}

.edu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.edu-card .icon-bg {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.edu-card:hover .icon-bg {
    transform: scale(1.1);
}

.edu-card.card-blue .icon-bg { background-color: #DBEAFE; color: #2563EB; }
.edu-card.card-green .icon-bg { background-color: #D1FAE5; color: #059669; }
.edu-card.card-purple .icon-bg { background-color: #EDE9FE; color: #7C3AED; }
.edu-card.card-orange .icon-bg { background-color: #FFEDD5; color: #F97316; }


.edu-card.card-blue a { color: #2563EB; }
.edu-card.card-green a { color: #059669; }
.edu-card.card-purple a { color: #7C3AED; }
.edu-card.card-orange a { color: #F97316; }


.edu-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.edu-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.edu-card a {
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.edu-card a:hover { text-decoration: underline; }

/* =================================
   GAYA UNTUK GAME (DARI game-style.css)
==================================== */
.game-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh; /* Sesuaikan jika perlu agar tidak terlalu jauh dari bagian atas */
    padding: 20px;
}

.game-container {
    max-width: 500px;
    width: 100%;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
}

.game-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.game-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.instruction {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.score-container {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background-color: var(--background-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.score-container div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-container .fa-star { color: #FBBF24; }
.score-container .fa-trophy { color: #F97316; }

/* =================================
   AREA GAMBAR & PILIHAN
==================================== */
.puzzle-area {
    margin-bottom: 2rem;
}

.puzzle-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-btn {
    padding: 1rem;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.option-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.result {
    font-size: 1.1rem;
    font-weight: 600;
    min-height: 28px;
    padding: 0.5rem;
    border-radius: 8px;
}

.result.correct {
    color: var(--correct-color);
    background-color: #D1FAE5;
}

.result.wrong {
    color: var(--wrong-color);
    background-color: #FEE2E2;
}

/* =================================
   ANIMATIONS & RESPONSIVE
==================================== */
@keyframes fadeIn-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero p, .hero-buttons {
    animation: fadeIn-up 0.8s ease-out backwards;
}
.hero p { animation-delay: 0.2s; }
.hero-buttons { animation-delay: 0.4s; }

/* Tampilan Tablet (Medium) */
@media (min-width: 768px) {
    .edu-card-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tampilan Desktop (Large) */
@media (min-width: 1024px) {
    .edu-card-section .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero { padding: 4rem 0; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    /* Penyesuaian untuk game di tablet */
    .game-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.9rem; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }

    /* Penyesuaian untuk game di mobile */
    .options {
        grid-template-columns: 1fr; /* Pilihan jadi satu kolom di layar kecil */
    }
}/* End custom CSS */
/* Start custom CSS for posts, class: .elementor-element-dcb7fbf *//* === PENGATURAN GRID POSTINGAN DI HALAMAN DEPAN === */

/* 1. Mengatur Kontainer Utama menjadi Grid */
/* Ganti .elementor-widget-posts jika tema Anda menggunakan kelas lain */
.elementor-widget-posts .elementor-posts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom di layar besar (desktop) */
    gap: 30px; /* Jarak antar card */
}

/* 2. Gaya Dasar untuk setiap Card Postingan */
.elementor-widget-posts article.post {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex; /* Menggunakan flexbox untuk tata letak konten di dalam card */
    flex-direction: column; /* Mengatur item dari atas ke bawah */
}

/* 3. Efek Hover pada Card */
.elementor-widget-posts article.post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 4. Pembungkus Konten di dalam Card (untuk padding) */
.elementor-widget-posts article.post .elementor-post__text {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Membuat area ini memenuhi sisa ruang */
}

/* 5. Gaya Judul Postingan */
.elementor-widget-posts .elementor-post__title a {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.4;
}

.elementor-widget-posts .elementor-post__title a:hover {
    color: #8054c7; /* Warna ungu khas Anda */
}

/* 6. Gaya Info Meta (Tanggal, dll) */
.elementor-widget-posts .elementor-post-meta-data {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

/* 7. Gaya Teks Ringkasan */
.elementor-widget-posts .elementor-post__excerpt p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    flex-grow: 1; /* Memastikan teks memenuhi ruang sebelum tombol */
}

/* 8. Gaya Tombol "Read More" */
.elementor-widget-posts .elementor-post__read-more {
    margin-top: 20px; /* Jarak dari teks di atasnya */
    color: #8054c7;
    font-weight: bold;
    text-decoration: none;
}

/* === PENGATURAN RESPONSIVE === */

/* Tampilan Tablet (2 kolom) */
@media (max-width: 1024px) {
    .elementor-widget-posts .elementor-posts-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tampilan Mobile (1 kolom) */
@media (max-width: 768px) {
    .elementor-widget-posts .elementor-posts-container {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */