
        /* --- VARIABLES & RESET --- */
        :root {
            --bg-gradient: linear-gradient(135deg, #FFD1DC 0%, #E0F7FA 50%, #E6E6FA 100%);
            --glass-bg: rgba(255, 255, 255, 0.65);
            --glass-border: rgba(255, 255, 255, 0.8);
            --text-main: #5D5D78; /* Grey Ungu biar soft */
            --text-accent: #FF8FAB;
            --shadow-soft: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
            scroll-behavior: smooth;
        }

        html, body {
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        body {
            background: var(--bg-gradient);
            background-attachment: fixed; /* Parallax effect simple */
            color: var(--text-main);
            min-height: 100vh;
            position: relative;
        }

        /* --- DECORATION (Floating Blobs) --- */
        .blob {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            animation: float 10s infinite ease-in-out;
            pointer-events: none;
        }
        .blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: #FFC1CC; }
        .blob-2 { bottom: 10%; right: -10%; width: 400px; height: 400px; background: #D1EAFF; animation-delay: 2s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* --- LAYOUT UTILS --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            width: 100%;
            box-sizing: border-box;
        }

        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 24px;
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-soft);
            padding: 40px;
            margin-bottom: 30px;
            width: 100%;
            box-sizing: border-box;
        }

        /* --- HERO SECTION --- */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            min-height: 80vh;
        }

        .hero-text h1 {
            font-family: 'Fredoka', sans-serif;
            font-size: 4rem;
            line-height: 1.1;
            color: #7B68EE; /* Slate Blue */
            margin-bottom: 10px;
        }
        
        .hero-text .subtitle {
            font-size: 1.5rem;
            color: var(--text-accent);
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
            background: white;
            padding: 5px 15px;
            border-radius: 50px;
            transform: rotate(-2deg);
        }

        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: #FF8FAB;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 143, 171, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            background: #ff7499;
        }

        .btn-secondary {
            background: white;
            color: var(--text-main);
        }

        /* --- HERO IMAGE & PARALLAX --- */
/* --- UPDATE HERO IMAGE (Biar ada Fade di bawah) --- */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Arahkan gambar ke bawah */
    height: 500px; /* Atur tinggi area hero */
    perspective: 1000px; 
    
    /* INI KUNCINYA: Masking Gradient */
    /* Bagian bawah gambar akan memudar jadi transparan */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.miori-char {
    /* Mainkan width-nya biar pas setengah badan */
    width: 110%; 
    max-width: 600px; /* Batasi biar ga raksasa */
    height: auto;
    object-fit: cover;
    
    /* Posisi gambar */
    transform-origin: bottom center;
    filter: drop-shadow(0 0 15px rgba(166, 219, 255, 0.5)); /* Glow biru muda sesuai Charsheet */
    z-index: 2;
}

/* --- LOGO STYLE --- */
.brand-logo {
    position: fixed;
    top: 30px;
    left: 40px;
    width: 150px; /* Sesuaikan ukuran */
    height: auto;
    z-index: 100;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}
.brand-logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Lingkaran cahaya di belakang biar Miori makin pop-up */
.glow-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.89) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .hero-image {
        height: 350px;
        margin-top: 20px;
    }
    .miori-char {
        max-height: 400px;
    }
}

        /* --- SOCIAL BAR (Floating) --- */
        .social-float {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .social-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #aaa;
            text-decoration: none;
            transition: 0.3s;
        }
        .social-icon:hover { transform: scale(1.1) rotate(5deg); color: var(--text-accent); }

        /* --- ABOUT (LORE) SECTION --- */
        .about-section {
            text-align: center;
        }
        .section-title {
            font-family: 'Fredoka', sans-serif;
            font-size: 2.5rem;
            color: #7B68EE;
            margin-bottom: 30px;
        }
        .lore-box {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            align-items: start;
        }
        /* --- INTERACTIVE ABOUT IMAGE --- */

.lore-img-box {
    position: relative; /* Biar Hint-nya bisa diatur posisinya */
    width: 100%;
    /* aspect-ratio dihapus biar tinggi ngikutin gambar */
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Gambar nempel bawah */
    cursor: pointer; /* Kursor berubah jadi tangan */
    overflow: hidden; /* Biar ga bleber */
    
    /* MASKING MAGIC: Bikin efek pudar di bawah (soft cut) */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    
    outline: none; /* REMOVE BLUE OUTLINE SAAT DIKLIK */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight di mobile */
    
    transition: transform 0.2s;
}

