/* --- VARIABLES --- */
:root {
    --bg-hero: #f2f2f2;
    --bg-white: #ffffff;
    --black: #0b0b0b; /* Hitam Amienation sedikit lebih soft */
    --dark-grey: #1a1a1a;
    /* UBAH DARI MERAH KE KUNING AMIENATION */
    --theme-color: #ffcc00; 
}

/* --- RESET & BASIC --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-hero);
    color: var(--black);
    overflow-x: hidden; width: 100%;
}

a { text-decoration: none; color: inherit; cursor: pointer; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }
ul { list-style: none; }

/* --- UTILITIES --- */
.font-oswald { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.section-title-big { 
    font-family: 'Oswald', sans-serif; 
    font-size: 5rem; font-weight: 700; 
    color: var(--theme-color); /* Kuning */
    line-height: 1; 
    text-transform: uppercase; 
    /* Tambah shadow tipis agar kuning terbaca di background putih */
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

/* --- 1. PRELOADER --- */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #000; color: #fff; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.glitch-wrapper { position: relative; text-align: center; animation: glitch-twitch 2s infinite steps(1) alternate-reverse; }
.hero-logo-sim { font-family: 'Oswald', sans-serif; font-size: 4rem; font-weight: 700; font-style: italic; line-height: 0.9; text-shadow: 2px 0px var(--theme-color), -2px 0px #ffffff; }
.red-banner-sim { background: var(--theme-color); color: #000; padding: 2px 15px; margin-top: -10px; font-weight: 700; text-transform: uppercase; transform: rotate(-2deg); display: inline-block; font-size: 0.8rem; }
.loader-corner { position: absolute; bottom: 30px; font-family: 'Oswald', sans-serif; font-size: 0.8rem; }
.lc-left { left: 30px; letter-spacing: 2px; opacity: 0.7; }
.lc-right { right: 30px; font-weight: 700; color: var(--theme-color); }

@keyframes glitch-twitch { 
    0% { transform: translate(0); } 10% { transform: translate(-2px, 2px); } 30% { transform: translate(3px, -1px); } 50% { transform: translate(-1px, 3px) skewX(1deg); } 70% { transform: translate(2px, 1px); } 90% { transform: translate(-3px, -2px) skewX(-1deg); } 100% { transform: translate(0); } 
}

/* --- 2. MENU OVERLAY --- */
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #111; z-index: 1000; transform: translateY(-100%); display: flex; align-items: center; justify-content: center; }
.menu-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.3; filter: grayscale(100%); z-index: -1; }
.menu-grid-container { width: 85%; max-width: 1400px; display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 40px; position: relative; z-index: 10; }
.menu-col { display: flex; flex-direction: column; justify-content: center; gap: 15px; }
.menu-link-item { font-family: 'Oswald', sans-serif; font-size: 3.5vw; font-weight: 700; color: #fff; text-transform: uppercase; line-height: 1.1; letter-spacing: 1px; transition: color 0.3s; }
.menu-link-item:hover { color: var(--theme-color); }
.menu-big-logo { font-family: 'Oswald', sans-serif; font-size: 8vw; line-height: 0.9; font-weight: 700; font-style: italic; color: #fff; text-transform: uppercase; border-bottom: 8px solid #fff; display: inline-block; }
.menu-close-btn { position: absolute; top: 0; left: 0; width: 100px; height: 100px; background-color: var(--theme-color); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; z-index: 1100; color: #000; transition: background 0.3s; }
.menu-close-btn:hover { background-color: #e6b800; }
.close-icon-x { font-size: 2.5rem; line-height: 1; font-weight: 300; margin-bottom: 5px; }
.close-text { font-family: 'Oswald', sans-serif; font-size: 0.9rem; letter-spacing: 1px; font-weight: 600; }
.menu-socials { position: absolute; bottom: 40px; left: 40px; display: flex; flex-direction: column; gap: 10px; z-index: 1100; }
.ms-box { width: 50px; height: 50px; background: #fff; color: #000; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 700; cursor: pointer; transition: 0.3s; }
.ms-box:hover { background: var(--theme-color); color: #000; }
.ms-label { writing-mode: vertical-rl; transform: rotate(180deg); color: #fff; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; align-self: center; opacity: 0.7; font-weight: 600; }
.menu-lang { position: absolute; top: 40px; right: 40px; display: flex; flex-direction: column; align-items: flex-end; color: #fff; z-index: 1100; }
.menu-lang .lang-label { margin-bottom: 5px; font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 1px; }
.menu-lang .lang-box { background: #000; border: 1px solid #333; display: flex; }
.menu-lang .lang-opt { color: #fff; padding: 5px 10px; font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 700; cursor: pointer; }
.menu-lang .lang-opt.active { background: var(--theme-color); color: #000; }

/* --- 3. UI GLOBAL --- */
.landing-menu-btn { position: fixed; top: 40px; left: 40px; width: 70px; height: 70px; background: var(--black); color: var(--bg-white); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; z-index: 900; transition: transform 0.3s; }
.landing-menu-btn:hover { transform: scale(1.05); background: var(--theme-color); color: #000; }
.hamburger-line { width: 30px; height: 2px; background: currentColor; margin: 3px 0; }
.menu-text-small { font-size: 0.6rem; margin-top: 5px; font-family: 'Oswald', sans-serif; letter-spacing: 1px; }

.ui-socials { position: absolute; bottom: 40px; left: 40px; display: flex; flex-direction: column; gap: 5px; z-index: 800; align-items: center; }
.social-label { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 0.6rem; letter-spacing: 2px; margin-bottom: 10px; font-weight: 600; }
.social-icon { width: 40px; height: 40px; background: var(--black); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: background 0.3s; }
.social-icon:hover { background: var(--theme-color); color: #000; }

.ui-selector { position: absolute; bottom: 40px; right: 40px; display: flex; gap: 15px; align-items: flex-start; gap: 10px; z-index: 800; height: fit-content; }
.selector-label { writing-mode: vertical-rl; text-orientation: mixed; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; color: var(--black); height: 100px; text-align: right; }
.thumbs-stack { display: flex; flex-direction: column; gap: 15px; }
.thumb-box { width: 50px; height: 50px; border: 2px solid #fff; overflow: hidden; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); background: #ccc; opacity: 0.6;}
.thumb-box:hover { transform: scale(1.1); opacity: 1; border-color: var(--black); }
.thumb-box.active {
    opacity: 1;
    border-color: var(--theme-color); /* Border Kuning */
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4); /* Glow kuning */
    z-index: 2;
}

/* --- 4. HERO SECTION --- */
.hero-landing { width: 100%; height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg-hero); }
.hero-bg-graphic { position: absolute; width: 120%; height: 120%; background: radial-gradient(circle, rgba(255,255,255,0) 20%, rgba(255,204,0,0.1) 100%); z-index: 1; display: flex; align-items: center; justify-content: center; }
.bg-big-text { font-family: 'Oswald', sans-serif; font-size: 35vw; font-weight: 700; font-style: italic; color: rgba(255, 204, 0, 0.05); line-height: 0.8; letter-spacing: -2vw; user-select: none; pointer-events: none; }
.hero-art-container { position: relative; z-index: 10; width: 80vh; height: 80vh; display: flex; align-items: center; justify-content: center; }
.main-art-img { width: 130%; height: auto; transform: translateY(-5%); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2)); }
.center-logo-group { position: absolute; bottom: 12vh; left: 50%; transform: translateX(-50%); text-align: center; z-index: 20; }
.cl-text { font-family: 'Oswald', sans-serif; font-weight: 700; font-style: italic; font-size: 4rem; line-height: 0.85; text-transform: uppercase; color: var(--black); text-shadow: 2px 2px 0px #fff; }
.cl-x { color: var(--theme-color); font-size: 5rem; margin-left: -10px; text-shadow: 1px 1px 0 #000; }
.bottom-banner { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%) skewX(-20deg); background: var(--black); color: #fff; width: 60%; max-width: 800px; padding: 10px 0; text-align: center; z-index: 15; }
.banner-text { transform: skewX(20deg); font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; }
.highlight-text { color: var(--theme-color); }

/* --- 6. NEWS SECTION (SERVICES) --- */
.news-section { position: relative; width: 100%; min-height: 100vh; background-color: #f6f6f6; display: flex; align-items: center; justify-content: center; padding: 150px 0; }
.news-container { width: 75%; max-width: 1100px; background: #000; display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; z-index: 10; }
.news-item { display: flex; align-items: flex-start; padding: 30px 40px; border-top: 3px solid var(--theme-color); color: #fff; transition: background 0.3s; position: relative; }
.news-item:hover { background: #1a1a1a; }
.news-date-tag { background: var(--theme-color); color: #000; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.85rem; padding: 2px 8px; letter-spacing: 0.5px; margin-right: 30px; margin-top: 2px; white-space: nowrap; }
.news-content { flex-grow: 1; font-size: 1rem; font-weight: 600; letter-spacing: 0.5px; opacity: 0.9; }
.news-arrow { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.2rem; margin-left: 20px; color: var(--theme-color); }
.news-header-left { position: absolute; top: 60px; left: 60px; }
.news-header-right { position: absolute; top: 60px; right: 60px; }

/* --- 7. INTRO SECTION (ABOUT) --- */
.intro-section { position: relative; width: 100%; min-height: 100vh; background-color: var(--bg-hero); display: flex; align-items: center; justify-content: center; padding: 150px 0; }
.intro-header-left { position: absolute; top: 60px; left: 60px; }
.intro-content-wrapper { max-width: 800px; width: 90%; color: var(--black); font-family: 'Inter', sans-serif; text-align: left; display: flex; flex-direction: column; gap: 2rem; }
.intro-text-p { font-size: 1.15rem; line-height: 1.6; font-weight: 600; }
.intro-footer-text { color: var(--theme-color); font-size: 1.5rem; line-height: 1.4; font-weight: 700; margin-top: 20px; text-shadow: 1px 1px 0 rgba(0,0,0,0.1); }

/* --- 8. STORY SECTION (PARTNERS - DARK) --- */
.story-section {
    position: relative;
    width: 100%;
    min-height: 80vh; 
    background-color: var(--black); 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0;
}
.story-content-wrapper {
    max-width: 800px;
    width: 90%;
    color: var(--bg-white); 
    font-family: 'Inter', sans-serif;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.story-text-p { color: #ffffff; font-size: 1.15rem; line-height: 1.6; font-weight: 600; }
.story-footer-text { color: var(--theme-color); font-size: 1.8rem; line-height: 1.4; font-weight: 700; margin-top: 30px; }

/* --- 9. STAFF & CAST SECTION (TEAM) --- */
.staff-cast-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #f9f9f9; 
    padding: 150px 0;
    font-family: 'Inter', sans-serif;
}
.sc-main-header { position: absolute; top: 60px; left: 60px; }
.sc-container { width: 85%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-top: 50px; }
.sc-column { display: flex; flex-direction: column; align-items: center; }
.sc-col-title { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 500; margin-bottom: 50px; letter-spacing: 1px; }
.staff-list, .cast-list { width: 100%; display: flex; flex-direction: column; gap: 25px; }
.staff-list { text-align: center; }
.cast-item { display: flex; justify-content: flex-end; align-items: center; gap: 20px; width: 100%; }
.cast-text { text-align: right; }
.role { font-weight: 700; color: var(--black); margin-right: 8px; font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 0.9rem; }
.name { font-weight: 600; color: var(--theme-color); text-shadow: 0.5px 0.5px 0 #000; }

.cast-icon {
    width: 35px; height: 35px; border: 1px solid #999; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #666; font-size: 0.8rem; cursor: pointer; transition: all 0.3s;
}
.cast-icon:hover { background: var(--theme-color); border-color: var(--theme-color); color: #000; }

/* --- 10. CHARACTER SECTION (WORKS - SKEW) --- */
.character-section {
    position: relative; width: 100%; min-height: 100vh;
    background-color: #f4f4f4; padding: 150px 0; overflow: hidden;
}
.char-header { position: absolute; top: 60px; left: 60px; z-index: 10; }
.char-grid-wrapper {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; margin-top: 50px; gap: 10px; transform: scale(0.9);
}
.char-row { display: flex; justify-content: center; }
.char-card {
    position: relative; width: 180px; height: 450px; overflow: hidden;
    transform: skewX(-20deg); border-right: 3px solid #fff; background: #000;
    transition: transform 0.3s; cursor: pointer;
}
.char-card:hover { z-index: 5; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.black-filler { background: #000; width: 180px; }
.char-img {
    width: 140%; height: 100%; object-fit: cover;
    transform: skewX(20deg) translateX(-15%);
    transition: transform 0.5s; opacity: 0.8;
}
.char-card:hover .char-img { opacity: 1; transform: skewX(20deg) translateX(-15%) scale(1.1); }
.char-info {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; transform: skewX(20deg);
    padding: 20px; display: flex; flex-direction: column; justify-content: space-between; z-index: 2;
}
.hero-name-label { background: #000; color: #fff; font-size: 0.6rem; padding: 2px 5px; width: fit-content; font-weight: 700; margin-bottom: 2px; }
.hero-name { background: #fff; color: #000; font-size: 0.8rem; font-weight: 800; padding: 2px 5px; width: fit-content; text-transform: uppercase; font-family: 'Oswald', sans-serif; }
.rank-no {
    font-family: 'Oswald', sans-serif; font-size: 5rem; font-weight: 700;
    color: var(--theme-color); line-height: 0.8; position: absolute; bottom: 0; left: -10px;
    opacity: 0.9; text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.rank-label { position: absolute; bottom: 60px; left: 10px; background: #000; color: #fff; font-size: 0.5rem; padding: 2px 4px; font-weight: 700; }

/* --- 11. FOOTER SECTION --- */
.main-footer {
    position: relative; width: 100%; background-color: #000; color: #fff;
    padding-top: 100px; padding-bottom: 50px; display: flex; flex-direction: column;
    align-items: center; text-align: center; font-family: 'Inter', sans-serif; z-index: 20;
}
.footer-logos { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; font-family: 'Oswald', sans-serif; }
.logo-aniplex { font-size: 2rem; font-weight: 700; border: 2px solid var(--theme-color); color: var(--theme-color); padding: 2px 10px; letter-spacing: 2px; }
.logo-x { font-size: 1rem; color: #666; }
.logo-bili { font-size: 1.5rem; font-weight: 700; }
.footer-sns-wrapper { margin-bottom: 30px; }
.sns-red-banner { background: var(--theme-color); padding: 5px 40px; transform: skewX(-20deg); display: inline-block; }
.sns-text { display: block; transform: skewX(20deg); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; color: #000; }
.footer-social-links { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; align-items: center; margin-bottom: 50px; max-width: 800px; }
.fs-link { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; opacity: 0.8; transition: opacity 0.3s, color 0.3s; }
.fs-link:hover { opacity: 1; color: var(--theme-color); }
.fs-link i { font-size: 1.2rem; }
.footer-copyright-small { font-size: 0.7rem; color: #666; margin-bottom: 80px; }
.footer-bottom-bar { width: 100%; max-width: 1400px; padding: 0 40px; display: flex; justify-content: space-between; align-items: flex-end; font-size: 0.7rem; color: #444; }
.fb-left { display: flex; gap: 15px; font-weight: 700; text-transform: uppercase; }
.fb-left a { transition: color 0.3s; }
.fb-left a:hover { color: #fff; }
.fb-divider { color: #333; }
.fb-right { text-align: right; max-width: 600px; line-height: 1.4; }

/* --- BUTTONS --- */
.archive-btn { padding: 10px 30px; border: 2px solid var(--black); font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; background: transparent; color: var(--black); }
.archive-btn:hover { background: var(--theme-color); color: var(--black); border-color: var(--theme-color); }

/* --- 12. VIDEO MODAL & CURSOR --- */
.video-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 10000; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: all 0.5s ease; }
.video-modal-overlay.active { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); cursor: pointer; }
.video-container { width: 80%; height: 80%; max-width: 1200px; position: relative; z-index: 2; background: #000; }
.modal-close-btn { position: absolute; top: -40px; right: 0; color: #fff; font-family: 'Oswald', sans-serif; cursor: pointer; font-weight: 700; letter-spacing: 1px; transition: color 0.3s; }
.modal-close-btn:hover { color: var(--theme-color); }
.play-cursor { position: fixed; top: 0; left: 0; width: 120px; height: 120px; pointer-events: none; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0) translate(-50%, -50%); transform-origin: center; mix-blend-mode: difference; }
.pc-circle { width: 100%; height: 100%; position: absolute; animation: rotateText 10s linear infinite; fill: #fff; }
.pc-icon { font-size: 1.5rem; color: #fff; }
@keyframes rotateText { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- RESPONSIVE --- */
@media (max-width: 1200px) { .char-card { width: 140px; height: 350px; } .rank-no { font-size: 3.5rem; } }
@media (max-width: 900px) { .sc-container { grid-template-columns: 1fr; gap: 60px; } .sc-main-header { position: relative; top: 0; left: 0; margin-bottom: 40px; padding-left: 30px; } .staff-cast-section { padding: 80px 0; } .cast-item { justify-content: flex-start; flex-direction: row-reverse; } .cast-text { text-align: left; } }
@media (max-width: 768px) { 
    .section-title-big { font-size: 3.5rem; } 
    .movie-sidebar-left, .movie-sidebar-right, .news-header-left, .news-header-right, .intro-header-left { top: 40px; left: 30px; right: 30px; } 
    .archive-btn { padding: 8px 20px; font-size: 0.8rem; }
    .news-container { width: 90%; } .news-item { padding: 20px; flex-direction: column; } .news-date-tag { margin-bottom: 10px; display: inline-block; width: fit-content; } .news-arrow { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
    .intro-section { padding: 150px 30px 100px; } .intro-text-p { font-size: 1rem; } .intro-footer-text { font-size: 1.2rem; }
    .bg-big-text { font-size: 50vw; } .cl-text { font-size: 2.5rem; } .bottom-banner { width: 90%; bottom: 80px; }
    .ui-selector, .ui-socials { display: none; } .hero-art-container { width: 100%; }
    .menu-grid-container { grid-template-columns: 1fr; text-align: center; gap: 20px; } .menu-link-item { font-size: 2.5rem; } .menu-close-btn { width: 70px; height: 70px; } .menu-socials { display: none; }
    .char-grid-wrapper { flex-direction: row; overflow-x: auto; justify-content: flex-start; padding-left: 20px; transform: none; width: 100%; } .char-row { display: contents; } 
    .char-card { transform: none; border-right: none; border: 1px solid #ddd; min-width: 250px; height: 400px; margin-right: 15px; border-radius: 10px; } .char-img { transform: none !important; width: 100%; } .char-info { transform: none; } .black-filler { display: none; } .char-header { position: relative; top: 0; left: 0; padding: 40px 20px 0; }
    .footer-social-links, .footer-bottom-bar { flex-direction: column; gap: 15px; text-align: center; } .fb-right { text-align: center; }
}