:root {
    --green-dark-1: #062015;
    --green-dark-2: #0b3a25;
    --green-shadow: #0b2a1b;
    --green-accent: #16c489;
    --green-light: #9affd9;
    --cream: #fff7df;
    --white-soft: #f8fff7;
    --gold: #ffd86b;
    --gold-dark: #b98218;
    --font-heading: "Fredoka", "Poppins", system-ui, sans-serif;
    --font-body: "Poppins", system-ui, sans-serif;
    --board-bg: linear-gradient(180deg, #0d4a30 0%, #082b1d 100%);
    --panel-bg: linear-gradient(180deg, rgba(13, 74, 48, 0.96), rgba(8, 43, 29, 0.96));
    --chunk-border: 4px solid var(--green-light);
    --chunk-shadow: 0 10px 0 var(--green-shadow), 0 22px 40px rgba(0, 0, 0, 0.38);
    --mini-shadow: 0 7px 0 var(--green-shadow), 0 14px 24px rgba(0, 0, 0, 0.3);
    --gold-shadow: 0 8px 0 var(--gold-dark), 0 18px 32px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: var(--font-body);
    color: var(--white-soft);
    background:
        radial-gradient(circle at top left, rgba(22, 196, 137, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(154, 255, 217, 0.13), transparent 34%),
        linear-gradient(135deg, #062015 0%, #0b3a25 52%, #06170f 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 216, 107, 0.08), transparent 26%),
        linear-gradient(rgba(6, 32, 21, 0.12), rgba(6, 32, 21, 0.18));
    pointer-events: none;
    z-index: 0;
}

.login-bg-grid {
    position: fixed;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(154, 255, 217, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(154, 255, 217, 0.2) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    z-index: 0;
}

.login-bg-orb {
    position: fixed;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(22, 196, 137, 0.18);
    filter: blur(8px);
    animation: floatOrb 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    top: 8%;
    left: -60px;
}

.orb-2 {
    right: -70px;
    bottom: 8%;
    animation-delay: 1.5s;
}

.orb-3 {
    top: 54%;
    left: 52%;
    width: 240px;
    height: 240px;
    background: rgba(255, 216, 107, 0.09);
    animation-delay: 3s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-16px) scale(1.05);
    }
}

.lp-root {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
}

.quest-board,
.quest-mini-panel,
.mission-card {
    background: var(--panel-bg);
    border: var(--chunk-border);
    color: var(--cream);
    box-shadow: var(--chunk-shadow);
}

.quest-board {
    position: relative;
    border-radius: 32px;
}

.quest-mini-panel,
.mission-card {
    border-radius: 28px;
    box-shadow: var(--mini-shadow);
}

.quest-pin {
    position: absolute;
    top: -15px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold), #ffb936);
    border: 4px solid var(--gold-dark);
    box-shadow: 0 5px 0 rgba(67, 44, 7, 0.65);
    z-index: 3;
}

.pin-left {
    left: 34px;
}

.pin-right {
    right: 34px;
}

.quest-label,
.lp-badge,
.lp-section-label,
.prolog-badge,
.mission-num {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quest-label,
.lp-section-label,
.mission-num {
    padding: 6px 13px;
    background: rgba(154, 255, 217, 0.14);
    border: 2px solid rgba(154, 255, 217, 0.55);
    color: var(--green-light);
}

.lp-badge,
.prolog-badge {
    padding: 9px 14px;
    background: linear-gradient(180deg, var(--gold), #f4b83f);
    border: 3px solid #fff0a8;
    color: #2b1d04;
    box-shadow: 0 5px 0 var(--gold-dark);
}

.game-btn,
.lp-nav-cta,
.lp-nav-logout {
    min-height: 52px;
    border-radius: 22px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 900;
    border: 4px solid #eafff7;
    transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.game-btn,
.lp-nav-cta {
    color: var(--green-dark-1);
    background: linear-gradient(180deg, #ffffff 0%, var(--green-light) 45%, var(--green-accent) 100%);
    box-shadow: 0 8px 0 var(--green-shadow), 0 16px 26px rgba(0, 0, 0, 0.26);
}

.game-btn:hover,
.lp-nav-cta:hover,
.lp-nav-logout:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.05);
}

.game-btn:active,
.lp-nav-cta:active,
.lp-nav-logout:active {
    transform: translateY(4px) scale(0.98);
    box-shadow: 0 3px 0 var(--green-shadow), 0 8px 14px rgba(0, 0, 0, 0.22);
}

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 74px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.98), rgba(8, 43, 29, 0.98));
    border-bottom: 4px solid var(--green-light);
    box-shadow: 0 7px 0 var(--green-shadow), 0 14px 26px rgba(0, 0, 0, 0.28);
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    position: relative;
    z-index: 60;
}

.lp-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--green-light), var(--green-accent));
    border: 3px solid #dffff2;
    box-shadow: 0 5px 0 var(--green-shadow);
    color: var(--green-dark-1);
    font-size: 18px;
}

.lp-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(15px, 4vw, 19px);
    font-weight: 900;
    color: var(--white-soft);
    letter-spacing: -0.2px;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}

.logo-ar-accent {
    color: var(--gold);
}

.mobile-menu-toggle-btn {
    position: relative;
    z-index: 60;
    width: 46px;
    height: 46px;
    border-radius: 17px;
    border: 3px solid #eafff7;
    background: linear-gradient(180deg, #ffffff, var(--green-light));
    color: var(--green-dark-1);
    box-shadow: 0 5px 0 var(--green-shadow);
    font-size: 19px;
    cursor: pointer;
}

.lp-nav-menu-container {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(8, 43, 29, 0.99), rgba(6, 32, 21, 0.99));
    border-bottom: 4px solid var(--green-light);
    box-shadow: 0 8px 0 var(--green-shadow), 0 18px 30px rgba(0, 0, 0, 0.36);
    z-index: 55;
}

.lp-nav-menu-container.show-menu {
    display: flex;
}

.lp-nav-links,
.lp-footer-links {
    list-style: none;
}

.lp-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.lp-nav-links a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: var(--cream);
    font-weight: 900;
    padding: 13px 16px;
    border-radius: 18px;
    border: 3px solid rgba(154, 255, 217, 0.22);
    background: rgba(6, 32, 21, 0.58);
    transition: 0.18s ease;
}

.lp-nav-links a:hover {
    color: var(--green-dark-1);
    background: var(--green-light);
    transform: translateY(-2px);
}

.lp-nav-actions {
    display: grid;
    gap: 12px;
}

.lp-nav-logout {
    color: #fff0ea;
    background: linear-gradient(180deg, #ff806f, #dc3f32);
    border-color: #ffd4ca;
    box-shadow: 0 8px 0 #7a1b0c, 0 16px 26px rgba(0, 0, 0, 0.26);
}

.lp-hero {
    position: relative;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 18px 28px;
}

.lp-hero-content {
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-title,
.lp-section-title,
.prolog-title {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--white-soft);
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}

.lp-title {
    max-width: 720px;
    margin: 20px 0 8px;
    font-size: clamp(28px, 6vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.4px;
    text-transform: none;
}

.sub-title-ind {
    max-width: 560px;
    margin-bottom: 24px;
    color: rgba(255, 247, 223, 0.84);
    font-size: clamp(14px, 3.4vw, 18px);
    font-weight: 700;
    line-height: 1.55;
}

.player-hud-card {
    width: 100%;
    max-width: 500px;
    padding: 30px 24px 24px;
    margin-top: 8px;
    animation: boardPop 0.45s ease both;
}

.hud-topline,
.progress-text-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hud-topline {
    margin-bottom: 18px;
}

.hud-online {
    color: var(--green-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.hud-online i {
    color: var(--green-accent);
    font-size: 8px;
    filter: drop-shadow(0 0 7px rgba(154, 255, 217, 0.85));
}

.hud-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 14px;
    border-radius: 24px;
    background: rgba(6, 32, 21, 0.42);
    border: 3px solid rgba(154, 255, 217, 0.24);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.03);
}

.avatar-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--green-light) 50%, var(--green-accent) 100%);
    border: 5px solid #eafff7;
    box-shadow: 0 7px 0 var(--green-shadow), 0 0 22px rgba(154, 255, 217, 0.32);
    color: var(--green-dark-1);
    font-size: 32px;
}

.profile-info h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: var(--cream);
    font-size: clamp(18px, 4.8vw, 24px);
    font-weight: 900;
    line-height: 1.15;
}