.lore-img-box:active {
    animation: poke-bounce 0.4s ease-out;
}

/* POKE BOUNCE ANIMATION - Terasa seperti "lenting" pas di-poke */
@keyframes poke-bounce {
    0% { transform: scale(1); }
    25% { transform: scale(0.92); }
    50% { transform: scale(1.08); }
    75% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* SPARKLE EFFECT - Bintang kilauan saat di-poke */
@keyframes sparkle {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* Sparkle particle - akan di-trigger via JavaScript */
.sparkle {
    position: absolute;
    pointer-events: none;
    font-size: 1.5rem;
    animation: sparkle 0.6s ease-out forwards;
}

/* Gambar Miori */
#miori-face {
    width: 100%;
    max-width: 350px; /* Batasi biar ga kegedean */
    border-radius: 12px;
    /* Hapus background gray, ganti drop-shadow */
    filter: drop-shadow(0 5px 15px rgba(123, 104, 238, 0.2));
    transition: opacity 0.3s ease, filter 0.3s ease; /* Transisi halus pas ganti muka */
}

.lore-img-box:active #miori-face {
    filter: drop-shadow(0 5px 15px rgba(123, 104, 238, 0.2)) brightness(1.2); /* Glow saat diklik */
}

/* Hint Badge (Poke Me!) */
.click-hint {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF8FAB;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        .stat-card {
            background: rgba(255,255,255,0.5);
            padding: 15px;
            border-radius: 15px;
        }
        .stat-card h4 { color: var(--text-accent); }

        /* --- FLOATING NAV (Bottom Dock Style) --- */
        /* --- UPDATED FLOATING NAV (DOCK STYLE) --- */
.floating-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 20px);
    
    /* Background Glass */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    padding: 0 30px; /* Padding samping */
    height: 70px;    /* Tinggi fix biar rapi */
    border-radius: 50px;
    
    display: flex;
    align-items: center;
    gap: 30px; /* Jarak antar menu */
    
    box-shadow: 0 10px 40px rgba(123, 104, 238, 0.2); /* Shadow ungu soft */
    border: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 1000;
    box-sizing: border-box;
}

/* Style Item Biasa */
.nav-item {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover, .nav-item.active {
    color: var(--text-accent);
}

/* Efek underline animated saat active */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-accent);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* --- THE CENTER LOGO (POP OUT EFFECT) --- */
.nav-center-logo {
    position: relative;
    top: -25px; /* Tarik ke atas biar nongol */
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%; /* Bulat sempurna */
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Shadow biar kelihatan ngambang */
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1); 
    border: 4px solid rgba(255, 255, 255, 0.5); /* Border transparan dikit */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
}

.nav-center-logo img {
    width: 80%; /* Ukuran gambar di dalam lingkaran */
    height: auto;
    object-fit: contain;
}

