body {
    background: #FCF8EE;
    width: 100%;
    height: auto;
    margin: 0 auto;
    font-family: "DM Sans", sans-serif;
}

/* HERO SECTION */
.hero-container {
    padding-top: 170px;
    display: flex;
    justify-content: center;
    gap: 220px;
    margin-left: 140px;
    margin-right: 140px;
}

.hero-container img {
    width: 500px !important;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.text-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    flex-shrink: 0;
}

.text-hero-atas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: -2px;
    align-self: stretch;
    text-align: left;
}

.text-hero-atas h1 {
    color: #EEE;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2px;
    background: #333;
    padding: 0 30px;
    border-radius: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: fit-content;
}

.text-hero-atas h2 {
    color: #333;
    font-size: 92px;
    font-weight: 700;
    letter-spacing: -2px;
}

.text-hero p {
    color: #333;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    max-width: fit-content;
    width: 482px;
}

/* SECTION RINGKASAN */
.section-ringkasan {
    width: none;
    display: flex;
    padding-left: 140px;
    padding-right: 140px;
    justify-content: center;
    align-items: center;
    gap: 180px;
    background: #FCF8EE;
}

.text-content {
    display: flex;
    width: 760px;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}

.text-content h1 {
    color: #333;
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -2px;
}

.text-content p {
    color: #333;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
}

.game-board {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.game-board img {
    width: 720px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.game-board:hover img {
    transform: scale(1.05);
}

/* KARTU SECTION */
.judul-card img {
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.card {
    padding: 50px 50px;
}

.card img {
    width: 1500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* RESPONSIVE - MOBILE VIEW */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin: 0 auto;
        padding-top: 60px;
    }

    .hero-container img {
        width: 100%;
        max-width: 350px;
    }

    .text-hero {
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .text-hero-atas {
        align-items: center;
    }

    .text-hero-atas h1 {
        font-size: 40px;
        padding: 10px 20px;
    }

    .text-hero-atas h2 {
        font-size: 50px;
    }

    .text-hero p {
        font-size: 16px;
        width: 100%;
        max-width: 90%;
    }

    .section-ringkasan {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }

    .text-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .text-content h1 {
        font-size: 36px;
    }

    .text-content p {
        font-size: 16px;
    }

    .game-board img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .judul-card img {
        width: 100%;
        max-width: 300px;
    }

    .card {
        padding: 30px 10px;
    }

    .card img {
        width: 100%;
        height: auto;
    }
}

/* Responsive untuk Axioo Smart Monitor */
@media (max-width: 1366px) and (min-width: 769px) {
    .hero-container {
        padding-top: 120px;
        gap: 150px;
        margin-left: 100px;
        margin-right: 100px;
    }

    .hero-container img {
        width: 250px;
    }

    .text-hero-atas h1 {
        font-size: 60px;
    }

    .text-hero-atas h2 {
        font-size: 72px;
    }

    .text-hero p {
        font-size: 20px;
        width: 400px;
    }
}

