:root {
    --klikz-blue: #308ee0;
    --klikz-pink: #eb4d70;
    --klikz-green: #37a862;
    --klikz-yellow: #f8d347;
    --text-dark: #2d3436;
    --panel-bg: #ffffff;
    --border-color: #2d3436; 
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    margin: 0;
    background: 
        radial-gradient(circle at 0% 0%, #ffe8ee 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, #e6f3ff 0%, transparent 40%),
        #fdfcfb;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* --- NAVBAR --- */
.navbar-container {
    display: flex;
    justify-content: center;
    position: sticky;
    top: 20px;
    z-index: 1000;
    padding: 0 20px;
}

nav {
    width: 100%;
    max-width: 1200px;
    background: var(--panel-bg);
    border: 4px solid var(--border-color);
    border-radius: 20px;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 6px 6px 0px var(--klikz-yellow);
}

.logo-img { height: 45px; object-fit: contain; margin-top: 1em;}

.nav-order-btn {
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    font-weight: 900;
    padding: 10px 25px;
    border-radius: 14px;
    border: 3px solid var(--border-color);
    box-shadow: 4px 4px 0px var(--klikz-pink);
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1em;
    transition: all 0.2s;
}
.nav-order-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0px var(--klikz-pink); }
.nav-order-btn:active { transform: translate(2px, 2px); box-shadow: 0px 0px 0px var(--klikz-pink); }

/* --- HERO SPLIT --- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 40px;
}

.hero-text { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
    background: var(--klikz-pink); color: white; font-family: 'Fredoka', sans-serif;
    padding: 8px 20px; border-radius: 20px; border: 3px solid var(--border-color);
    font-size: 1.2em; transform: rotate(-3deg); margin-bottom: 20px; box-shadow: 3px 3px 0px var(--text-dark);
}

h1 {
    font-family: 'Fredoka', sans-serif; font-size: 5.5em; font-weight: 700;
    margin: 0 0 10px 0; color: var(--text-dark); line-height: 1; text-shadow: 4px 4px 0px white;
}

.hero-text p { font-size: 1.5em; font-weight: 800; color: #4a5568; margin: 0 0 40px 0; line-height: 1.3; }
.cta-container { display: flex; align-items: center; gap: 20px; }

.cta-btn {
    font-family: 'Fredoka', sans-serif; background: var(--klikz-yellow); color: var(--text-dark);
    font-size: 2em; font-weight: 700; text-decoration: none; padding: 15px 50px;
    border: 5px solid var(--border-color); border-radius: 25px; box-shadow: 0 10px 0px var(--klikz-blue);
    transition: all 0.1s; position: relative; top: 0;
}
.cta-btn:hover { filter: brightness(1.05); transform: scale(1.02); }
.cta-btn:active { top: 10px; box-shadow: 0 0px 0px var(--klikz-blue); transform: scale(0.98); }

.arrow-doodle { font-size: 3em; color: var(--klikz-pink); animation: bounceX 1s infinite alternate; }
@keyframes bounceX { 0% { transform: translateX(0); } 100% { transform: translateX(15px); } }

.bob-quote {
    margin-top: 30px; background: rgba(255,255,255,0.9); padding: 12px 25px;
    border-radius: 20px; font-weight: 800; color: var(--text-dark); font-size: 1.1em;
    border: 3px dashed var(--klikz-green); transform: rotate(2deg); display: inline-block;
}

.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; min-height: 400px; }

.bob-hero-graphic {
    /* background: var(--panel-bg); border: 6px solid var(--border-color); border-radius: 35%; */
    width: 80%;  display: flex; justify-content: center; align-items: center;
    /* box-shadow: 12px 12px 0px var(--klikz-green);  */
    animation: floatBob 5s ease-in-out infinite;
    overflow: hidden; z-index: 2;
}
.bob-actual-img { width: 100%; height: 100%; object-fit: cover; }