/* Efek pas logo disentuh mouse */
.nav-center-logo:hover {
    transform: scale(1.15) rotate(10deg); /* Membesar & miring dikit */
    box-shadow: 0 -8px 20px rgba(255, 143, 171, 0.4); /* Glow pink */
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 480px) {
    .floating-nav {
        bottom: 20px;
        height: 60px;
        padding: 0 15px;
        gap: 15px; /* Rapatkan dikit di HP */
        width: 90%; /* Jangan full layar */
        justify-content: space-between;
    }

    .nav-item {
        font-size: 0.75rem; /* Kecilin font text */
    }

    .nav-center-logo {
        width: 60px;
        height: 60px;
        top: -20px;
    }
}

        /* --- RESPONSIVE --- */
        
        /* Tablet & Small Desktop (768px and above) */
        @media (max-width: 1024px) {
            .hero { gap: 30px; min-height: 70vh; }
            .hero-text h1 { font-size: 3.5rem; }
            .glass-panel { padding: 30px; }
            .container { padding: 15px; }
            .floating-nav { gap: 20px; padding: 12px 20px; bottom: 20px; }
            .nav-item { font-size: 0.85rem; }
        }

        /* Tablet (768px and below) */
        @media (max-width: 768px) {
            html, body {
                width: 100%;
                margin: 0;
                padding: 0;
            }
            
            .container {
                padding: 16px;
                margin: 0;
                width: 100%;
            }

            /* Layout */
            .hero { 
                grid-template-columns: 1fr; 
                text-align: left; 
                min-height: auto;
                gap: 20px;
                padding: 0;
            }

            /* Typography */
            .hero-text h1 { font-size: 2.5rem; line-height: 1.2; }
            .hero-text .subtitle { font-size: 1.1rem; padding: 4px 12px; }
            .hero-text p { font-size: 1rem; line-height: 1.5; }
            .section-title { font-size: 2rem; margin-bottom: 20px; }

            /* Buttons */
            .cta-buttons { 
                justify-content: flex-start; 
                flex-wrap: wrap;
                gap: 10px;
            }
            .btn { padding: 10px 20px; font-size: 0.95rem; }

            /* Social */
            .social-float { justify-content: flex-start; gap: 15px; margin-top: 15px; }
            .social-icon { width: 45px; height: 45px; font-size: 1.2rem; }

            /* Layout */
            .lore-box { grid-template-columns: 1fr; gap: 20px; }
            .hero-img-placeholder { height: 350px; }
            .stats-grid { grid-template-columns: 1fr; gap: 10px; }

            /* Glass Panel */
            .glass-panel { 
                padding: 20px; 
                margin-bottom: 20px;
                border-radius: 15px;
                margin-left: 0;
                margin-right: 0;
            }

            /* Floating Nav */
            .floating-nav { 
                bottom: 15px;
                left: 50%;
                transform: translateX(-50%);
                max-width: calc(100% - 20px);
                height: auto;
                gap: 15px; 
                padding: 12px 15px;
                border-radius: 40px;
                box-sizing: border-box;
            }
            .nav-item { font-size: 0.8rem; }

            /* Blobs */
            .blob-1 { width: 300px; height: 300px; }
            .blob-2 { width: 250px; height: 250px; }
        }

        /* Mobile Large (480px to 768px) */
        @media (max-width: 480px) {
            html, body {
                width: 100%;
                margin: 0;
                padding: 0;
                overflow-x: hidden;
            }
            
            .container { 
                padding: 14px;
                margin: 0;
                width: 100%;
                box-sizing: border-box;
            }

            /* Typography */
            .hero-text h1 { 
                font-size: 2rem; 
                margin-bottom: 5px;
            }
            .hero-text .subtitle { 
                font-size: 0.9rem; 
                padding: 3px 10px;
                margin-bottom: 15px;
            }
            .hero-text p { 
                font-size: 0.95rem; 
                line-height: 1.4;
                margin-bottom: 15px;
            }
            .section-title { 
                font-size: 1.75rem; 
                margin-bottom: 15px;
            }

            /* Hero Section */
            .hero { 
                gap: 15px;
                min-height: auto;
                text-align: left;
            }
            .hero-img-placeholder { 
                height: 250px;
                border-radius: 15px;
            }
            .hero-img-placeholder::after {
                font-size: 0.8rem;
            }

            /* Buttons */
            .cta-buttons { 
                flex-direction: column;
                gap: 8px;
                justify-content: flex-start;
            }
            .btn { 
                padding: 10px 16px; 
                font-size: 0.9rem;
                justify-content: flex-start;
            }

            /* Social Icons */
            .social-float { 
                gap: 12px; 
                margin-top: 12px;
                justify-content: flex-start;
            }
            .social-icon { 
                width: 40px; 
                height: 40px; 
                font-size: 1rem;
            }

            /* Stats */
            .stats-grid { 
                grid-template-columns: 1fr;
                gap: 8px;
                margin-top: 12px;
            }
            .stat-card { 
                padding: 12px;
                border-radius: 10px;
            }
            .stat-card h4 { font-size: 0.9rem; }
            .stat-card p { font-size: 0.85rem; }

            /* Glass Panel */
            .glass-panel { 
                padding: 15px;
                margin-bottom: 15px;
                border-radius: 12px;
            }

            /* Floating Nav */
            .floating-nav { 
                bottom: 10px;
                left: 50%;
                transform: translateX(-50%);
                max-width: calc(100% - 16px);
                height: auto;
                gap: 10px; 
                padding: 10px 12px;
                flex-wrap: wrap;
                justify-content: center;
                box-sizing: border-box;
            }
            .nav-item { 
                font-size: 0.75rem;
                padding: 5px 8px;
            }

            /* Blobs */
            .blob-1 { width: 200px; height: 200px; top: -5%; left: -5%; }
            .blob-2 { width: 150px; height: 150px; bottom: 5%; right: -5%; }

            #contact {
                margin-bottom: 60px;
            }
            #contact .stat-card {
                text-align: center;
            }
        
        }

        /* Extra Small Mobile (Below 360px) */
        @media (max-width: 360px) {
            .container {
                padding: 12px;
            }
            .hero-text h1 { font-size: 1.75rem; }
            .section-title { font-size: 1.5rem; }
            .cta-buttons { gap: 6px; justify-content: flex-start; }
            .btn { padding: 8px 12px; font-size: 0.85rem; }
            .nav-item { font-size: 0.7rem; padding: 3px 6px; }
            .hero-img-placeholder { height: 200px; }
            .floating-nav { 
                bottom: 8px;
                left: 50%;
                transform: translateX(-50%);
                max-width: calc(100% - 12px);
                height: auto;
            }
        }


