/* ============================================================
   Tim Pengolah · LOST GA REWEL
   style.css — Semua gaya visual aplikasi
   ============================================================ */

:root {
  --green-deep:   #0d1f0d;
  --green-dark:   #1B5E20;
  --green-mid:    #2E7D32;
  --green-bright: #4CAF50;
  --green-light:  #C8E6C9;
  --red:          #C62828;
  --red-bright:   #EF5350;
  --gold:         #F9A825;
  --gold-light:   #FFD54F;
  --white:        #FFFFFF;
  --white-dim:    rgba(255,255,255,0.7);
  --white-faint:  rgba(255,255,255,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--green-deep);
  color: #fff;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 20px 80px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27,94,32,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(198,40,40,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 60%, rgba(249,168,37,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #000 0%, #0d1f0d 40%, #081408 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76,175,80,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,175,80,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content { position: relative; z-index: 2; max-width: 520px; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 6px rgba(249,168,37,0.15),
    0 0 60px rgba(249,168,37,0.25),
    0 0 120px rgba(27,94,32,0.4);
  animation: logoPulse 4s 1s ease-in-out infinite;
  margin-bottom: 30px;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(249,168,37,0.15), 0 0 60px rgba(249,168,37,0.25), 0 0 120px rgba(27,94,32,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(249,168,37,0.2), 0 0 80px rgba(249,168,37,0.4), 0 0 150px rgba(27,94,32,0.5); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 15vw, 90px);
  letter-spacing: 6px;
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 0 60px rgba(76,175,80,0.4);
}

.hero-title span { color: var(--gold); }

.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 5vw, 26px);
  letter-spacing: 8px;
  color: var(--red-bright);
  margin-top: 6px;
}

.hero-tagline {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.6;
}

.hero-yel-btn {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), #8B0000);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(198,40,40,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-yel-btn:active { transform: scale(0.96); }
.hero-yel-btn:hover  { box-shadow: 0 12px 40px rgba(198,40,40,0.6); transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.2);
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  animation: bounce 2s infinite;
}
.scroll-hint::before {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(transparent, rgba(249,168,37,0.4));
}

/* ══════════════════════════════
   YEL MODAL
══════════════════════════════ */
.yel-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}
.yel-modal.on { display: flex; animation: fadeIn 0.2s ease; }

.yel-round {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 6px;
}
.yel-fire { font-size: 48px; margin-bottom: 10px; animation: fireShake 0.5s infinite alternate; }
.yel-call {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 8px;
}
.yel-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 10vw, 52px);
  letter-spacing: 6px;
  color: var(--green-bright);
  margin-bottom: 14px;
}
.yel-a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 13vw, 68px);
  letter-spacing: 4px;
  color: var(--red-bright);
  animation: yelPulse 0.7s infinite alternate;
  line-height: 1;
}
.yel-repeat {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  letter-spacing: 1px;
}
.yel-close {
  margin-top: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 12px 36px;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 1px;
}

/* ══════════════════════════════
   SECTION BASE
══════════════════════════════ */
.section {
  padding: 80px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 9vw, 56px);
  letter-spacing: 3px;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}
.sec-title span { color: var(--gold); }

.sec-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-bright), transparent);
  margin-bottom: 32px;
  border-radius: 2px;
}

/* ══════════════════════════════
   MISI SECTION
══════════════════════════════ */
.misi-section { border-top: 1px solid rgba(255,255,255,0.05); }

.misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}
@media (max-width: 480px) { .misi-grid { grid-template-columns: 1fr; } }

.misi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.misi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.misi-card.green::before { background: linear-gradient(90deg, var(--green-bright), transparent); }
.misi-card.red::before   { background: linear-gradient(90deg, var(--red-bright), transparent); }
.misi-card.gold::before  { background: linear-gradient(90deg, var(--gold), transparent); }
.misi-card.teal::before  { background: linear-gradient(90deg, #00BFA5, transparent); }
.misi-card:hover { border-color: rgba(249,168,37,0.3); transform: translateY(-3px); }

.misi-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.misi-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}
.misi-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-weight: 600;
}