.visual-decor { position: absolute; font-size: 8em; z-index: 1; font-weight: 900;}
.vd-1 { top: 10%; right: 10%; color: var(--klikz-pink); animation: spin 10s linear infinite; }
.vd-2 { bottom: 5%; left: 0%; color: var(--klikz-blue); font-size: 20em; animation: spin 15s linear infinite reverse; }
.vd-3 { top: 30%; right: 10%; color: var(--klikz-yellow); font-size: 20em; animation: spin 15s linear infinite reverse; transform-origin: 50% 50%;}

@keyframes floatBob { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-20px) rotate(3deg); } }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* --- MARQUEE --- */
.marquee-container {
    background: var(--text-dark); color: var(--klikz-yellow); padding: 15px 0;
    overflow: hidden; white-space: nowrap; border-top: 4px solid var(--border-color);
    border-bottom: 4px solid var(--border-color); transform: rotate(-1deg); width: 105%; margin-left: -2%;
}
.marquee-content { display: inline-block; font-family: 'Fredoka', sans-serif; font-size: 1.8em; font-weight: 700; animation: marquee 20s linear infinite; }
.marquee-content span { margin: 0 30px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- BENTO GALLERY --- */
.showcase { max-width: 1200px; margin: 80px auto 40px; padding: 0 20px; }
.showcase-title { font-family: 'Fredoka', sans-serif; font-size: 3em; margin: 0 0 30px 0; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 25px; }

.bento-card {
    background: var(--panel-bg); border: 4px solid var(--border-color); border-radius: 30px;
    overflow: hidden; position: relative; box-shadow: 8px 8px 0px var(--text-dark);
    transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; display: flex; align-items: flex-end; padding: 20px;
}
.bento-card:hover { transform: translateY(-5px) scale(1.02); }
.bento-card:nth-child(1):hover { box-shadow: 10px 10px 0px var(--klikz-pink); }
.bento-card:nth-child(2):hover { box-shadow: 10px 10px 0px var(--klikz-blue); }
.bento-card:nth-child(3):hover { box-shadow: 10px 10px 0px var(--klikz-yellow); }
.bento-card:nth-child(4):hover { box-shadow: 10px 10px 0px var(--klikz-green); }

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-column: span 1; grid-row: span 2; }
.bento-wide { grid-column: span 2; grid-row: span 1; }
.bento-small { grid-column: span 1; grid-row: span 1; }

.bento-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s; }
.bento-card:hover .bento-bg-img { transform: scale(1.1); }
.bento-content { position: relative; z-index: 1; background: rgba(255,255,255,0.9); padding: 10px 20px; border-radius: 15px; border: 3px solid var(--border-color); width: fit-content; }
.bento-title { font-family: 'Fredoka', sans-serif; font-size: 1.5em; margin: 0; }
.bento-subtitle { font-weight: 800; color: var(--klikz-blue); font-size: 0.9em; margin: 0; }

/* ==========================================================================
    NEW ELEMENTS: GIANT BOB DIVIDER
    ========================================================================== */
.bob-giant-divider {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Kotak Bingkai Muka Gede di Sebelah Kiri */
.giant-bob-frame {
    background: var(--panel-bg);
    border: 5px solid var(--border-color);
    border-radius: 40px;
    width: 320px;
    height: 320px;
    overflow: hidden;
    box-shadow: 12px 12px 0px var(--klikz-pink);
    flex-shrink: 0;
    transform: rotate(-2deg);
}

.giant-bob-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner Percakapan Kanan */
.divider-speech-bubble {
    flex: 1;
    background: var(--klikz-yellow);
    border: 5px solid var(--border-color);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 10px 10px 0px var(--text-dark);
    position: relative;
    transform: rotate(1deg);
}

.divider-speech-bubble h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3em;
    margin: 0 0 10px 0;
    line-height: 1;
}

.divider-speech-bubble p {
    font-size: 1.3em;
    font-weight: 800;
    margin: 0;
    color: #2d3436;
}