.profile-info p {
    color: rgba(255, 247, 223, 0.74);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.hud-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.stat-box,
.lp-stat {
    border-radius: 22px;
    padding: 15px;
    background: var(--cream);
    border: 4px solid #d8f8df;
    box-shadow: 0 6px 0 var(--green-shadow);
    color: var(--green-dark-1);
}

.stat-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    color: var(--green-dark-2);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.stat-title i {
    color: var(--gold-dark);
}

.stat-value {
    display: block;
    color: var(--green-dark-1);
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 1000;
    line-height: 1.1;
}

.rank-text {
    color: var(--gold-dark);
    font-size: clamp(14px, 4.2vw, 18px);
}

.progress-section {
    width: 100%;
    max-width: 500px;
    margin-top: 18px;
    padding: 18px;
}

.progress-text-info {
    margin-bottom: 11px;
    color: var(--green-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.progress-track {
    width: 100%;
    height: 24px;
    padding: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--cream);
    border: 4px solid #d8f8df;
    box-shadow: inset 0 3px 0 rgba(11, 42, 27, 0.18), 0 5px 0 var(--green-shadow);
}

.progress-fill {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--green-light) 45%, var(--green-accent) 100%);
    box-shadow: 0 0 12px rgba(154, 255, 217, 0.55);
    transition: width 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lp-stats {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto 22px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lp-stat {
    text-align: center;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.18s ease;
}

.lp-stat:hover,
.feature-item:hover,
.dim-card:hover,
.mission-card:hover {
    transform: translateY(-4px);
}

.lp-stat-num {
    font-family: var(--font-heading);
    color: var(--green-dark-1);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 900;
    line-height: 1;
}

.lp-stat-label {
    margin-top: 7px;
    color: var(--green-dark-2);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.highlight-ar-text {
    color: var(--gold-dark);
}

.lp-section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 54px 0;
}

.lp-section-title {
    margin: 13px 0 10px;
    font-size: clamp(24px, 5.4vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.2px;
    text-transform: none;
}

.lp-section-desc {
    max-width: 720px;
    margin-bottom: 24px;
    color: rgba(255, 247, 223, 0.82);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
}

.lp-missions,
.lp-feature-grid,
.lp-dimensions {
    display: grid;
    gap: 18px;
}

.lp-missions {
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.mission-card {
    position: relative;
    min-height: 245px;
    padding: 26px 20px 20px;
    overflow: hidden;
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.mission-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(154, 255, 217, 0.08);
    pointer-events: none;
}

.mission-status-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--cream);
    border: 3px solid #d8f8df;
    box-shadow: 0 5px 0 var(--green-shadow);
    color: var(--green-dark-1);
    font-size: 19px;
    z-index: 2;
}

.mission-card .mission-num {
    margin-bottom: 13px;
}

.mission-name {
    width: calc(100% - 48px);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: var(--cream);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.22);
}

.mission-desc,
.feature-text-desc,
.dim-sub,
.lp-footer-sub {
    color: rgba(255, 247, 223, 0.78);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.mission-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(154, 255, 217, 0.14);
    border: 2px solid rgba(154, 255, 217, 0.45);
    color: var(--green-light);
    font-size: 12px;
    font-weight: 900;
}

.mission-card.active {
    border-color: var(--green-light);
    animation: misiActivePulse 2.2s ease-in-out infinite;
}

.mission-card.active .mission-status-icon {
    color: var(--green-dark-1);
    background: linear-gradient(180deg, #ffffff 0%, var(--green-light) 48%, var(--green-accent) 100%);
}

.mission-card.active .mission-tag,
.tag-active {
    background: linear-gradient(180deg, #ffffff 0%, var(--green-light) 45%, var(--green-accent) 100%);
    border-color: #eafff7;
    color: var(--green-dark-1);
}

.mission-card.completed {
    border-color: var(--gold);
    background: linear-gradient(180deg, #0f5a39 0%, #0a3322 100%);
    box-shadow: var(--gold-shadow);
}

.mission-card.completed .mission-status-icon,
.tag-completed {
    background: linear-gradient(180deg, var(--gold), #ffb936);
    border-color: #fff0a8;
    color: #2b1d04;
}

.mission-card.completed .mission-status-icon {
    box-shadow: 0 5px 0 var(--gold-dark);
}

.mission-card.locked {
    background: linear-gradient(180deg, rgba(40, 66, 54, 0.96), rgba(23, 38, 31, 0.96));
    border-color: rgba(255, 247, 223, 0.3);
    box-shadow: 0 7px 0 #17261f, 0 14px 24px rgba(0, 0, 0, 0.28);
    filter: saturate(0.55);
    opacity: 0.82;
}

.mission-card.locked:hover {
    transform: none;
}

.mission-card.locked .mission-status-icon,
.tag-locked {
    background: #d9ddd4;
    border-color: #f3f7ed;
    color: #334239;
}

.mission-card.locked .mission-num {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 247, 223, 0.56);
}

.mission-card.locked .mission-name,
.mission-card.locked .mission-desc {
    color: rgba(255, 247, 223, 0.58);
}

.boss-level {
    border-color: var(--gold);
}

.boss-level .mission-num {
    background: rgba(255, 216, 107, 0.16);
    border-color: rgba(255, 216, 107, 0.68);
    color: var(--gold);
}

.boss-level::after {
    content: "BOSS";
    position: absolute;
    right: -30px;
    bottom: 18px;
    rotate: -18deg;
    color: rgba(255, 216, 107, 0.11);
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    pointer-events: none;
}

.boss-level.active {
    border-color: var(--gold);
    animation: bossPulse 2s ease-in-out infinite;
}

.boss-level.active .mission-status-icon,
.boss-level.active .mission-tag {
    background: linear-gradient(180deg, var(--gold), #ffb936);
    border-color: #fff0a8;
    color: #2b1d04;
}

@keyframes misiActivePulse {
    0%, 100% {
        box-shadow: 0 7px 0 var(--green-shadow), 0 0 0 0 rgba(154, 255, 217, 0.48), 0 18px 28px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 7px 0 var(--green-shadow), 0 0 0 10px rgba(154, 255, 217, 0), 0 0 28px rgba(22, 196, 137, 0.42);
    }
}

@keyframes bossPulse {
    0%, 100% {
        box-shadow: 0 8px 0 var(--gold-dark), 0 0 0 0 rgba(255, 216, 107, 0.52), 0 18px 32px rgba(0, 0, 0, 0.34);
    }
    50% {
        box-shadow: 0 8px 0 var(--gold-dark), 0 0 0 12px rgba(255, 216, 107, 0), 0 0 32px rgba(255, 216, 107, 0.38);
    }
}

.lp-feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    transition: transform 0.18s ease;
}

.feature-icon,
.dim-icon {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--green-light), var(--green-accent));
    border: 3px solid #dffff2;
    box-shadow: 0 5px 0 var(--green-shadow);
    color: var(--green-dark-1);
}

.feature-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 20px;
}

.feature-text-title,
.dim-title {
    color: var(--cream);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.lp-dimensions {
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.dim-card {
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.18s ease;
}

.dim-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 22px;
    font-size: 24px;
}

.lp-footer {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    padding: 38px 18px 46px;
    text-align: center;
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.92), rgba(6, 32, 21, 0.98));
    border-top: 4px solid var(--green-light);
    box-shadow: 0 -7px 0 var(--green-shadow);
}

.lp-footer-logo {
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #2b1d04;
    background: linear-gradient(180deg, var(--gold), #f4b83f);
    border: 3px solid #fff0a8;
    box-shadow: 0 5px 0 var(--gold-dark);
}

.lp-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 15px;
}

.lp-footer-links a {
    color: var(--green-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.lp-footer-links a:hover {
    color: var(--gold);
}

.prolog-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(2, 10, 7, 0.78);
    backdrop-filter: blur(8px);
}

.prolog-overlay.hide {
    animation: overlayFade 0.4s ease forwards;
}

.prolog-modal {
    width: min(860px, 100%);
    max-height: min(88vh, 780px);
    padding: 34px 24px 24px;
    display: flex;
    flex-direction: column;
    animation: boardPop 0.45s ease both;
}

.prolog-header {
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 3px dashed rgba(154, 255, 217, 0.24);
}

.prolog-badge {
    margin: 0 auto 13px;
}

.prolog-title {
    margin-bottom: 7px;
    font-size: clamp(24px, 6vw, 38px);
    line-height: 1.14;
}

.prolog-subtitle {
    color: rgba(255, 247, 223, 0.76);
    font-size: 13px;
    font-weight: 800;
}

.prolog-rini-bar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin: 18px 0;
    padding: 14px;
    border-radius: 22px;
    background: rgba(6, 32, 21, 0.48);
    border: 3px solid rgba(154, 255, 217, 0.24);
}

.prolog-rini-avatar {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--green-light), var(--green-accent));
    border: 3px solid #eafff7;
    box-shadow: 0 5px 0 var(--green-shadow);
    font-size: 24px;
}

.prolog-rini-speech {
    color: var(--cream);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.prolog-rini-speech strong {
    color: var(--gold);
}

.prolog-facts-scroll {
    display: grid;
    gap: 13px;
    overflow-y: auto;
    padding: 2px 5px 8px 0;
}

.prolog-fact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 247, 223, 0.08);
    border: 3px solid rgba(154, 255, 217, 0.18);
}

.prolog-fact-danger {
    border-color: rgba(255, 216, 107, 0.48);
    background: rgba(255, 216, 107, 0.08);
}

.prolog-fact-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--cream);
    border: 3px solid #d8f8df;
    box-shadow: 0 4px 0 var(--green-shadow);
    font-size: 20px;
}

.prolog-fact-title {
    color: var(--green-light);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 5px;
}