.misi-quote {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(27,94,32,0.3), rgba(198,40,40,0.15));
  border: 1px solid rgba(249,168,37,0.2);
  border-radius: 16px;
  padding: 24px 22px;
  position: relative;
}
.misi-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.misi-quote p {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  position: relative;
}
.misi-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
  font-style: normal;
}

/* ══════════════════════════════
   LOGO FILOSOFI
══════════════════════════════ */
.logo-section {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4), transparent);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-img-wrap { flex-shrink: 0; position: relative; }
.logo-img-wrap img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 40px rgba(249,168,37,0.2);
  display: block;
}

.logo-items { flex: 1; min-width: 240px; }

.logo-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo-item:last-child { border-bottom: none; }

.logo-item-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item-text h4 {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.logo-item-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  line-height: 1.5;
}

/* ══════════════════════════════
   ANGGOTA TIM
══════════════════════════════ */
.team-section { border-top: 1px solid rgba(255,255,255,0.05); }

.team-leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 400px) { .team-leaders { grid-template-columns: 1fr; } }

.leader-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.leader-card.chef {
  background: linear-gradient(135deg, rgba(249,168,37,0.12), rgba(198,40,40,0.08));
  border-color: rgba(249,168,37,0.25);
}
.leader-card.koord {
  background: linear-gradient(135deg, rgba(27,94,32,0.25), rgba(46,125,50,0.1));
  border-color: rgba(76,175,80,0.25);
}

/* Avatar inisial (fallback) */
.leader-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}
.leader-card.chef .leader-avatar {
  background: linear-gradient(135deg, var(--gold), #e65100);
  box-shadow: 0 4px 20px rgba(249,168,37,0.3);
}
.leader-card.koord .leader-avatar {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  box-shadow: 0 4px 20px rgba(76,175,80,0.3);
}

/* Foto pemimpin (jika ada file) */
.leader-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
}
.leader-card.chef  .leader-photo { border: 2px solid rgba(249,168,37,0.5); box-shadow: 0 4px 20px rgba(249,168,37,0.3); }
.leader-card.koord .leader-photo { border: 2px solid rgba(76,175,80,0.5);  box-shadow: 0 4px 20px rgba(76,175,80,0.3); }

.leader-role {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.leader-card.chef  .leader-role { background: rgba(249,168,37,0.2); color: var(--gold); }
.leader-card.koord .leader-role { background: rgba(76,175,80,0.2);  color: var(--green-bright); }

.leader-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.2;
}

.leader-emoji { font-size: 28px; margin-bottom: 8px; display: block; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.member-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.member-card:hover {
  border-color: rgba(76,175,80,0.3);
  background: rgba(76,175,80,0.06);
}

.member-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(76,175,80,0.35);
  flex-shrink: 0;
  background: rgba(76,175,80,0.1);
}
.member-photo-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(76,175,80,0.12);
  border: 2px solid rgba(76,175,80,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--green-bright);
  flex-shrink: 0;
  letter-spacing: 1px;
}
.member-info { flex: 1; min-width: 0; }
.member-num {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}
.member-name {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}

/* ══════════════════════════════
   BRIEFING MASAK — HEADER MINGGU
══════════════════════════════ */
.menu-section { border-top: 1px solid rgba(255,255,255,0.05); }

.week-header {
  background: linear-gradient(90deg, rgba(249,168,37,0.1), transparent);
  border: 1px solid rgba(249,168,37,0.2);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.week-header-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ── TAB HARI (Senin-Sabtu) ── */
.day-tabs-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 16px;
  padding-bottom: 4px;
}
.day-tabs-scroll::-webkit-scrollbar { display: none; }

.day-tabs {
  display: flex;
  gap: 8px;
  min-width: max-content;
}