/* ==========================================================================
    NEW ELEMENTS: FUN FACT SECTION
    ========================================================================== */
.fun-facts-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.fun-facts-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3em;
    text-align: center;
    margin-bottom: 5px;
}

.fun-facts-subtitle {
    text-align: center;
    font-size: 1.3em;
    font-weight: 800;
    color: #747d8c;
    margin-bottom: 40px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fact-card {
    background: var(--panel-bg);
    border: 4px solid var(--border-color);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 8px 8px 0px var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Warna khusus untuk tiap topik card */
.card-identity { box-shadow: 8px 8px 0px var(--klikz-blue); }
.card-likes { box-shadow: 8px 8px 0px var(--klikz-green); }
.card-dislikes { box-shadow: 8px 8px 0px var(--klikz-pink); }

.fact-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.fact-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8em;
    margin: 0 0 15px 0;
}

.fact-card ul {
    text-align: left;
    margin: 0;
    padding-left: 20px;
    font-size: 1.1em;
    font-weight: 700;
    color: #4a5568;
    line-height: 1.6;
}

.fact-card li {
    margin-bottom: 8px;
}

/* --- RESPONSIVE MOBILE TWEAKS --- */
/* --- RESPONSIVE MOBILE TWEAKS --- */
@media (max-width: 900px) {
    .hero { flex-direction: column-reverse; text-align: center; gap: 10px; padding: 0 20px; margin-top: 20px;}
    .hero-text { align-items: center; }
    h1 { font-size: 3.2em; } /* Ukuran font disesuaikan agar tidak turun baris berantakan */
    .cta-container { flex-direction: column; gap: 10px;}
    .arrow-doodle { transform: rotate(90deg); animation: bounceY 1s infinite alternate; margin-top: -10px;}
    @keyframes bounceY { 0% { transform: rotate(90deg) translateX(0); } 100% { transform: rotate(90deg) translateX(15px); } }
    
    /* --- FIX UNTUK HERO BOB MOBILE --- */
    .hero-visual {
        min-height: 280px; /* Area dikurangi agar Bob tidak terlalu memakan layar vertikal */
        width: 100%;
        margin-bottom: -20px;
    }
    
    .bob-hero-graphic { 
        width: 35%; /* Ukuran Bob diperkecil untuk HP */
        height: 35%; 
        border-width: 4px;
        /* box-shadow: 8px 8px 0px var(--klikz-green); */
    }

    /* Mengikat ornamen agar tetap berdempetan dengan Bob */
    .visual-decor { font-size: 8em; } /* Ornamen ikut diperkecil */
    .vd-1 { 
        top: 5%; 
        right: 30%; /* Ditarik masuk ke arah tengah */
    }
    .vd-2 { 
        bottom: 5%; 
        left: 30%; /* Ditarik masuk ke arah tengah */
        font-size: 12em; 
    }
      .vd-3 { 
        bottom: 5%; 
        left: 35%; /* Ditarik masuk ke arah tengah */
        font-size: 10em; 
    }
    /* --------------------------------- */

    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .bento-large, .bento-tall, .bento-wide, .bento-small { grid-column: span 1; grid-row: span 1; }
    .showcase-title { font-size: 2.2em; text-align: center; width: 100%;}
    .showcase-header { justify-content: center; }

    /* Mobile untuk Divider */
    .bob-giant-divider {
        flex-direction: column; 
        gap: 25px;
        margin: 50px auto;
    }
    .giant-bob-frame {
        width: 240px;
        height: 240px;
        /* box-shadow: 8px 8px 0px var(--klikz-pink); */
    }
    .divider-speech-bubble {
        padding: 25px;
        text-align: center;
    }
    .divider-speech-bubble h2 { font-size: 1.8em; }
    .divider-speech-bubble p { font-size: 1em; }

    /* Mobile untuk Fun Facts */
    .facts-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    .fun-facts-section h2 { font-size: 2em; }
    .fun-facts-subtitle { font-size: 1em; padding: 0 10px;}
}