.prolog-fact-text,
.prolog-fact-list {
    color: rgba(255, 247, 223, 0.84);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.prolog-fact-list {
    padding-left: 18px;
}

.prolog-fact-list li + li {
    margin-top: 8px;
}

.prolog-footer {
    padding-top: 14px;
}

.prolog-cta-btn {
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.rini-container {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.rini-bubble {
    position: relative;
    width: min(310px, calc(100vw - 32px));
    padding: 14px 15px;
    border-radius: 22px;
    background: var(--cream);
    border: 4px solid #d8f8df;
    box-shadow: 0 7px 0 var(--green-shadow), 0 16px 24px rgba(0, 0, 0, 0.28);
    color: var(--green-dark-1);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    animation: bubblePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rini-bubble.hidden {
    display: none;
}

.rini-bubble-tail {
    position: absolute;
    right: 28px;
    bottom: -12px;
    width: 22px;
    height: 22px;
    background: var(--cream);
    border-right: 4px solid #d8f8df;
    border-bottom: 4px solid #d8f8df;
    transform: rotate(45deg);
}

.rini-avatar {
    position: relative;
    width: 82px;
    height: 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.rini-glow {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: rgba(154, 255, 217, 0.32);
    filter: blur(12px);
    animation: riniGlow 2.4s ease-in-out infinite;
}

.rini-face {
    position: relative;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, var(--green-light) 45%, var(--green-accent) 100%);
    border: 4px solid #eafff7;
    box-shadow: 0 7px 0 var(--green-shadow);
    font-size: 32px;
}

.rini-name {
    position: relative;
    margin-top: -1px;
    padding: 4px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), #f4b83f);
    border: 3px solid #fff0a8;
    box-shadow: 0 4px 0 var(--gold-dark);
    color: #2b1d04;
    font-size: 11px;
    font-weight: 1000;
}

@keyframes boardPop {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bubblePop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes overlayFade {
    to {
        opacity: 0;
        transform: scale(0.98);
    }
}

@keyframes riniGlow {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.95;
    }
}

@media (min-width: 768px) {
    .mobile-menu-toggle-btn {
        display: none;
    }

    .lp-nav {
        padding: 12px 36px;
    }

    .lp-nav-menu-container {
        position: static;
        width: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 22px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .lp-nav-links {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .lp-nav-links a {
        padding: 10px 13px;
        border-radius: 16px;
        font-size: 13px;
    }

    .lp-nav-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .lp-nav-cta,
    .lp-nav-logout {
        min-height: 46px;
        padding: 0 18px;
        white-space: nowrap;
        font-size: 13px;
    }

    .lp-hero {
        padding: 64px 24px 34px;
    }

    .lp-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .lp-nav {
        min-height: 68px;
        padding: 10px 14px;
    }

    .lp-nav-menu-container {
        top: 68px;
    }

    .lp-logo-icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .lp-hero {
        min-height: auto;
        padding: 32px 16px 22px;
    }

    .lp-badge,
    .prolog-badge {
        justify-content: center;
        text-align: center;
        line-height: 1.35;
    }

    .player-hud-card {
        border-radius: 28px;
        padding: 28px 18px 20px;
    }

    .hud-profile {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .profile-info h3 {
        justify-content: center;
    }

    .hud-stats-grid,
    .lp-stats {
        grid-template-columns: 1fr;
    }

    .progress-text-info {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .lp-section {
        width: min(100% - 28px, 1120px);
        padding: 42px 0;
    }

    .mission-card {
        min-height: 230px;
    }

    .feature-item,
    .prolog-rini-bar,
    .prolog-fact-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .prolog-modal {
        padding: 32px 16px 18px;
        border-radius: 28px;
    }

    .prolog-facts-scroll {
        max-height: 45vh;
    }

    .rini-container {
        right: 12px;
        bottom: 12px;
    }

    .rini-face {
        width: 62px;
        height: 62px;
        border-radius: 22px;
        font-size: 28px;
    }
}


.team-section {
    position: relative;
}

.team-guild-board {
    position: relative;
    padding: 34px 26px 28px;
    margin-top: 28px;
    overflow: hidden;
}

.team-guild-board::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 26px;
    border: 2px dashed rgba(154, 255, 217, 0.22);
    pointer-events: none;
}

.team-leader-card,
.team-card {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff7df 0%, #f1e6c6 100%);
    border: 4px solid rgba(154, 255, 217, 0.9);
    box-shadow: 0 8px 0 var(--green-shadow), 0 16px 28px rgba(0, 0, 0, 0.28);
    color: var(--green-dark-1);
}

.team-leader-card {
    display: grid;
    grid-template-columns: 168px 1fr;
    gap: 22px;
    align-items: center;
    padding: 22px;
    margin-bottom: 22px;
    background:
        radial-gradient(circle at top right, rgba(255, 216, 107, 0.45), transparent 34%),
        linear-gradient(180deg, #fff7df 0%, #f5e7bd 100%);
    border-color: var(--gold);
    box-shadow: var(--gold-shadow);
}

.team-leader-photo-wrap,
.team-photo-frame {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--green-light), var(--green-accent));
    border: 4px solid var(--green-dark-1);
    box-shadow: 0 7px 0 rgba(11, 42, 27, 0.85);
}

.team-leader-photo-wrap {
    width: 148px;
    height: 148px;
    border-radius: 34px;
}

.team-photo-frame {
    width: 116px;
    height: 116px;
    border-radius: 30px;
    margin: -64px auto 12px;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-leader-content h3,
.team-card-body h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.05;
    color: var(--green-dark-1);
}

.team-leader-content h3 {
    font-size: clamp(27px, 4vw, 38px);
    margin: 8px 0 10px;
}

.team-leader-content p {
    max-width: 650px;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
    color: rgba(6, 32, 21, 0.76);
}

.team-kicker,
.team-role-badge,
.team-meta-row span,
.team-nim,
.team-program {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    font-weight: 900;
}

.team-kicker {
    padding: 8px 14px;
    background: linear-gradient(180deg, var(--gold), #ffbd3a);
    border: 3px solid var(--gold-dark);
    color: #362407;
    font-size: 12px;
    box-shadow: 0 4px 0 rgba(67, 44, 7, 0.42);
}

.team-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.team-meta-row span {
    padding: 8px 12px;
    background: rgba(11, 58, 37, 0.1);
    border: 2px solid rgba(11, 58, 37, 0.18);
    font-size: 12px;
    color: var(--green-dark-2);
}

.team-cards-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 44px;
}

.team-card {
    min-height: 330px;
    padding: 72px 18px 18px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.team-card:hover {
    transform: translateY(-6px) scale(1.02);
    filter: brightness(1.04);
    box-shadow: 0 12px 0 var(--green-shadow), 0 22px 34px rgba(0, 0, 0, 0.33);
}

.team-card.guild-leader {
    border-color: var(--gold);
}

.team-card.tech-builder {
    border-color: var(--green-light);
    background:
        radial-gradient(circle at top, rgba(154, 255, 217, 0.34), transparent 36%),
        linear-gradient(180deg, #fff7df 0%, #f1e6c6 100%);
}

.team-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 84px;
    border-radius: 24px 24px 0 0;
    background:
        linear-gradient(90deg, rgba(11, 58, 37, 0.95), rgba(22, 196, 137, 0.9)),
        url('../assets/bg-dayak.webp') center/cover;
    border-bottom: 4px solid rgba(11, 42, 27, 0.8);
}

.team-role-badge {
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 7px 11px;
    background: linear-gradient(180deg, var(--gold), #ffbd3a);
    border: 3px solid var(--gold-dark);
    box-shadow: 0 4px 0 rgba(67, 44, 7, 0.48);
    color: #362407;
    font-size: 10px;
    letter-spacing: 0.2px;
}

.team-card-body h3 {
    min-height: 42px;
    font-size: 23px;
    margin: 6px 0 8px;
}

.team-nim,
.team-program {
    justify-content: center;
    width: fit-content;
    margin: 0 auto 8px;
    padding: 6px 10px;
    font-size: 11px;
}

.team-nim {
    background: rgba(22, 196, 137, 0.18);
    border: 2px solid rgba(11, 58, 37, 0.12);
    color: var(--green-dark-2);
}

.team-program {
    background: rgba(255, 216, 107, 0.28);
    border: 2px solid rgba(185, 130, 24, 0.18);
    color: #6a4305;
}

.team-task {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 3px dashed rgba(11, 58, 37, 0.14);
    font-size: 12.5px;
    line-height: 1.58;
    font-weight: 700;
    color: rgba(6, 32, 21, 0.72);
}

@media (max-width: 980px) {
    .team-leader-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .team-meta-row {
        justify-content: center;
    }

    .team-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .team-guild-board {
        padding: 32px 14px 18px;
        border-radius: 28px;
    }

    .team-guild-board::before {
        inset: 12px;
        border-radius: 22px;
    }

    .team-leader-card {
        padding: 20px 14px;
        border-radius: 24px;
    }

    .team-leader-photo-wrap {
        width: 132px;
        height: 132px;
        border-radius: 30px;
    }

    .team-cards-grid {
        grid-template-columns: 1fr;
        gap: 58px;
        padding-top: 52px;
    }

    .team-card {
        min-height: auto;
        padding: 72px 16px 18px;
        border-radius: 24px;
    }

    .team-role-badge {
        max-width: 88%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.team-card {
    padding: 132px 18px 20px;
    min-height: 390px;
}

.team-card-top {
    height: 108px;
}

.team-photo-frame {
    position: relative;
    z-index: 3;
    width: 112px;
    height: 112px;
    margin: -60px auto 20px;
}

.team-role-badge {
    bottom: -26px;
    z-index: 4;
    font-size: 10px;
    padding: 7px 12px;
}

.team-card-body {
    position: relative;
    z-index: 2;
}

.team-card-body h3 {
    margin: 0 0 10px;
    min-height: auto;
    font-size: 22px;
    line-height: 1.18;
    text-align: center;
    color: var(--green-dark-1);
}

.team-nim {
    margin-top: 8px;
}

@media (max-width: 560px) {
    .team-card {
        padding: 132px 16px 20px;
        min-height: auto;
    }

    .team-card-body h3 {
        font-size: 23px;
    }
}

:root {
    --font-heading: "Cinzel", serif;
    --font-body: "Poppins", system-ui, sans-serif;
    --green-dark-1: #020b07;
    --green-dark-2: #061b12;
    --green-shadow: rgba(0, 0, 0, 0.58);
    --green-accent: #24c98f;
    --green-light: #7cffc7;
    --cream: #fff4d0;
    --white-soft: #f8fff7;
    --gold: #ffd86b;
    --gold-dark: #b98218;
    --dayak-red: #d93131;
    --dayak-orange: #ff9f2e;
    --dayak-black: #101009;
    --text-muted: rgba(255, 244, 208, 0.78);
    --panel-bg: linear-gradient(180deg, rgba(13, 74, 48, 0.78), rgba(5, 28, 19, 0.86)), radial-gradient(circle at top, rgba(255, 216, 107, 0.14), transparent 34%);
    --chunk-border: 1px solid rgba(255, 216, 107, 0.28);
    --chunk-shadow: 0 24px 80px rgba(0, 0, 0, 0.54), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    --mini-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    --gold-shadow: 0 9px 0 rgba(112, 57, 11, 0.92), 0 18px 34px rgba(0, 0, 0, 0.28);
}

html,
body {
    background: var(--green-dark-1);
}

body {
    color: var(--white-soft);
    background:
        radial-gradient(circle at 18% 10%, rgba(36, 201, 143, 0.22), transparent 30%),
        radial-gradient(circle at 84% 84%, rgba(255, 216, 107, 0.14), transparent 28%),
        radial-gradient(circle at 50% 50%, rgba(217, 49, 49, 0.08), transparent 42%),
        linear-gradient(135deg, #020b07 0%, #082418 42%, #03120c 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url('../assets/bg-dayak.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(980px, 120vw) auto;
    opacity: 0.12;
    filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.18));
    transform: scale(1.04);
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(2, 11, 7, 0.18) 48%, rgba(2, 11, 7, 0.82) 100%),
        linear-gradient(to bottom, rgba(2, 11, 7, 0.26), rgba(2, 11, 7, 0.72));
    z-index: 0;
}

.bg-dayak-watermark {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url('../assets/bg-dayak.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(980px, 120vw) auto;
    opacity: 0.12;
    filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.18));
    transform: scale(1.04);
    z-index: 0;
}

.bg-dayak-watermark::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(2, 11, 7, 0.18) 48%, rgba(2, 11, 7, 0.82) 100%),
        linear-gradient(to bottom, rgba(2, 11, 7, 0.26), rgba(2, 11, 7, 0.72));
}

.login-bg-grid,
.login-bg-orb {
    display: none;
}

.forest-glow {
    position: fixed;
    width: 290px;
    height: 290px;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(18px);
    animation: floatGlow 6s ease-in-out infinite;
    z-index: 0;
}

.glow-left {
    top: 8%;
    left: -90px;
    background: rgba(36, 201, 143, 0.18);
}

.glow-right {
    right: -95px;
    bottom: 8%;
    background: rgba(255, 216, 107, 0.13);
    animation-delay: 1.5s;
}

.forest-mist {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.84;
    filter: blur(2px);
    background:
        radial-gradient(ellipse at 50% 80%, rgba(255, 255, 255, 0.12), transparent 44%),
        linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.045) 45%, transparent 76%);
    z-index: 0;
}

.forest-floor {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

.forest-back {
    height: 34%;
    opacity: 0.55;
    background:
        linear-gradient(135deg, transparent 0 48%, rgba(5, 32, 21, 0.9) 49% 58%, transparent 59%) 0 100% / 120px 100% repeat-x,
        linear-gradient(225deg, transparent 0 48%, rgba(5, 32, 21, 0.9) 49% 58%, transparent 59%) 55px 100% / 140px 90% repeat-x;
}

.forest-front {
    bottom: -4px;
    height: 25%;
    opacity: 0.88;
    background:
        linear-gradient(135deg, transparent 0 46%, rgba(1, 18, 12, 0.98) 47% 60%, transparent 61%) 0 100% / 86px 100% repeat-x,
        linear-gradient(225deg, transparent 0 46%, rgba(1, 18, 12, 0.98) 47% 60%, transparent 61%) 42px 100% / 104px 92% repeat-x;
}

.lp-root {
    position: relative;
    z-index: 2;
}

.quest-board,
.quest-mini-panel,
.mission-card,
.prolog-modal,
.team-guild-board {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--panel-bg);
    border: var(--chunk-border);
    color: var(--cream);
    box-shadow: var(--chunk-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.quest-board::before,
.quest-mini-panel::before,
.mission-card::before,
.prolog-modal::before,
.team-guild-board::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 24px;
    pointer-events: none;
    border: 2px solid rgba(255, 216, 107, 0.34);
    z-index: -1;
}

.quest-board::after,
.quest-mini-panel::after,
.prolog-modal::after,
.team-guild-board::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(217, 49, 49, 0.28), transparent 15%, transparent 85%, rgba(217, 49, 49, 0.28)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 38%),
        url('../assets/bg-dayak.webp') center / min(420px, 88%) auto no-repeat;
    opacity: 0.68;
}

.quest-mini-panel,
.mission-card,
.feature-item,
.dim-card,
.lp-stat {
    border-radius: 26px;
    box-shadow: var(--mini-shadow);
}

.quest-pin {
    top: 18px;
    background:
        radial-gradient(circle at 34% 28%, #fff2ad 0 18%, transparent 19%),
        linear-gradient(180deg, var(--gold), #f0a72e);
    border: 4px solid #9a5b17;
    box-shadow: 0 6px 0 rgba(45, 28, 8, 0.72);
    z-index: 6;
}

.pin-left {
    left: 42px;
}

.pin-right {
    right: 42px;
}

.quest-label,
.lp-section-label,
.mission-num {
    padding: 6px 13px;
    background: rgba(217, 49, 49, 0.22);
    border: 1px solid rgba(255, 216, 107, 0.44);
    color: var(--gold);
}

.lp-badge,
.prolog-badge,
.lp-footer-logo,
.team-kicker,
.team-role-badge {
    background: linear-gradient(180deg, #ffcf5f 0%, #ff9f2e 100%);
    border: 2px solid rgba(255, 255, 255, 0.72);
    color: #1a1a1a;
    box-shadow: 0 7px 0 rgba(119, 71, 15, 0.84), 0 14px 24px rgba(0, 0, 0, 0.24);
}

.lp-badge i,
.prolog-badge i,
.lp-footer-logo i,
.team-kicker i,
.team-role-badge i {
    color: #8a100f;
}

.game-btn,
.lp-nav-cta,
.lp-nav-logout {
    border: 2px solid rgba(255, 255, 255, 0.78);
    font-weight: 1000;
    letter-spacing: 0.35px;
    box-shadow: 0 9px 0 rgba(112, 57, 11, 0.92), 0 18px 34px rgba(0, 0, 0, 0.28);
}

.game-btn,
.lp-nav-cta {
    color: #160d04;
    background: linear-gradient(180deg, #fff4b8 0%, #ffd86b 38%, #ff9f2e 100%);
}

.lp-nav-logout {
    color: #ffffff;
    background: linear-gradient(180deg, #ff806f, #d93131);
    border-color: rgba(255, 255, 255, 0.70);
    box-shadow: 0 8px 0 rgba(122, 27, 12, 0.95), 0 16px 26px rgba(0, 0, 0, 0.26);
}

.game-btn:hover,
.lp-nav-cta:hover,
.lp-nav-logout:hover {
    transform: translateY(-3px) scale(1.015);
    filter: brightness(1.08);
    box-shadow: 0 11px 0 rgba(112, 57, 11, 0.92), 0 24px 38px rgba(0, 0, 0, 0.32), 0 0 28px rgba(255, 216, 107, 0.22);
}

.lp-nav-logout:hover {
    box-shadow: 0 10px 0 rgba(122, 27, 12, 0.95), 0 24px 38px rgba(0, 0, 0, 0.32), 0 0 28px rgba(217, 49, 49, 0.25);
}

.lp-nav {
    min-height: 74px;
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.76), rgba(5, 28, 19, 0.88));
    border-bottom: 1px solid rgba(255, 216, 107, 0.30);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lp-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url('../assets/bg-dayak.webp');
    background-size: 520px auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.055;
}

.lp-logo,
.mobile-menu-toggle-btn,
.lp-nav-menu-container {
    position: relative;
    z-index: 3;
}

.lp-logo-icon,
.mobile-menu-toggle-btn,
.feature-icon,
.dim-icon,
.avatar-circle,
.prolog-rini-avatar,
.rini-face {
    background: linear-gradient(180deg, #fff4b8 0%, #ffd86b 38%, #ff9f2e 100%);
    border: 2px solid rgba(255, 255, 255, 0.78);
    color: #160d04;
    box-shadow: 0 7px 0 rgba(112, 57, 11, 0.84), 0 0 24px rgba(255, 216, 107, 0.16);
}

.lp-logo-text,
.lp-title,
.lp-section-title,
.prolog-title,
.profile-info h3,
.mission-name,
.feature-text-title,
.dim-title {
    font-family: var(--font-heading);
    color: var(--white-soft);
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.30), 0 0 24px rgba(124, 255, 199, 0.10);
}

.lp-title {
    color: var(--white-soft);
    font-size: clamp(30px, 6vw, 52px);
}

.logo-ar-accent,
.header h1 span,
.lp-title span {
    color: var(--gold);
}

.lp-nav-menu-container {
    background: linear-gradient(180deg, rgba(8, 43, 29, 0.96), rgba(3, 18, 12, 0.98));
    border-bottom: 1px solid rgba(255, 216, 107, 0.30);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lp-nav-links a {
    color: rgba(255, 244, 208, 0.86);
    border: 1px solid rgba(255, 216, 107, 0.22);
    background: rgba(255, 244, 208, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lp-nav-links a:hover {
    color: #160d04;
    background: linear-gradient(180deg, #fff4b8 0%, #ffd86b 48%, #ff9f2e 100%);
    border-color: rgba(255, 255, 255, 0.76);
    box-shadow: 0 0 22px rgba(255, 216, 107, 0.20);
}

.lp-hero {
    min-height: calc(100vh - 74px);
    padding: 64px 18px 36px;
}

.lp-hero::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 50%;
    width: min(720px, 92vw);
    height: min(720px, 92vw);
    transform: translateX(-50%);
    pointer-events: none;
    background: url('../assets/bg-dayak.webp') center / contain no-repeat;
    opacity: 0.075;
    filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.18));
}

.lp-hero-content {
    max-width: 720px;
}

.sub-title-ind,
.lp-section-desc,
.mission-desc,
.feature-text-desc,
.dim-sub,
.lp-footer-sub,
.prolog-subtitle,
.profile-info p {
    color: rgba(255, 244, 208, 0.78);
}

.player-hud-card {
    max-width: 540px;
    padding: 34px 26px 24px;
    border-radius: 34px;
}

.hud-profile {
    background: rgba(255, 244, 208, 0.08);
    border: 1px solid rgba(255, 216, 107, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hud-online,
.progress-text-info {
    color: var(--leaf, #7cffc7);
}

.stat-box,
.lp-stat,
.team-leader-card,
.team-card,
.prolog-fact-icon {
    background: linear-gradient(180deg, rgba(255, 244, 208, 0.92), rgba(246, 230, 184, 0.82));
    border: 2px solid rgba(255, 216, 107, 0.58);
    box-shadow: 0 7px 0 rgba(48, 31, 11, 0.68), 0 14px 24px rgba(0, 0, 0, 0.18);
    color: #173024;
}

.stat-title,
.lp-stat-label,
.team-nim,
.team-program,
.team-meta-row span {
    color: rgba(23, 48, 36, 0.78);
}

.stat-value,
.lp-stat-num,
.team-leader-content h3,
.team-card-body h3 {
    color: #173024;
}

.rank-text,
.highlight-ar-text {
    color: #8a100f;
}

.progress-section {
    max-width: 540px;
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.70), rgba(5, 28, 19, 0.82));
}

.progress-track {
    background: rgba(255, 244, 208, 0.82);
    border: 2px solid rgba(255, 216, 107, 0.58);
    box-shadow: inset 0 3px 0 rgba(11, 42, 27, 0.18), 0 5px 0 rgba(48, 31, 11, 0.68);
}

.progress-fill {
    background: linear-gradient(90deg, #d93131 0%, #ffd86b 44%, #24c98f 100%);
    box-shadow: 0 0 18px rgba(255, 216, 107, 0.45), 0 0 18px rgba(124, 255, 199, 0.28);
}

.lp-stats {
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.70), rgba(5, 28, 19, 0.82));
}

.lp-section {
    position: relative;
    z-index: 2;
}

.lp-section-label {
    margin-bottom: 6px;
}

.lp-missions,
.lp-feature-grid,
.lp-dimensions {
    gap: 20px;
}

.mission-card {
    border: 1px solid rgba(255, 216, 107, 0.26);
    background:
        linear-gradient(180deg, rgba(13, 74, 48, 0.72), rgba(5, 28, 19, 0.86)),
        radial-gradient(circle at top right, rgba(255, 216, 107, 0.10), transparent 36%);
    cursor: pointer;
}

.mission-card::before {
    content: "";
    position: absolute;
    inset: auto -32px -34px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 216, 107, 0.08);
    border: 1px solid rgba(255, 216, 107, 0.10);
    z-index: 0;
}

.mission-card > * {
    position: relative;
    z-index: 2;
}

.mission-card:hover,
.feature-item:hover,
.dim-card:hover,
.lp-stat:hover,
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38), 0 0 28px rgba(255, 216, 107, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.mission-card.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 216, 107, 0.15), 0 0 32px rgba(255, 216, 107, 0.26), 0 18px 38px rgba(0, 0, 0, 0.36);
}

.mission-card.completed {
    border-color: var(--gold);
    background:
        linear-gradient(180deg, rgba(15, 90, 57, 0.78), rgba(6, 38, 25, 0.90)),
        radial-gradient(circle at top right, rgba(255, 216, 107, 0.18), transparent 36%);
    box-shadow: 0 8px 0 rgba(112, 57, 11, 0.78), 0 18px 32px rgba(0, 0, 0, 0.34);
}

.mission-card.locked {
    background: linear-gradient(180deg, rgba(37, 58, 49, 0.72), rgba(18, 30, 25, 0.84));
    border-color: rgba(255, 244, 208, 0.18);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.30);
    filter: saturate(0.56);
    opacity: 0.76;
}

.mission-status-icon {
    background: linear-gradient(180deg, #fff4b8 0%, #ffd86b 38%, #ff9f2e 100%);
    border: 2px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 6px 0 rgba(112, 57, 11, 0.84);
    color: #160d04;
}

.mission-card.active .mission-tag,
.tag-active,
.tag-completed,
.mission-card.completed .mission-status-icon,
.mission-card.completed .mission-tag,
.boss-level.active .mission-status-icon,
.boss-level.active .mission-tag {
    background: linear-gradient(180deg, #fff4b8 0%, #ffd86b 38%, #ff9f2e 100%);
    border-color: rgba(255, 255, 255, 0.78);
    color: #160d04;
}

.mission-tag {
    background: rgba(255, 244, 208, 0.08);
    border: 1px solid rgba(255, 216, 107, 0.30);
    color: var(--leaf);
}

.feature-item,
.dim-card {
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.70), rgba(5, 28, 19, 0.84));
    border: 1px solid rgba(255, 216, 107, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.feature-icon,
.dim-icon {
    color: #160d04;
}

.team-guild-board {
    border-radius: 34px;
    padding: 38px 30px 30px;
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.76), rgba(5, 28, 19, 0.88));
}

.team-guild-board::after {
    background:
        linear-gradient(90deg, rgba(217, 49, 49, 0.24), transparent 15%, transparent 85%, rgba(217, 49, 49, 0.24)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 38%),
        url('../assets/bg-dayak.webp') center / min(720px, 92%) auto no-repeat;
    opacity: 0.44;
}

.team-leader-card,
.team-card {
    border-radius: 28px;
    border-color: rgba(255, 216, 107, 0.58);
}

.team-card-top {
    background:
        linear-gradient(90deg, rgba(6, 27, 18, 0.82), rgba(13, 74, 48, 0.78)),
        url('../assets/bg-dayak.webp') center/cover;
    border-bottom: 2px solid rgba(255, 216, 107, 0.42);
}

.team-leader-content p,
.team-task {
    color: rgba(23, 48, 36, 0.74);
}

.team-photo-frame,
.team-leader-photo-wrap {
    background: linear-gradient(180deg, #fff4b8 0%, #ffd86b 38%, #ff9f2e 100%);
    border: 3px solid #173024;
    box-shadow: 0 7px 0 rgba(48, 31, 11, 0.68);
}

.prolog-overlay {
    background: rgba(2, 10, 7, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.prolog-header {
    border-bottom: 2px dashed rgba(255, 216, 107, 0.28);
}

.prolog-rini-bar,
.prolog-fact-card {
    background: rgba(255, 244, 208, 0.08);
    border: 1px solid rgba(255, 216, 107, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.prolog-fact-danger {
    border-color: rgba(255, 216, 107, 0.48);
    background: rgba(255, 216, 107, 0.09);
}

.prolog-fact-title,
.prolog-rini-speech strong {
    color: var(--gold);
}

.prolog-fact-text,
.prolog-fact-list,
.prolog-rini-speech {
    color: rgba(255, 244, 208, 0.84);
}

.rini-bubble {
    background: linear-gradient(180deg, rgba(255, 244, 208, 0.94), rgba(246, 230, 184, 0.86));
    border: 2px solid rgba(255, 216, 107, 0.58);
    color: #173024;
    box-shadow: 0 8px 0 rgba(48, 31, 11, 0.70), 0 18px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.rini-bubble-tail {
    background: rgba(255, 244, 208, 0.94);
    border-right: 2px solid rgba(255, 216, 107, 0.58);
    border-bottom: 2px solid rgba(255, 216, 107, 0.58);
}

.rini-name {
    background: linear-gradient(180deg, #ffcf5f 0%, #ff9f2e 100%);
    border: 2px solid rgba(255, 255, 255, 0.72);
    color: #1a1a1a;
    box-shadow: 0 5px 0 rgba(119, 71, 15, 0.84);
}

.lp-footer {
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.70), rgba(3, 18, 12, 0.94));
    border-top: 1px solid rgba(255, 216, 107, 0.30);
    box-shadow: 0 -18px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lp-footer-links a {
    color: var(--leaf);
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.06);
    }
}

@media (min-width: 768px) {
    .lp-nav-menu-container {
        background: transparent;
        box-shadow: none;
        border: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media (max-width: 560px) {
    body::before,
    .bg-dayak-watermark {
        background-size: 760px auto;
        opacity: 0.08;
    }

    .lp-nav {
        border-bottom: 1px solid rgba(255, 216, 107, 0.30);
    }

    .player-hud-card,
    .team-guild-board,
    .prolog-modal {
        border-radius: 28px;
    }

    .quest-board::before,
    .quest-mini-panel::before,
    .prolog-modal::before,
    .team-guild-board::before {
        inset: 8px;
        border-radius: 22px;
    }

    .quest-pin {
        top: 15px;
        width: 27px;
        height: 27px;
        border-width: 3px;
    }

    .pin-left {
        left: 30px;
    }

    .pin-right {
        right: 30px;
    }

    .team-guild-board {
        padding: 32px 14px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}


body::before,
.bg-dayak-watermark {
    opacity: 0.06;
}

.quest-board::after,
.quest-mini-panel::after,
.prolog-modal::after,
.team-guild-board::after {
    opacity: 0.10;
    background:
        linear-gradient(90deg, rgba(217, 49, 49, 0.16), transparent 15%, transparent 85%, rgba(217, 49, 49, 0.16)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.10), transparent 38%),
        url('../assets/bg-dayak.webp') center / min(320px, 72%) auto no-repeat;
}

#fitur-section .quest-mini-panel::after,
#literasi-section .quest-mini-panel::after {
    opacity: 0.025;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 40%),
        url('../assets/bg-dayak.webp') center / min(230px, 62%) auto no-repeat;
}

.lp-nav {
    min-height: 74px;
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: nowrap;
}

.lp-logo {
    flex: 0 0 auto;
}

.lp-nav-menu-container {
    z-index: 55;
}

@media (min-width: 768px) {
    .lp-nav-menu-container {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        display: flex !important;
        flex: 1 1 auto;
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .lp-nav-links {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        flex: 0 1 auto;
    }

    .lp-nav-links a {
        min-height: 44px;
        padding: 0 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .lp-nav-actions {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .lp-nav-cta,
    .lp-nav-logout {
        min-height: 46px;
        padding: 0 20px;
        white-space: nowrap;
    }
}

.quest-board > .quest-pin,
.prolog-modal > .quest-pin,
.team-guild-board > .quest-pin,
.player-hud-card > .quest-pin {
    top: -16px !important;
}

.player-hud-card {
    padding-top: 42px;
}

.player-hud-card .hud-topline {
    margin-top: 0;
}

.mission-card {
    min-height: 238px;
    padding: 30px 20px 22px;
}

.mission-card > * {
    position: relative;
    z-index: 2;
}

.mission-status-icon {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    width: 42px;
    height: 42px;
    z-index: 5 !important;
}

.mission-card .mission-num {
    max-width: calc(100% - 62px);
    margin-top: 0;
    margin-bottom: 16px;
    white-space: nowrap;
}

.mission-name {
    width: calc(100% - 48px);
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.12;
}

.mission-desc {
    max-width: 92%;
    line-height: 1.58;
}

.mission-tag {
    margin-top: 18px;
    position: relative;
    z-index: 3;
}

.lp-feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    align-items: stretch;
}

.feature-item {
    min-height: 132px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-item .feature-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    position: relative;
    z-index: 3;
}

.feature-item > div:not(.feature-icon) {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.feature-text-title {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 7px;
}

.feature-text-desc {
    font-size: 13px;
    line-height: 1.55;
}

.lp-dimensions {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
}

.dim-card {
    min-height: 190px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dim-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 22px;
    position: relative;
    z-index: 3;
}

.dim-title {
    position: relative;
    z-index: 3;
    margin-bottom: 8px;
    line-height: 1.22;
}

.dim-sub {
    position: relative;
    z-index: 3;
    max-width: 92%;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .lp-nav {
        padding: 10px 18px;
    }

    .lp-feature-grid {
        grid-template-columns: 1fr;
    }

    .lp-dimensions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .lp-nav {
        min-height: 68px;
        padding: 10px 14px;
    }

    .lp-nav-menu-container {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
    }

    .mission-card {
        min-height: 220px;
        padding: 28px 18px 20px;
    }

    .mission-status-icon {
        top: 16px !important;
        right: 16px !important;
        width: 38px;
        height: 38px;
    }

    .mission-card .mission-num {
        max-width: calc(100% - 56px);
    }

    .feature-item {
        min-height: auto;
        padding: 20px 18px;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .feature-item .feature-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }

    .lp-dimensions {
        grid-template-columns: 1fr;
    }

    .dim-card {
        min-height: 160px;
    }
}
.team-card {
    padding-top: 108px;
    min-height: 370px;
}

.team-card-top {
    height: 96px;
}

.team-role-badge {
    bottom: -20px;
    z-index: 8;
}

.team-photo-frame {
    margin: -54px auto 26px;
}

.team-card-body {
    padding-top: 12px;
}

.team-card-body h3 {
    margin: 18px auto 18px;
    min-height: 58px;
    line-height: 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-nim {
    margin-top: 4px;
}
.team-card,
.team-card.guild-leader,
.team-card.tech-builder {
    background:
        linear-gradient(180deg, #fff4d0 0%, #e7ddb5 100%) !important;
    border-color: var(--dayak-gold) !important;
    box-shadow:
        0 8px 0 rgba(112, 57, 11, 0.82),
        0 18px 32px rgba(0, 0, 0, 0.30) !important;
}

.team-card.tech-builder {
    background:
        linear-gradient(180deg, #fff4d0 0%, #e7ddb5 100%) !important;
}

.team-card.guild-leader {
    background:
        linear-gradient(180deg, #fff4d0 0%, #e7ddb5 100%) !important;
}

.team-card-top {
    background:
        linear-gradient(90deg, rgba(13, 74, 48, 0.92), rgba(13, 74, 48, 0.92)) !important;
    border-bottom: 2px solid rgba(255, 216, 107, 0.42) !important;
}

.team-card-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../assets/bg-dayak.webp') center / cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.team-role-badge {
    background: linear-gradient(180deg, #ffd86b 0%, #ff9f2e 100%) !important;
    border-color: rgba(255, 255, 255, 0.72) !important;
    color: #1a1a1a !important;
}
#fitur-section .quest-mini-panel::after,
#literasi-section .quest-mini-panel::after {
    opacity: 0.10 !important;
}

.feature-item.quest-mini-panel::after,
.dim-card.quest-mini-panel::after {
    opacity: 0.01 !important;
}

.quest-board::after,
.quest-mini-panel::after,
.prolog-modal::after,
.team-guild-board::after {
    opacity: 0.12 !important;
}

.team-card-top::before {
    opacity: 0.03 !important;
}

body::before,
.bg-dayak-watermark {
    opacity: 0.04 !important;
}

.lp-nav::before {
    opacity: 0.025 !important;
}

.lp-hero::before {
    opacity: 0.035 !important;
}
.team-leader-card {
    display: grid !important;
    grid-template-columns: 170px 1fr !important;
    align-items: center !important;
    gap: 28px !important;
    padding: 28px 34px !important;
    min-height: 230px !important;
    border-radius: 28px !important;
    background:
        linear-gradient(180deg, #fff4d0 0%, #e7ddb5 100%) !important;
    border: 2px solid rgba(255, 216, 107, 0.70) !important;
    box-shadow:
        0 8px 0 rgba(112, 57, 11, 0.82),
        0 18px 32px rgba(0, 0, 0, 0.30) !important;
}

.team-leader-photo-wrap {
    width: 150px !important;
    height: 150px !important;
    border-radius: 34px !important;
    background: #ffffff !important;
    border: 4px solid #173024 !important;
    box-shadow:
        0 8px 0 rgba(48, 31, 11, 0.62),
        0 16px 26px rgba(0, 0, 0, 0.22) !important;
    overflow: hidden !important;
}

.team-leader-photo-wrap .team-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

.team-leader-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left !important;
}

.team-leader-content .team-kicker {
    margin-bottom: 10px !important;
    padding: 9px 16px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #ffd86b 0%, #ff9f2e 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.72) !important;
    color: #1a1a1a !important;
    box-shadow:
        0 6px 0 rgba(112, 57, 11, 0.82),
        0 12px 22px rgba(0, 0, 0, 0.22) !important;
    font-size: 12px !important;
}

.team-leader-content h3 {
    margin: 0 0 12px !important;
    font-size: clamp(30px, 4vw, 44px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.4px !important;
    color: #173024 !important;
}

.team-leader-content p {
    max-width: 780px !important;
    margin: 0 0 18px !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 700 !important;
    color: rgba(23, 48, 36, 0.78) !important;
}

.team-meta-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 0 !important;
}

.team-meta-row span {
    padding: 9px 14px !important;
    border-radius: 999px !important;
    background: rgba(36, 201, 143, 0.14) !important;
    border: 2px solid rgba(23, 48, 36, 0.14) !important;
    color: rgba(23, 48, 36, 0.82) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

@media (max-width: 700px) {
    .team-leader-card {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
        padding: 26px 18px !important;
    }

    .team-leader-content {
        align-items: center !important;
        text-align: center !important;
    }

    .team-leader-content h3 {
        font-size: 28px !important;
    }

    .team-meta-row {
        justify-content: center !important;
    }
}

.eco-music-toggle {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    max-width: fit-content;
    min-width: 112px;
    min-height: 38px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 999px;
    border: 2px solid rgba(255, 216, 107, 0.64);
    background: linear-gradient(180deg, rgba(6, 28, 18, 0.94), rgba(3, 18, 12, 0.94));
    color: rgba(255, 244, 208, 0.92);
    font-family: var(--font-body, "Poppins", system-ui, sans-serif);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.35px;
    cursor: pointer;
    box-shadow:
        0 7px 0 rgba(112, 57, 11, 0.62),
        0 16px 28px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.eco-music-toggle i {
    color: var(--dayak-gold, #ffd86b);
    font-size: 15px;
}

.eco-music-toggle:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    border-color: rgba(255, 216, 107, 0.9);
    box-shadow:
        0 9px 0 rgba(112, 57, 11, 0.66),
        0 22px 34px rgba(0, 0, 0, 0.38),
        0 0 22px rgba(255, 216, 107, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.eco-music-toggle:active {
    transform: translateY(4px) scale(0.98);
    box-shadow:
        0 3px 0 rgba(112, 57, 11, 0.70),
        0 10px 18px rgba(0, 0, 0, 0.28);
}

.eco-music-toggle.is-on {
    background: linear-gradient(180deg, #fff4b8 0%, #ffd86b 42%, #ff9f2e 100%);
    color: #160d04;
    border-color: rgba(255, 255, 255, 0.78);
}

.eco-music-toggle.is-on i {
    color: #8a100f;
}

.eco-music-toggle.needs-click {
    animation: musicPulse 1.8s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% { box-shadow: 0 7px 0 rgba(112, 57, 11, 0.62), 0 16px 28px rgba(0, 0, 0, 0.34); }
    50% { box-shadow: 0 7px 0 rgba(112, 57, 11, 0.62), 0 16px 32px rgba(0, 0, 0, 0.34), 0 0 28px rgba(255, 216, 107, 0.32); }
}

@media (max-width: 700px) {
    .eco-music-toggle {
        right: 14px;
        bottom: 14px;
        width: 44px;
        max-width: 44px;
        min-width: 44px;
        min-height: 44px;
        margin: 0;
        padding: 10px;
    }

    .eco-music-toggle span {
        display: none;
    }

    .eco-music-toggle i {
        font-size: 16px;
    }
}

#ecoMusicToggle,
.eco-music-toggle {
    left: 18px !important;
    right: auto !important;
    bottom: 18px !important;
}

@media (max-width: 700px) {
    #ecoMusicToggle,
    .eco-music-toggle {
        left: 14px !important;
        right: auto !important;
        bottom: 14px !important;
    }
}

#ecoMusicToggle.eco-music-toggle {
    width: auto !important;
    max-width: fit-content !important;
    min-width: 112px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
    line-height: 1 !important;
}

#ecoMusicToggle.eco-music-toggle i {
    font-size: 13px !important;
}

@media (max-width: 700px) {
    #ecoMusicToggle.eco-music-toggle {
        width: 44px !important;
        max-width: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 10px !important;
        border-radius: 999px !important;
    }
}

.literacy-dim-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-top:20px}
.literacy-dim-card{min-height:150px;padding:20px 16px;border-radius:24px;background:linear-gradient(180deg,rgba(13,74,48,.72),rgba(5,28,19,.88));border:1px solid rgba(255,216,107,.25);box-shadow:0 8px 0 rgba(11,42,27,.72),0 16px 26px rgba(0,0,0,.24);text-align:center}
.literacy-dim-icon{width:54px;height:54px;margin:0 auto 12px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(180deg,#fff4b8 0%,#ffd86b 38%,#ff9f2e 100%);color:#160d04;box-shadow:0 6px 0 rgba(112,57,11,.82);font-size:20px}
.literacy-dim-card h3{margin:0 0 8px;font-family:var(--font-heading);font-size:18px;color:var(--cream);line-height:1.15}
.literacy-dim-card p{margin:0;color:rgba(255,247,223,.78);font-size:12px;font-weight:700;line-height:1.55}
.lp-stat-label{min-height:34px;display:grid;place-items:center;text-align:center}
.mission-card{display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;min-height:238px!important}
.mission-card .mission-badge-img{width:64px!important;height:64px!important;margin:0 0 8px!important;object-fit:contain}
.mission-card .mission-num{margin-top:0!important;margin-bottom:10px!important;max-width:calc(100% - 62px);align-self:flex-start}
.mission-card .mission-name{margin-top:0!important;margin-bottom:10px!important}
.mission-card .mission-tag{margin-top:auto!important}
.boss-level{min-height:238px!important;padding:30px 20px 22px!important}
.boss-level::after{display:none!important}
@media(max-width:900px){.literacy-dim-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:520px){.literacy-dim-grid{grid-template-columns:1fr}.literacy-dim-card{min-height:auto}.lp-stat-label{min-height:auto}}

.learning-flow-panel .lp-stat{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;min-height:124px!important}
.learning-flow-panel .flow-icon{width:54px;height:54px;margin:0 auto;display:grid;place-items:center;border-radius:18px;font-size:22px;background:linear-gradient(180deg,#fff4b8 0%,#ffd86b 42%,#ff9f2e 100%);color:#160d04!important;box-shadow:0 7px 0 rgba(112,57,11,.86)}
.learning-flow-panel .lp-stat-label{display:flex!important;flex-direction:column;align-items:center;justify-content:center;gap:3px;min-height:auto!important;color:var(--green-dark-2)!important;line-height:1.28!important}
.learning-flow-panel .lp-stat-label b{font-family:var(--font-heading);font-size:15px;color:#163021;text-transform:uppercase}
.learning-flow-panel .lp-stat-label span{font-size:11px;font-weight:900;color:#28513d;max-width:155px}
.material-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:16px!important}
.material-card{min-height:150px!important;padding:20px 16px!important;border-radius:24px!important;background:linear-gradient(180deg,rgba(13,74,48,.72),rgba(5,28,19,.88))!important;border:1px solid rgba(255,216,107,.25)!important;box-shadow:0 8px 0 rgba(11,42,27,.72),0 16px 26px rgba(0,0,0,.24)!important;text-align:center!important}
.material-card::before{content:"";width:54px;height:54px;margin:0 auto 12px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(180deg,#fff4b8 0%,#ffd86b 38%,#ff9f2e 100%);box-shadow:0 6px 0 rgba(112,57,11,.82)}
.material-card:nth-child(1)::before{content:"🌿"}.material-card:nth-child(2)::before{content:"💧"}.material-card:nth-child(3)::before{content:"⚠️"}
.material-card h3{font-family:var(--font-heading)!important;font-size:18px!important;color:var(--cream)!important;margin:0 0 8px!important;line-height:1.15!important}
.material-card p{font-size:12px!important;color:rgba(255,247,223,.78)!important;font-weight:700!important;line-height:1.55!important}
.mission-card.locked.boss-level .mission-num{background:rgba(154,255,217,.14)!important;border-color:rgba(154,255,217,.55)!important;color:var(--green-light)!important;box-shadow:none!important}
.mission-card.locked.boss-level{border-color:rgba(255,216,107,.26)!important;background:linear-gradient(180deg,rgba(13,74,48,.72),rgba(5,28,19,.90))!important}
.mission-card.locked.boss-level .mission-name,.mission-card.locked.boss-level .mission-desc{color:rgba(255,247,223,.78)!important}
.lp-footer-sub b{color:var(--cream)}
@media(max-width:900px){.material-grid{grid-template-columns:1fr!important}.learning-flow-panel .lp-stat{min-height:112px!important}}

.eco-feature-overview .lp-stat-label b{font-size:14px!important;letter-spacing:.2px!important}
.eco-feature-overview .lp-stat-label span{font-size:10.8px!important;line-height:1.35!important;max-width:175px!important}

.mission-card.locked.boss-level .mission-num,
.mission-card.boss-level .mission-num{
    background:rgba(154,255,217,.14)!important;
    border:2px solid rgba(154,255,217,.55)!important;
    color:var(--green-light)!important;
    box-shadow:none!important;
}
.lp-footer-logo{font-family:var(--font-heading)!important;color:var(--gold)!important;letter-spacing:.8px!important;text-align:center!important}
.lp-footer-sub{text-align:center!important;line-height:1.75!important}

.lp-footer-logo {
    color: #fff4d0 !important;
    background: transparent !important;
    border: 2px solid rgba(255, 216, 107, 0.72) !important;
    box-shadow: 0 0 20px rgba(255, 216, 107, 0.18), inset 0 0 18px rgba(255, 216, 107, 0.10) !important;
    text-shadow: 0 3px 0 rgba(0,0,0,.55), 0 0 18px rgba(255, 216, 107, .36) !important;
    letter-spacing: .8px !important;
}

.lp-footer-sub,
.lp-footer-sub b {
    color: #ffffff !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 0 rgba(0,0,0,.34) !important;
}


#posttestCard .mission-num,
#posttestCard.boss-level .mission-num,
#posttestCard.active .mission-num,
#posttestCard.completed .mission-num {
    padding: 6px 13px !important;
    background: rgba(154, 255, 217, 0.14) !important;
    border: 2px solid rgba(154, 255, 217, 0.55) !important;
    color: var(--green-light) !important;
    box-shadow: none !important;
}

#posttestCard.boss-level::after {
    opacity: .7 !important;
}

#posttestCard.completed,
.mission-card.completed {
    border-color: var(--gold) !important;
}

.lp-nav-cta {
    white-space: nowrap !important;
}

#posttestCard .mission-num,#posttestCard.boss-level .mission-num,#posttestCard.locked .mission-num,#posttestCard.active .mission-num,#posttestCard.completed .mission-num{padding:6px 13px!important;background:rgba(217,49,49,.22)!important;border:1px solid rgba(255,216,107,.44)!important;color:var(--gold)!important;box-shadow:none!important}
.lp-footer-logo{color:#fff4d0!important;background:transparent!important;border:2px solid rgba(255,216,107,.72)!important;box-shadow:0 0 20px rgba(255,216,107,.18),inset 0 0 18px rgba(255,216,107,.10)!important;text-shadow:0 3px 0 rgba(0,0,0,.55),0 0 18px rgba(255,216,107,.36)!important;letter-spacing:.8px!important}
.lp-footer-sub,.lp-footer-sub b{color:#fff!important;font-weight:800!important;text-shadow:0 2px 0 rgba(0,0,0,.34)!important}
.lp-nav-cta{white-space:nowrap!important}

/* === footer konsistensi revisi kecil === */
.lp-footer{
    padding-top: 18px !important;
    padding-bottom: 28px !important;
}

.lp-footer-logo{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:46px !important;
    padding:10px 28px !important;
    border-radius:999px !important;
    background:linear-gradient(180deg, #ffe59a 0%, #ffd86b 42%, #f3b33c 100%) !important;
    border:3px solid #fff0b6 !important;
    color:#2b1d04 !important;
    box-shadow:0 6px 0 rgba(124,79,18,.9), 0 14px 24px rgba(0,0,0,.22) !important;
    text-shadow:none !important;
    font-size:clamp(17px, 2.2vw, 22px) !important;
    font-weight:900 !important;
}

.lp-footer-sub,
.lp-footer-sub b{
    color:rgba(235, 239, 236, 0.68) !important;
    text-shadow:none !important;
    font-weight:600 !important;
    font-size:12px !important;
    line-height:1.7 !important;
    letter-spacing:.12px !important;
}

@media (max-width: 640px){
    .lp-footer-logo{
        min-height:42px !important;
        padding:9px 22px !important;
        font-size:16px !important;
    }
    .lp-footer-sub,
    .lp-footer-sub b{
        font-size:11px !important;
        line-height:1.65 !important;
    }
}

/* Four-meeting flow and participant-code controls */
.hud-code-btn {
    width: fit-content;
    max-width: 100%;
    margin-top: 8px;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 216, 107, 0.36);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(255, 216, 107, 0.08);
    font: 750 11px/1.2 var(--font-body);
    cursor: pointer;
}

.hud-code-btn strong {
    letter-spacing: 1.5px;
}

.hud-code-btn.copied {
    color: var(--green-dark-1);
    background: var(--green-light);
}

.hud-online.testing {
    color: #211504;
    background: linear-gradient(180deg, #fff4b8, var(--gold));
    border-color: rgba(255, 255, 255, 0.7);
}

.meeting-section {
    scroll-margin-top: 92px;
}

.meeting-overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 24px 0 18px;
    padding: 18px 14px;
    border: 1px solid rgba(154, 255, 217, 0.22);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(13, 74, 48, 0.72), rgba(5, 30, 20, 0.86));
}

.meeting-step {
    position: relative;
    min-width: 0;
    padding: 4px 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.meeting-step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 25px;
    left: calc(50% + 24px);
    width: calc(100% - 40px);
    height: 3px;
    border-radius: 999px;
    background: rgba(154, 255, 217, 0.18);
}

.meeting-step.completed:not(:last-child)::after {
    background: rgba(154, 255, 217, 0.72);
}

.meeting-step-dot {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #211504;
    background: linear-gradient(180deg, #fff4b8, var(--gold));
    box-shadow: 0 5px 0 var(--gold-dark);
    font-weight: 1000;
}

.meeting-step.completed .meeting-step-dot {
    color: #123624;
    background: linear-gradient(180deg, #d8ffec, var(--green-light));
    box-shadow: 0 5px 0 #317957;
}

.meeting-step.locked .meeting-step-dot {
    color: rgba(255, 247, 223, 0.58);
    background: rgba(255, 247, 223, 0.1);
    border: 2px solid rgba(255, 247, 223, 0.18);
    box-shadow: none;
}

.meeting-step-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meeting-step-copy strong {
    color: var(--cream);
    font-size: 12px;
    line-height: 1.25;
}

.meeting-step-copy span {
    color: rgba(255, 247, 223, 0.66);
    font-size: 10px;
    font-weight: 800;
}

.meeting-step.current .meeting-step-copy span {
    color: var(--gold);
}

.meeting-step.completed .meeting-step-copy span {
    color: var(--green-light);
}

.meeting-unlock-panel {
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    gap: 18px;
    align-items: center;
}

.meeting-unlock-copy h3 {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 17px;
}

.meeting-unlock-copy p {
    margin: 0;
    color: rgba(255, 247, 223, 0.8);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
}

.meeting-unlock-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
}

.meeting-code-input {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    border: 2px solid rgba(154, 255, 217, 0.4);
    border-radius: 16px;
    outline: none;
    color: #172218;
    background: rgba(255, 255, 255, 0.94);
    text-align: center;
    letter-spacing: 5px;
    font: 900 17px/1 var(--font-body);
}

.meeting-code-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 216, 107, 0.14);
}

.meeting-unlock-btn {
    min-height: 48px;
    padding: 0 17px;
    border: 2px solid #fff3bb;
    border-radius: 16px;
    color: #241704;
    background: linear-gradient(180deg, #fff4b8, var(--gold));
    box-shadow: 0 5px 0 var(--gold-dark);
    font: 900 12px/1 var(--font-body);
    cursor: pointer;
}

.meeting-message {
    grid-column: 1 / -1;
    min-height: 18px;
    margin: 2px 0 0;
    color: rgba(255, 247, 223, 0.82);
    font-size: 11px;
    font-weight: 700;
}

.meeting-message.error { color: #ffb6b6; }
.meeting-message.success { color: var(--green-light); }

@media (max-width: 600px) {
    .meeting-overview { gap: 3px; padding: 15px 7px; }
    .meeting-step { gap: 8px; padding-inline: 1px; }
    .meeting-step-dot { width: 38px; height: 38px; font-size: 12px; }
    .meeting-step:not(:last-child)::after { top: 22px; left: calc(50% + 20px); width: calc(100% - 32px); }
    .meeting-step-copy strong { font-size: 9.5px; }
    .meeting-step-copy span { font-size: 8.5px; }
    .meeting-unlock-panel { grid-template-columns: 1fr; padding: 16px; }
    .meeting-unlock-form { grid-template-columns: 1fr; }
    .meeting-unlock-btn { width: 100%; }
    .hud-code-btn { font-size: 10px; }
}

.meeting-refresh-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 11px 13px;
    border: 1px solid rgba(124, 255, 199, 0.20);
    border-radius: 16px;
    background: rgba(3, 18, 12, 0.28);
}

.meeting-refresh-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 244, 208, 0.74);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.4;
}

.meeting-refresh-row span i { color: #7cffc7; }

.meeting-refresh-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 216, 107, 0.40);
    border-radius: 13px;
    background: linear-gradient(180deg, #fff4b8, #ffd86b 48%, #ffad37);
    color: #241503;
    font: 900 10px/1 Poppins, system-ui, sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 0 rgba(112, 57, 11, 0.68);
}

.meeting-refresh-row button:disabled {
    opacity: 0.62;
    cursor: wait;
    box-shadow: none;
}

@media (max-width: 560px) {
    .meeting-refresh-row { align-items: stretch; flex-direction: column; }
    .meeting-refresh-row button { width: 100%; }
}