.day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s;
  min-width: 84px;
}
.day-tab:hover {
  border-color: rgba(76,175,80,0.3);
  background: rgba(76,175,80,0.06);
  color: rgba(255,255,255,0.8);
}
.day-tab.active {
  background: linear-gradient(135deg, rgba(76,175,80,0.2), rgba(27,94,32,0.3));
  border-color: rgba(76,175,80,0.5);
  color: var(--green-bright);
}
.day-tab.today {
  border-color: rgba(249,168,37,0.45);
  background: rgba(249,168,37,0.07);
}
.day-tab.today.active {
  background: linear-gradient(135deg, rgba(249,168,37,0.15), rgba(249,168,37,0.06));
  border-color: rgba(249,168,37,0.6);
  color: var(--gold);
}
.day-tab-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}
.day-tab-date {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: inherit;
  opacity: 0.7;
}
.today-badge {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold);
  animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ── Hari Minggu — Libur ── */
.sunday-rest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(27,94,32,0.2), rgba(13,31,13,0.6));
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 20px;
  text-align: center;
}
.sunday-rest-icon { font-size: 48px; }
.sunday-rest-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 5vw, 26px);
  letter-spacing: 3px;
  color: var(--green-bright);
  line-height: 1.3;
}

/* ── Konten Briefing ── */
.briefing-content { min-height: 120px; }

/* ── Loading Skeleton Shimmer ── */
.skeleton-card {
  background: linear-gradient(160deg, rgba(27,94,32,0.15), rgba(13,31,13,0.8));
  border: 1px solid rgba(76,175,80,0.12);
  border-radius: 18px;
  padding: 22px 18px;
  overflow: hidden;
}
.skeleton-line {
  height: 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  background: linear-gradient(90deg,
    rgba(76,175,80,0.08) 0%,
    rgba(76,175,80,0.18) 40%,
    rgba(76,175,80,0.08) 80%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.skeleton-line-title { height: 18px; width: 60%; }
.skeleton-line-md    { width: 85%; }
.skeleton-line-sm    { width: 50%; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ── Error & No Menu ── */
.briefing-error,
.briefing-no-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.briefing-error {
  background: rgba(198,40,40,0.1);
  border: 1px solid rgba(239,83,80,0.25);
  color: var(--red-bright);
}
.briefing-no-menu {
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
}
.briefing-no-menu-icon { font-size: 32px; }
.briefing-no-menu-text { font-size: 13px; font-weight: 800; letter-spacing: 1px; }

/* ── Briefing Card ── */
.briefing-card {
  margin-top: 4px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(76,175,80,0.2);
  background: linear-gradient(160deg, rgba(27,94,32,0.2), rgba(13,31,13,0.9));
}
.briefing-header {
  background: linear-gradient(90deg, rgba(76,175,80,0.25), rgba(27,94,32,0.15));
  padding: 14px 18px;
  border-bottom: 1px solid rgba(76,175,80,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.briefing-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--green-bright);
}
.briefing-header-date {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
}
.briefing-section {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.briefing-sec-title {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(249,168,37,0.15);
}
.briefing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
}
.briefing-row:last-child { border-bottom: none; }
.brl {
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  flex: 1;
}
.brv {
  color: rgba(255,255,255,0.9);
  font-weight: 800;
  text-align: right;
  flex-shrink: 0;
}
.brv.highlight { color: var(--green-bright); font-size: 13px; }
.briefing-row.warning .brl { color: rgba(239,83,80,0.7); }
.briefing-row.warning .brv { color: var(--red-bright); }

.bMenu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.bMenu-item:last-child { border-bottom: none; }
.bMenu-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
}

.bStasiun-item {
  padding: 6px 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  gap: 8px;
}
.bStasiun-item:last-child { border-bottom: none; }
.bStasiun-icon { flex-shrink: 0; }

.briefing-catatan {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-style: italic;
}
/* Badge label khusus — misal: "Khusus B3" pada hari Sabtu */
.label-khusus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,168,37,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(249,168,37,0); }
}

.briefing-yel {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--red-bright);
  padding: 16px;
  background: rgba(198,40,40,0.08);
}