/* --- RULES SECTION --- */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsif otomatis */
    gap: 20px;
}

.rule-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rule-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(123, 104, 238, 0.15);
}

.rule-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.rule-card h3 {
    color: #7B68EE;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.rule-card p {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.4;
}

/* Biar di HP jaraknya enak */
@media (max-width: 480px) {
    .rules-grid {
        grid-template-columns: 1fr; /* 1 kolom ke bawah */
    }

    
}

/* --- NEW CONTACT SECTION LAYOUT --- */

.contact-flex {
    display: flex;
    align-items: center; /* Vertikal center biar sejajar */
    justify-content: center;
    gap: 40px; /* Jarak antara Miori & Teks */
    margin-bottom: 30px;
    text-align: left; /* Reset alignment jadi kiri */
}

/* Gaya Gambar di Kiri */
.contact-img-box {
    flex: 0 0 auto; /* Ukuran fix, nggak melar */
}

.contact-char {
    width: 220px; /* Ukuran Miori yang pas, nggak kekecilan */
    height: auto;
    /* Sedikit rotasi & shadow biar dinamis */
    transform: rotate(-5deg);
    filter: drop-shadow(5px 5px 15px rgba(255, 143, 171, 0.3));
    transition: transform 0.3s ease;
     /* INI KUNCINYA: Masking Gradient */
    /* Bagian bawah gambar akan memudar jadi transparan */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.contact-char:hover {
    transform: rotate(0deg) scale(1.05); /* Efek pas di-hover */
}

/* Gaya Teks di Kanan */
.contact-text-box {
    max-width: 450px; /* Batasi lebar teks biar enak dibaca */
}

.contact-text-box p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex; /* Balikin jadi inline biar ga full width */
    width: auto;
}

/* Copyright di Bawah */
.copyright {
    text-align: center; /* Copyright tetap di tengah */
    border-top: 1px solid rgba(255,255,255,0.3); /* Garis pemisah halus */
    padding-top: 20px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* --- RESPONSIVE (PENTING!) --- */
/* Di Tablet & HP, balik jadi tumpuk (center) */
@media (max-width: 768px) {
    .contact-flex {
        flex-direction: column; /* Tumpuk ke bawah */
        text-align: center; /* Balik rata tengah */
        gap: 20px;
    }

    .contact-char {
        width: 180px; /* Kecilin dikit gambarnya di HP */
        transform: rotate(0deg); /* Gak usah miring di HP */
    }
    
    .contact-text-box {
        max-width: 100%;
    }

    /* Tombol jadi center lagi di HP */
    .contact-btn {
        margin: 0 auto;
    }
}

.rule-card:nth-child(1) .rule-icon svg { color: #ff8fb1; }
.rule-card:nth-child(2) .rule-icon svg { color: #ffb703; }
.rule-card:nth-child(3) .rule-icon svg { color: #4cc9f0; }
.rule-card:nth-child(4) .rule-icon svg { color: #9d4edd; }


.embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.embed-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.embed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,158,207,0.35);
}

.video-16x9 {
  aspect-ratio: 16 / 9;
}

.video-16x9 iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

.tiktok-card {
  display: flex;
  justify-content: center;
    align-items: flex-start;
}

.tiktok-embed {
  margin: 0 !important;
  max-width: 320px !important;
}