/* ══════════════════════════════
   NILAI LOST
══════════════════════════════ */
.lost-section {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5), transparent);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.lost-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lost-main-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 15vw, 80px);
  line-height: 1;
  letter-spacing: 4px;
}
.lost-main-word span { display: inline-block; }
.lost-main-word .l     { color: #4CAF50; }
.lost-main-word .o     { color: #00BFA5; }
.lost-main-word .s     { color: #42A5F5; }
.lost-main-word .t     { color: #9575CD; }
.lost-main-word .ga    { color: var(--red-bright); font-size: 0.7em; }
.lost-main-word .rewel { color: var(--red-bright); font-size: 0.65em; }

.lost-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 400px) { .lost-cards { grid-template-columns: 1fr; } }

.lost-card {
  border-radius: 16px;
  padding: 22px 18px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s;
}
.lost-card:hover { transform: translateY(-4px); }

.lost-card-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 4px;
}
.lost-card-word {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lost-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  line-height: 1.55;
}

.lost-card.l-card { background: linear-gradient(135deg, rgba(27,94,32,0.35), rgba(46,125,50,0.15)); border-color: rgba(76,175,80,0.2); }
.lost-card.l-card .lost-card-letter,
.lost-card.l-card .lost-card-word { color: #4CAF50; }

.lost-card.o-card { background: linear-gradient(135deg, rgba(0,105,92,0.35), rgba(0,137,123,0.15)); border-color: rgba(0,191,165,0.2); }
.lost-card.o-card .lost-card-letter,
.lost-card.o-card .lost-card-word { color: #00BFA5; }

.lost-card.s-card { background: linear-gradient(135deg, rgba(21,101,192,0.35), rgba(25,118,210,0.15)); border-color: rgba(66,165,245,0.2); }
.lost-card.s-card .lost-card-letter,
.lost-card.s-card .lost-card-word { color: #42A5F5; }

.lost-card.t-card { background: linear-gradient(135deg, rgba(69,39,160,0.35), rgba(81,45,168,0.15)); border-color: rgba(149,117,205,0.2); }
.lost-card.t-card .lost-card-letter,
.lost-card.t-card .lost-card-word { color: #9575CD; }

.lost-card.ga-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(198,40,40,0.25), rgba(211,47,47,0.12));
  border-color: rgba(239,83,80,0.25);
  display: flex;
  gap: 20px;
  align-items: center;
}
.lost-card.ga-card .lost-card-letter { font-size: 44px; color: var(--red-bright); flex-shrink: 0; line-height: 1.1; }
.lost-card.ga-card .lost-card-word   { color: var(--red-bright); }

/* ══════════════════════════════
   YEL-YEL SECTION
══════════════════════════════ */
.yel-section { border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }

.yel-big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 9vw, 52px);
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 10px;
}
.yel-answer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 11vw, 68px);
  letter-spacing: 5px;
  color: var(--red-bright);
  text-shadow: 0 0 40px rgba(239,83,80,0.5);
  animation: yelPulse 2s ease-in-out infinite alternate;
  margin-bottom: 24px;
}

.yel-meaning {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  margin-bottom: 28px;
}
.yel-meaning h4 {
  font-size: 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.yel-meaning p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  line-height: 1.7;
}
.yel-meaning p strong { color: var(--green-bright); }

.yel-tap-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), #8B0000);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 18px 42px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(198,40,40,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.yel-tap-btn:hover  { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(198,40,40,0.6); }
.yel-tap-btn:active { transform: scale(0.96); }

/* ══════════════════════════════
   TUGAS UTAMA
══════════════════════════════ */
.tugas-section { border-top: 1px solid rgba(255,255,255,0.05); }

.role-cards { display: flex; flex-direction: column; gap: 16px; }

.role-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.3s;
}
.role-card:hover { transform: translateY(-3px); }

.role-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}
.role-emoji { font-size: 28px; flex-shrink: 0; }
.role-title-wrap { flex: 1; }
.role-badge {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 4px;
}
.role-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}
.role-holder {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.role-tasks { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.task-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}
.task-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.task-text {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.role-card.chef-card    { background: linear-gradient(160deg, rgba(249,168,37,0.1) 0%, rgba(13,31,13,0.8) 60%); border-color: rgba(249,168,37,0.2); }
.chef-card .role-badge  { background: rgba(249,168,37,0.15); color: var(--gold); }
.chef-card .task-num    { color: var(--gold); }

.role-card.kord-card    { background: linear-gradient(160deg, rgba(76,175,80,0.12) 0%, rgba(13,31,13,0.8) 60%); border-color: rgba(76,175,80,0.2); }
.kord-card .role-badge  { background: rgba(76,175,80,0.15); color: var(--green-bright); }
.kord-card .task-num    { color: var(--green-bright); }

.role-card.relawan-card  { background: linear-gradient(160deg, rgba(239,83,80,0.1) 0%, rgba(13,31,13,0.8) 60%); border-color: rgba(239,83,80,0.2); }
.relawan-card .role-badge { background: rgba(239,83,80,0.15); color: var(--red-bright); }
.relawan-card .task-num   { color: var(--red-bright); }

.relawan-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 20px 20px;
}
@media (max-width: 480px) { .relawan-sub-grid { grid-template-columns: 1fr; } }

.relawan-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(239,83,80,0.08);
  border: 1px solid rgba(239,83,80,0.15);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
}
.relawan-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--red-bright);
  flex-shrink: 0;
}

/* ══════════════════════════════
   PIKET KEBERSIHAN
══════════════════════════════ */
.piket-section { border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }

.spinner-wrap { margin: 0 auto 28px; max-width: 340px; }

.spinner-display {
  background: linear-gradient(135deg, rgba(27,94,32,0.3), rgba(13,31,13,0.9));
  border: 2px solid rgba(76,175,80,0.3);
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 20px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.spinner-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(76,175,80,0.1), transparent 70%);
}
.spinner-emoji { font-size: 36px; }
.spinner-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--green-bright);
  text-transform: uppercase;
}
.spinner-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 9vw, 50px);
  letter-spacing: 4px;
  color: #fff;
  line-height: 1;
  text-align: center;
  transition: all 0.08s;
}
.spinner-name.rolling { color: var(--gold); opacity: 0.7; }
.spinner-sub {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.spinner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 38px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(46,125,50,0.45);
  transition: transform 0.15s, box-shadow 0.15s;
  width: 100%;
  justify-content: center;
}
.spinner-btn:hover     { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(46,125,50,0.6); }
.spinner-btn:active    { transform: scale(0.96); }
.spinner-btn:disabled  { opacity: 0.5; cursor: not-allowed; transform: none; }

.piket-history { margin-top: 24px; text-align: left; }
.piket-history-title {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.piket-history-title::before { content:''; width:20px; height:2px; background:var(--gold); }

.piket-log { display: flex; flex-direction: column; gap: 6px; }
.piket-log-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  font-size: 12px;
}
.piket-log-name { font-weight: 800; color: rgba(255,255,255,0.85); }
.piket-log-date { font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 700; letter-spacing: 0.5px; }

/* ══════════════════════════════
   PENGUMUMAN
══════════════════════════════ */
.pengumuman-section { border-top: 1px solid rgba(255,255,255,0.05); }

.pengumuman-box {
  background: linear-gradient(135deg, rgba(249,168,37,0.08), rgba(13,31,13,0.6));
  border: 1px solid rgba(249,168,37,0.25);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
}
.pengumuman-header {
  background: linear-gradient(90deg, rgba(249,168,37,0.2), transparent);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(249,168,37,0.12);
}
.pengumuman-icon { font-size: 18px; }
.pengumuman-hd-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
}
.pengumuman-hd-date {
  margin-left: auto;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
}
.pengumuman-body { padding: 18px; }
.pengumuman-body p {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}
.pengumuman-tag {
  display: inline-block;
  background: rgba(249,168,37,0.15);
  color: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
}
.pengumuman-urgent .pengumuman-box {
  background: linear-gradient(135deg, rgba(198,40,40,0.12), rgba(13,31,13,0.6));
  border-color: rgba(239,83,80,0.3);
}
.pengumuman-urgent .pengumuman-header { background: linear-gradient(90deg, rgba(198,40,40,0.25), transparent); border-bottom-color: rgba(239,83,80,0.15); }
.pengumuman-urgent .pengumuman-hd-title { color: var(--red-bright); }
.pengumuman-urgent .pengumuman-tag { background: rgba(239,83,80,0.15); color: var(--red-bright); }

/* ══════════════════════════════
   GALERI
══════════════════════════════ */
.galeri-section { border-top: 1px solid rgba(255,255,255,0.05); }

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (max-width: 400px) { .galeri-grid { grid-template-columns: repeat(2, 1fr); } }

.galeri-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.galeri-item:hover { transform: scale(1.03); border-color: rgba(249,168,37,0.3); }
.galeri-item.wide  { grid-column: span 2; aspect-ratio: 2/1; }

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s;
}
.galeri-item:hover img { filter: brightness(1); }

.galeri-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(27,94,32,0.2), rgba(13,31,13,0.5));
}
.galeri-placeholder-icon { font-size: 28px; opacity: 0.4; }
.galeri-placeholder-text {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  text-align: center;
  padding: 0 6px;
}

.galeri-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.7) 100%);
}
.galeri-caption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  line-height: 1.3;
}

.galeri-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.galeri-info-icon { font-size: 22px; }
.galeri-info-text { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); line-height: 1.5; }
.galeri-info-text strong { color: var(--gold); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 50px 20px 60px;
  text-align: center;
}
.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249,168,37,0.4);
  margin: 0 auto 20px;
  display: block;
  opacity: 0.8;
}
.footer-yel {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 5px;
  color: var(--red-bright);
  margin-bottom: 8px;
}
.footer-info {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.8;
}

/* Watermark Situneo */
.footer-watermark {
  margin-top: 14px;
  font-size: 10px;
  color: rgba(255,255,255,0.15);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-watermark a {
  color: rgba(249,168,37,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-watermark a:hover { color: var(--gold); }

/* ══════════════════════════════
   FLOATING MUSIC PLAYER
══════════════════════════════ */
.music-player {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(13,31,13,0.95), rgba(27,94,32,0.95));
  border: 1px solid rgba(249,168,37,0.35);
  border-radius: 50px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(249,168,37,0.1);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.music-player:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 30px rgba(249,168,37,0.2); }

.music-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--red), #8B0000);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s, background 0.3s;
  box-shadow: 0 4px 12px rgba(198,40,40,0.4);
}
.music-play-btn:active  { transform: scale(0.92); }
.music-play-btn.playing {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  box-shadow: 0 4px 12px rgba(76,175,80,0.4);
}

.music-info { min-width: 0; }
.music-title {
  font-size: 10px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}
.music-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  flex-shrink: 0;
}
.music-bars span {
  width: 3px;
  border-radius: 2px;
  background: var(--green-bright);
  animation: none;
  height: 4px;
  transition: height 0.2s;
}
.music-bars.active span:nth-child(1) { animation: bar1 0.8s ease-in-out infinite alternate; }
.music-bars.active span:nth-child(2) { animation: bar2 0.6s ease-in-out infinite alternate; }
.music-bars.active span:nth-child(3) { animation: bar3 1.0s ease-in-out infinite alternate; }
.music-bars.active span:nth-child(4) { animation: bar4 0.7s ease-in-out infinite alternate; }

@keyframes bar1 { from { height:  4px; } to { height: 14px; } }
@keyframes bar2 { from { height:  8px; } to { height:  6px; } }
@keyframes bar3 { from { height: 12px; } to { height:  4px; } }
@keyframes bar4 { from { height:  6px; } to { height: 14px; } }

/* ══════════════════════════════
   ANIMASI GLOBAL
══════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes yelPulse {
  from { text-shadow: 0 0 20px rgba(239,83,80,0.3); }
  to   { text-shadow: 0 0 60px rgba(239,83,80,0.8); }
}
@keyframes fireShake {
  from { transform: rotate(-5deg) scale(1); }
  to   { transform: rotate(5deg) scale(1.1); }
}

/* Scroll reveal */
.reveal         { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
