/* ═══════════════════════════════════════════════════════
   PUKEMON (www.pukemon.in) - SHARED CSS STYLESHEET
   A Neo-Brutalist / Comic-Book Design System
   ═══════════════════════════════════════════════════════ */

/* ===== HOSTINGER-PROOF HARD RESET ===== */
*, *::before, *::after {
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
}
html {
  font-size: 16px !important;
  -webkit-text-size-adjust: 100% !important;
  scroll-behavior: smooth !important;
}
body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Comic Neue', 'Comic Sans MS', cursive !important;
  background-color: #FFE045 !important;
  background-image: radial-gradient(circle, rgba(26,16,8,0.13) 1.5px, transparent 1.5px) !important;
  background-size: 22px 22px !important;
  color: #1a1008 !important;
  overflow-x: hidden !important;
  line-height: 1.4 !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bangers', Impact, 'Arial Black', cursive !important;
  letter-spacing: 2px !important;
  margin: 0;
  padding: 0;
  line-height: 1.1 !important;
}
p { margin: 0; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none !important; }
a { text-decoration: none !important; color: inherit; }
img { max-width: 100% !important; display: block !important; border: 0 !important; }
button { font-family: inherit !important; cursor: pointer !important; }
input, select, textarea { font-family: inherit !important; }
table { border-collapse: collapse !important; }

/* ===== GLOBAL VARIABLES ===== */
:root {
  --ink: #1a1008;
  --yellow: #FFE045;
  --green: #A8E063;
  --nausea: #C8F07A;
  --pink: #FFB3C6;
  --lavender: #D9B3FF;
  --sky: #B3E5FF;
  --white: #FFFDF5;
  --panel-bg: #FFFDF5;
  --border: 4px solid #1a1008;
  --border-thick: 6px solid #1a1008;
  --shadow: 6px 6px 0px #1a1008;
  --shadow-sm: 3px 3px 0px #1a1008;
  --radius: 12px;
}

/* ===== HALFTONE TEXTURES & EFFECTS ===== */
.halftone {
  background-image: radial-gradient(circle, #1a100815 1px, transparent 1px);
  background-size: 12px 12px;
}
.marker { font-family: 'Permanent Marker', cursive; }
.bang { font-family: 'Bangers', cursive; letter-spacing: 2px; }

/* ===== NAVIGATION ===== */
nav {
  position: sticky !important; top: 0; z-index: 200;
  background: #1a1008;
  border-bottom: 4px solid #FFE045;
  display: flex !important; align-items: center; justify-content: space-between;
  padding: 10px 32px !important;
  box-shadow: 0 4px 0 rgba(0,0,0,0.3);
  margin: 0; width: 100%;
  box-sizing: border-box;
}
.nav-logo {
  font-family: 'Bangers', cursive;
  font-size: 2rem; color: #FFE045;
  letter-spacing: 3px;
  text-shadow: 3px 3px 0 #A8E063;
  text-decoration: none;
  line-height: 1; flex-shrink: 0;
}
.nav-links { display: flex !important; gap: 6px; list-style: none; align-items: center; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav-links li { margin: 0; padding: 0; list-style: none; }
.nav-links a {
  font-family: 'Bangers', Impact, 'Arial Black', cursive;
  font-size: 0.95rem; letter-spacing: 1px;
  color: #FFFDF5;
  text-decoration: none;
  padding: 6px 13px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: transparent;
  display: inline-block;
  font-weight: 400;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover {
  background: #FFE045;
  color: #1a1008;
  border-color: #FFE045;
  transform: rotate(-1deg) scale(1.05);
}
.nav-links a.nav-active {
  background: #FFE045; color: #1a1008; border-color: #FFE045;
}
.nav-links a.nav-join-btn {
  border: 2px solid #FF6B9D; background: #FF6B9D;
}
.nav-links a.nav-join-btn:hover {
  background: #FFE045; color: #1a1008; border-color: #FFE045;
}

#navToggle {
  display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px;
}
#navToggle span {
  display: block; width: 26px; height: 3px; background: #FFE045; border-radius: 3px;
}

@media(max-width:960px){
  .nav-links {
    display: none !important; flex-direction: column !important;
    position: absolute !important; top: 58px !important; left: 0 !important; right: 0 !important;
    background: #1a1008 !important; padding: 16px 20px 20px !important;
    border-bottom: 4px solid #FFE045 !important; z-index: 199 !important; gap: 4px !important;
  }
  .nav-links.mobile-open { display: flex !important; }
  #navToggle { display: flex !important; }
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Bangers', cursive;
  letter-spacing: 2px; font-size: 1.3rem;
  padding: 14px 32px;
  border: 5px solid #1a1008;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 6px 6px 0px #1a1008;
  transition: all 0.15s;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 #1a1008; }
.btn:active { transform: translate(2px, 2px); box-shadow: 3px 3px 0 #1a1008; }
.btn-primary { background: #1a1008; color: #FFE045; }
.btn-secondary { background: #A8E063; color: #1a1008; }
.btn-outline { background: #FFFDF5; color: #1a1008; }

/* ===== LAYOUT & SECTIONS ===== */
section { padding: 80px 40px !important; }
@media (max-width: 768px) {
  section { padding: 60px 20px !important; }
}

.section-title-wrap { text-align: center; margin-bottom: 60px; }
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  display: inline-block;
  background: #1a1008; color: #FFE045;
  padding: 8px 30px 12px;
  border-radius: 8px;
  transform: rotate(-1.5deg);
  box-shadow: 6px 6px 0px #1a1008;
}
.section-sub { margin-top: 16px; font-weight: 700; font-size: 1.15rem; color: #1a1008; }

/* ===== PAGE BANNERS ===== */
.page-banner {
  padding: 70px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden !important;
  border-bottom: 6px solid #1a1008;
}
.page-banner h1 {
  font-family: 'Bangers', cursive;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1; color: #1a1008;
  text-shadow: 5px 5px 0 #fff, 8px 8px 0 #1a1008;
  margin-bottom: 16px;
}
.page-banner p { font-size: 1.2rem; font-weight: 700; max-width: 600px; margin: 0 auto !important; }

/* ===== ZIGZAG DIVIDER ===== */
.zigzag-divider {
  width: 100%; height: 40px;
  background: linear-gradient(135deg, #1a1008 25%, transparent 25%) -20px 0,
              linear-gradient(225deg, #1a1008 25%, transparent 25%) -20px 0,
              linear-gradient(315deg, #1a1008 25%, transparent 25%),
              linear-gradient(45deg,  #1a1008 25%, transparent 25%);
  background-size: 40px 40px;
  background-color: #FFE045;
  margin: 0; padding: 0; border: none;
}

/* ===== HERO (HOME) ===== */
.hero {
  min-height: 100vh;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  position: relative;
  overflow: hidden !important;
}
.hero-left {
  background: #FFB3C6;
  border-right: 5px solid #1a1008;
  display: flex !important; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 60px 50px 60px 60px !important;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #1a100818 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}
.origin-badge {
  font-family: 'Bangers', cursive;
  font-size: 1rem; letter-spacing: 3px;
  background: #1a1008; color: #FFE045;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero-title {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  color: #1a1008;
  text-shadow: 5px 5px 0 #fff, 8px 8px 0 #1a1008;
  margin-bottom: 10px;
}
.hero-title span { color: #C8F07A; text-shadow: 4px 4px 0 #1a1008; }
.hero-tagline {
  font-family: 'Comic Neue', cursive;
  font-weight: 700; font-size: 1.25rem;
  line-height: 1.5;
  margin: 20px 0 30px;
  max-width: 420px;
}
.speech-bubble-hero {
  background: #FFFDF5;
  border: 5px solid #1a1008;
  border-radius: 20px 20px 20px 4px;
  padding: 16px 22px;
  font-weight: 700; font-size: 1.1rem;
  box-shadow: 6px 6px 0px #1a1008;
  position: relative;
  max-width: 360px;
  margin-bottom: 30px;
  transition: transform 0.2s;
}
.speech-bubble-hero::after {
  content: '';
  position: absolute; bottom: -22px; left: 30px;
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid #1a1008;
}
.speech-bubble-hero::before {
  content: '';
  position: absolute; bottom: -16px; left: 33px;
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid #FFFDF5;
  z-index: 1;
}
.hero-cta { margin-top: 40px; display: flex !important; gap: 16px; flex-wrap: wrap; }

.hero-right {
  background: #B3E5FF;
  display: flex !important; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden !important;
}
.puki-wrap { position: relative; animation: float 3s ease-in-out infinite; cursor: pointer; }
.action-burst {
  font-family: 'Bangers', cursive;
  position: absolute;
  font-size: 2.5rem;
  color: #1a1008;
  background: #FFE045;
  border: 4px solid #1a1008;
  padding: 8px 14px;
  border-radius: 50%;
  box-shadow: 6px 6px 0px #1a1008;
  animation: burst-wobble 1.5s ease-in-out infinite;
}
.burst-1 { top: 60px; right: 30px; font-size: 2rem; }
.burst-2 { bottom: 100px; left: 20px; background: #FFB3C6; }
.burst-3 { top: 150px; left: 10px; font-size: 1.6rem; background: #D9B3FF; animation-delay: 0.5s; }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 40px 28px; }
  .hero-right { padding: 40px 20px; min-height: 60vh; }
}

/* ===== COMIC PANEL GRID ===== */
.comic-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0 !important;
  border: 5px solid #1a1008;
  border-radius: 14px;
  overflow: hidden !important;
  box-shadow: 6px 6px 0px #1a1008;
  max-width: 1100px; margin: 0 auto !important;
}
.comic-panel {
  border: 3px solid #1a1008;
  padding: 30px 24px;
  position: relative;
  overflow: hidden !important;
  cursor: pointer;
  transition: transform 0.2s, z-index 0.2s;
}
.comic-panel:hover { transform: scale(1.02); z-index: 5; }

.panel-number {
  font-family: 'Bangers', cursive;
  font-size: 1.2rem; color: #1a100860;
  position: absolute; top: 10px; left: 14px;
}
.panel-emoji {
  font-size: 4rem; margin-bottom: 12px; display: block;
  filter: drop-shadow(3px 3px 0 #1a100840);
}
.panel-title { font-size: 1.8rem; margin-bottom: 8px; line-height: 1; }
.panel-desc { font-size: 0.95rem; line-height: 1.6; font-weight: 700; }
.panel-sfx {
  font-family: 'Bangers', cursive;
  font-size: 2.2rem;
  position: absolute; bottom: 12px; right: 14px;
  color: #1a1008; opacity: 0.15;
  letter-spacing: 2px;
}
.panel-car     { background: #FFE8B3; }
.panel-boat    { background: #B3E5FF; }
.panel-elevator{ background: #D9B3FF; }
.panel-altitude{ background: #C8F0FF; }
.panel-smell   { background: #C8F07A; }
.panel-vr      { background: #FFB3E8; }

/* ===== YOU'RE NOT ALONE & MERCH ===== */
#community {
  background: #1a1008; color: #FFFDF5; position: relative; overflow: hidden !important;
}
#community::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, #ffffff12 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}
#community .section-title { background: #FFE045; color: #1a1008; }

.stat-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; max-width: 900px; margin: 0 auto 60px;
}
.stat-card {
  background: #FFFDF5; border: 5px solid #1a1008; border-radius: 14px;
  padding: 30px 20px; text-align: center; box-shadow: 6px 6px 0px #1a1008;
  position: relative;
}
.stat-number { font-family: 'Bangers', cursive; font-size: 3.5rem; color: #1a1008; line-height: 1; }
.stat-label { font-weight: 700; font-size: 0.95rem; margin-top: 8px; color: #1a1008; }
.stat-card:nth-child(1) { background: #FFB3C6; transform: rotate(-1deg); }
.stat-card:nth-child(2) { background: #A8E063; transform: rotate(1.5deg); }
.stat-card:nth-child(3) { background: #FFE045; transform: rotate(-0.5deg); }
.stat-card:nth-child(4) { background: #D9B3FF; transform: rotate(1deg); }

.testimonial-row {
  display: flex !important; flex-wrap: wrap; gap: 24px; justify-content: center;
  max-width: 1100px; margin: 0 auto !important;
}
.testi-bubble {
  background: #FFFDF5; border: 5px solid #1a1008; border-radius: 20px 20px 20px 4px;
  padding: 20px 24px; max-width: 300px; box-shadow: 6px 6px 0px #1a1008;
  color: #1a1008; position: relative; transition: transform 0.2s;
}
.testi-bubble:hover { transform: rotate(-1deg) scale(1.03); }
.testi-bubble:nth-child(2) { border-radius: 20px 20px 4px 20px; }
.testi-bubble:nth-child(3) { border-radius: 20px 20px 20px 4px; }
.testi-text { font-size: 1rem; font-weight: 700; line-height: 1.6; margin-bottom: 12px; }
.testi-name { font-family: 'Bangers', cursive; font-size: 1.2rem; color: #666; letter-spacing: 1px; }

#merch { background: #D9B3FF; text-align: center; }
.merch-coming { max-width: 700px; margin: 0 auto !important; }
.merch-big {
  font-family: 'Bangers', cursive; font-size: clamp(3rem, 8vw, 6rem); line-height: 1;
  color: #1a1008; text-shadow: 4px 4px 0 #FFFDF5, 7px 7px 0 #1a1008;
}
.merch-sub { font-weight: 700; font-size: 1.2rem; margin: 20px 0 30px; }
.merch-items { display: flex !important; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 40px 0; }
.merch-item {
  background: #FFFDF5; border: 5px solid #1a1008; border-radius: 14px; padding: 24px;
  font-family: 'Bangers', cursive; font-size: 1.4rem; letter-spacing: 1px;
  box-shadow: 6px 6px 0px #1a1008; min-width: 160px; transform: rotate(-1deg); transition: transform 0.2s;
}
.merch-item:nth-child(2) { transform: rotate(2deg); }
.merch-item:nth-child(3) { transform: rotate(-1.5deg); }
.merch-item:hover { transform: rotate(0) scale(1.05); }
.merch-emoji { font-size: 3rem; display: block; margin-bottom: 8px; }

/* ===== EMAIL SIGNUP ===== */
.signup-box {
  background: #FFE045; border: 5px solid #1a1008; border-radius: 14px;
  padding: 40px; box-shadow: 6px 6px 0px #1a1008; max-width: 500px; margin: 0 auto !important;
}
.signup-box h3 { font-size: 2rem; margin-bottom: 8px; }
.signup-box p { font-weight: 700; margin-bottom: 20px; }
.signup-row { display: flex !important; gap: 0 !important; }
.signup-input {
  flex: 1; padding: 14px 18px; border: 5px solid #1a1008; border-right: none;
  border-radius: 8px 0 0 8px; font-family: 'Comic Neue', cursive;
  font-weight: 700; font-size: 1rem; background: #FFFDF5; outline: none;
}
.signup-input:focus { background: #fffef0; }
.signup-btn {
  background: #1a1008; color: #FFE045; font-family: 'Bangers', cursive;
  font-size: 1.2rem; letter-spacing: 2px; padding: 14px 24px;
  border: 5px solid #1a1008; border-radius: 0 8px 8px 0; cursor: pointer; transition: all 0.15s;
}
.signup-btn:hover { background: #333; transform: scale(1.05); }

@media(max-width:768px) {
  .signup-row { flex-direction: column; }
  .signup-input { border-right: 5px solid #1a1008; border-bottom: none; border-radius: 8px 8px 0 0; }
  .signup-btn { border-radius: 0 0 8px 8px; }
  .stat-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ===== FOOTER & SCROLL FAB ===== */
footer {
  background: #1a1008; color: #FFFDF5; padding: 60px 40px 28px !important;
  position: relative; overflow: hidden; margin: 0; box-sizing: border-box;
}
footer::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 20px 20px; pointer-events: none;
}
.footer-grid {
  display: grid !important; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1100px; margin: 0 auto 48px; position: relative; box-sizing: border-box;
}
.footer-logo {
  font-family: 'Bangers', Impact, cursive; font-size: 2.8rem; color: #FFE045;
  letter-spacing: 3px; text-shadow: 3px 3px 0 #A8E063; display: block; text-decoration: none;
  margin-bottom: 14px; line-height: 1;
}
.footer-brand-p { font-weight: 700; font-size: 0.92rem; color: #bbb; line-height: 1.7; max-width: 280px; margin: 0; }
.footer-col-title { font-family: 'Bangers', Impact, cursive; font-size: 1.3rem; color: #FFE045; margin-bottom: 14px; letter-spacing: 1px; }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a { color: #bbb; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: color 0.2s; }
.footer-links-list a:hover { color: #FFE045; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; text-align: center; font-size: 0.88rem; color: #777; position: relative; }
.footer-bottom span { color: #FFB3C6; font-weight: 700; }

@media(max-width:900px){
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width:600px){
  .footer-grid { grid-template-columns: 1fr !important; padding: 0 20px !important; }
  footer { padding: 48px 20px 24px !important; }
}

.sticker-float {
  position: fixed !important; bottom: 28px; right: 28px; z-index: 99;
  width: 72px; height: 72px; background: #FFE045; border: 4px solid #1a1008;
  border-radius: 50%; display: flex !important; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 6px 6px 0 #1a1008; text-decoration: none;
  animation: fab-spin 5s linear infinite; cursor: pointer;
}
.sticker-float:hover { animation-play-state: paused; transform: scale(1.2); }
@keyframes fab-spin { to { transform: rotate(360deg); } }

@media(max-width:600px){
  .sticker-float { width: 56px !important; height: 56px !important; font-size: 1.5rem !important; bottom: 16px !important; right: 16px !important; }
}

/* ===== FADE-UP ON SCROLL ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =======================================================
   PAGE-SPECIFIC: STORIES
   ======================================================= */
.stories-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  font-family: 'Bangers', cursive; font-size: 1rem; letter-spacing: 2px; padding: 8px 22px;
  border: 4px solid #1a1008; border-radius: 30px; cursor: pointer; background: #FFFDF5;
  transition: all 0.15s; box-shadow: 3px 3px 0 #1a1008;
}
.filter-btn:hover, .filter-btn.active {
  background: #1a1008; color: #FFE045; transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #1a1008;
}
.featured-story {
  background: #1a1008; color: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px;
  padding: 40px; box-shadow: 6px 6px 0 #1a1008; display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center; margin-bottom: 48px; cursor: pointer; transition: transform 0.2s;
}
.featured-story:hover { transform: translate(-4px,-4px); }
.featured-badge {
  font-family: 'Bangers', cursive; font-size: 0.9rem; letter-spacing: 3px; background: #FFE045;
  color: #1a1008; padding: 4px 14px; border-radius: 4px; display: inline-block; margin-bottom: 14px;
}
.featured-title { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.1; margin-bottom: 12px; }
.featured-excerpt { font-weight: 700; font-size: 1.05rem; line-height: 1.7; color: #ddd; max-width: 520px; }
.featured-emoji { font-size: 7rem; }

.stories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.story-card {
  background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; overflow: hidden;
  box-shadow: 6px 6px 0 #1a1008; transition: transform 0.2s, box-shadow 0.2s;
}
.story-card:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 #1a1008; }
.story-thumb {
  height: 150px; display: flex; align-items: center; justify-content: center; font-size: 4rem;
  border-bottom: 6px solid #1a1008; position: relative; overflow: hidden; cursor: pointer;
}
.thumb-bg {
  font-family: 'Bangers', cursive; font-size: 5rem; letter-spacing: 4px; color: #1a100812;
  position: absolute; white-space: nowrap;
}
.story-body { padding: 22px; }
.story-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.story-badge {
  font-family: 'Bangers', cursive; font-size: 0.8rem; letter-spacing: 2px; padding: 2px 10px;
  border: 2px solid #1a1008; border-radius: 4px; background: #FFE045;
}
.story-read-time { font-size: 0.82rem; font-weight: 700; color: #888; }
.story-title { font-size: 1.45rem; line-height: 1.2; margin-bottom: 8px; }
.story-excerpt { font-size: 0.9rem; line-height: 1.7; font-weight: 700; color: #555; margin-bottom: 16px; }

.read-btn {
  font-family: 'Bangers', cursive; letter-spacing: 2px; font-size: 1rem; padding: 8px 20px;
  border: 4px solid #1a1008; border-radius: 6px; background: #1a1008; color: #FFE045;
  cursor: pointer; box-shadow: 3px 3px 0 #1a1008; transition: all 0.15s; display: inline-block;
  text-decoration: none; text-align: center;
}
.read-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #1a1008; }

/* Modals */
.story-modal, .article-modal, .game-modal {
  display: none; position: fixed; inset: 0; z-index: 500; background: rgba(26,16,8,0.9);
  padding: 20px; overflow-y: auto; justify-content: center; align-items: flex-start;
}
.story-modal.open, .article-modal.open, .game-modal.open { display: flex; }

.modal-inner, .game-panel {
  background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; max-width: 760px;
  width: 100%; box-shadow: 12px 12px 0 #1a1008; margin: auto; position: relative;
}
.modal-close, .game-close {
  position: absolute; top: 14px; right: 14px; font-family: 'Bangers', cursive; font-size: 1.3rem;
  background: #1a1008; color: #FFE045; border: 3px solid #FFE045; border-radius: 50%;
  width: 42px; height: 42px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s; z-index: 10;
}
.modal-close:hover, .game-close:hover { transform: rotate(90deg); }
.modal-header { padding: 28px 32px 18px; border-bottom: 4px solid #1a1008; }
.modal-emoji { font-size: 3rem; margin-bottom: 10px; display: block; }
.modal-title { font-size: 2.2rem; line-height: 1.1; margin-bottom: 8px; }
.modal-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.modal-body, .modal-content { padding: 28px 32px; }
.modal-body p, .modal-content p { font-size: 1.05rem; line-height: 1.9; font-weight: 700; margin-bottom: 18px; color: #333; }
.modal-body h3, .modal-content h3 { font-size: 1.8rem; margin: 24px 0 10px; }
.modal-body h4, .modal-content h4 { font-size: 1.3rem; margin: 18px 0 8px; color: #FF6B9D; font-family: 'Bangers', cursive; letter-spacing: 1px; }

.puki-says {
  background: #FFE045; border: 3px solid #1a1008; border-radius: 12px; padding: 16px 20px;
  margin: 18px 0; font-size: 1rem; line-height: 1.7; font-style: italic; font-weight: 700;
}
.puki-says::before { content: '💬 PUKI SAYS: '; font-style: normal; font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; }

.comic-insert { background: #FFB3C6; border: 3px solid #1a1008; border-radius: 12px; padding: 18px 22px; margin: 20px 0; text-align: center; }
.comic-insert .sfx-text { font-family: 'Bangers', cursive; font-size: 2.5rem; color: #1a1008; display: block; margin-bottom: 6px; transform: rotate(-2deg); }

.tip-callout { background: #A8E063; border: 3px solid #1a1008; border-radius: 12px; padding: 16px 20px; margin: 18px 0; font-weight: 700; }
.tip-callout::before { content: '✅ PUKI TIP: '; font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; }

.modal-footer, .modal-art-footer { padding: 18px 32px 26px; border-top: 3px solid #ddd; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.share-label { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; }

@media(max-width:700px){
  .featured-story { grid-template-columns: 1fr; }
  .featured-emoji { display: none; }
  .modal-body, .modal-content { padding: 20px; }
  .modal-header { padding: 20px; }
}

/* =======================================================
   PAGE-SPECIFIC: BLOG
   ======================================================= */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; max-width: 1100px; margin: 0 auto; }
.article-card {
  background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; overflow: hidden;
  box-shadow: 6px 6px 0 #1a1008; margin-bottom: 28px; transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 #1a1008; }
.article-thumb {
  height: 160px; display: flex; align-items: center; justify-content: center; font-size: 4.5rem;
  border-bottom: 6px solid #1a1008; position: relative; overflow: hidden; cursor: pointer;
}
.article-thumb-bg { font-family: 'Bangers', cursive; font-size: 5rem; letter-spacing: 6px; color: #1a100812; position: absolute; white-space: nowrap; }
.article-body { padding: 24px; }
.article-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.article-date { font-size: 0.82rem; font-weight: 700; color: #999; }
.article-title { font-size: 1.7rem; line-height: 1.2; margin-bottom: 10px; cursor: pointer; }
.article-title:hover { color: #FF6B9D; }
.article-excerpt { font-size: 0.95rem; line-height: 1.8; font-weight: 700; color: #555; margin-bottom: 18px; }

/* Sidebar */
.sidebar-widget { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; padding: 22px; box-shadow: 6px 6px 0 #1a1008; margin-bottom: 24px; }
.sidebar-widget h3 { font-size: 1.4rem; margin-bottom: 14px; border-bottom: 3px solid #1a1008; padding-bottom: 8px; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tags a {
  font-family: 'Bangers', cursive; font-size: 0.9rem; letter-spacing: 1px; padding: 4px 14px;
  border: 2px solid #1a1008; border-radius: 20px; background: #FFF9E8; text-decoration: none; transition: all 0.15s;
}
.sidebar-tags a:hover { background: #1a1008; color: #FFE045; }
.sidebar-story-link { text-decoration: none; display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.sidebar-story-link p { font-weight: 700; font-size: 0.9rem; line-height: 1.3; color: #1a1008; }
.sidebar-story-link span.s-time { font-size: 0.8rem; color: #999; font-weight: 700; }

.modal-art-banner { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; border-bottom: 6px solid #1a1008; position: relative; overflow: hidden; }
.modal-art-banner-bg { font-family: 'Bangers', cursive; font-size: 5rem; color: #1a100815; position: absolute; letter-spacing: 6px; }
.modal-art-header { padding: 28px 32px 18px; border-bottom: 4px solid #1a1008; }
.modal-art-header h2 { font-size: 2rem; line-height: 1.15; margin: 10px 0 6px; }
.modal-art-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 6px; }

.pull-quote { border-left: 6px solid #FF6B9D; padding: 12px 20px; margin: 20px 0; background: #FFF9E8; font-size: 1.1rem; line-height: 1.7; font-style: italic; font-weight: 700; }
.info-box { background: #A8E063; border: 3px solid #1a1008; border-radius: 12px; padding: 18px 22px; margin: 20px 0; font-weight: 700; }
.info-box strong { font-family: 'Bangers', cursive; font-size: 1.2rem; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.warning-box { background: #FFE045; border: 3px solid #1a1008; border-radius: 12px; padding: 18px 22px; margin: 20px 0; font-weight: 700; }
.warning-box strong { font-family: 'Bangers', cursive; font-size: 1.2rem; display: block; margin-bottom: 6px; }

@media(max-width:900px){
  .blog-layout { grid-template-columns: 1fr; }
}

/* =======================================================
   PAGE-SPECIFIC: SURVIVAL
   ======================================================= */
.guide-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.g-tab {
  font-family: 'Bangers', cursive; font-size: 1.05rem; letter-spacing: 2px; padding: 10px 24px;
  border: 4px solid #1a1008; border-radius: 30px; cursor: pointer; background: #FFFDF5;
  box-shadow: 3px 3px 0 #1a1008; transition: all 0.15s;
}
.g-tab:hover, .g-tab.active { background: #1a1008; color: #FFE045; transform: translate(-2px,-2px); box-shadow: 5px 5px 0 #1a1008; }
.guide-section { display: none; }
.guide-section.active { display: block; }

.tips-big-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.tip-big { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; padding: 28px; box-shadow: 6px 6px 0 #1a1008; transition: transform 0.2s, box-shadow 0.2s; }
.tip-big:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 #1a1008; }
.tip-big-icon { font-size: 2.8rem; margin-bottom: 12px; }
.tip-big-title { font-size: 1.6rem; margin-bottom: 8px; }
.tip-big-body { font-size: 0.93rem; line-height: 1.8; font-weight: 700; color: #444; margin-bottom: 14px; }
.tip-quote { background: #FFE045; border: 2px solid #1a1008; border-radius: 8px; padding: 10px 14px; font-size: 0.88rem; font-style: italic; font-weight: 700; }
.tip-quote::before { content: '💬 Puki: '; font-style: normal; font-family: 'Bangers', cursive; font-size: 0.95rem; }

.tc-pink   { border-left: 8px solid #FF6B9D; }
.tc-green  { border-left: 8px solid #A8E063; }
.tc-sky    { border-left: 8px solid #B3E5FF; }
.tc-lav    { border-left: 8px solid #D9B3FF; }
.tc-yellow { border-left: 8px solid #FFE045; }
.tc-orange { border-left: 8px solid #FFB347; }

.emergency-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.step-card { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; padding: 22px; box-shadow: 6px 6px 0 #1a1008; position: relative; padding-top: 52px; }
.step-num {
  font-family: 'Bangers', cursive; font-size: 1.8rem; background: #1a1008; color: #FFE045;
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: absolute; top: -18px; left: 20px; border: 3px solid #1a1008;
}
.step-title { font-size: 1.3rem; margin-bottom: 6px; }
.step-body { font-size: 0.9rem; font-weight: 700; line-height: 1.7; color: #555; }

.big-callout { background: #1a1008; color: #FFFDF5; border-radius: 12px; padding: 40px; text-align: center; box-shadow: 6px 6px 0 #FFE045; margin-bottom: 40px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.big-callout h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: #FFE045; margin-bottom: 12px; }
.big-callout p { font-weight: 700; font-size: 1.1rem; max-width: 560px; margin: 0 auto; color: #ccc; line-height: 1.7; }

.cheatsheet { background: #FFE045; border: 6px solid #1a1008; border-radius: 12px; padding: 32px; box-shadow: 6px 6px 0 #1a1008; max-width: 1100px; margin: 0 auto; }
.cheatsheet h3 { font-size: 2rem; margin-bottom: 20px; text-align: center; }
.cheat-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cheat-col h4 { font-size: 1.2rem; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 3px solid #1a1008; }
.cheat-col ul { list-style: none; }
.cheat-col li { font-weight: 700; font-size: 0.92rem; padding: 5px 0; border-bottom: 1px dashed rgba(26,16,8,0.18); }
.do-list li::before { content: '✅ '; }
.never-list li::before { content: '❌ '; }

.redflags { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; padding: 32px; box-shadow: 6px 6px 0 #1a1008; max-width: 700px; margin: 0 auto; }
.redflag-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 2px dashed #ddd; }
.redflag-item:last-child { border-bottom: none; }
.redflag-icon { font-size: 2rem; flex-shrink: 0; }
.redflag-text strong { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.redflag-text p { font-size: 0.9rem; font-weight: 700; color: #555; line-height: 1.6; }

@media(max-width:600px){
  .cheat-cols { grid-template-columns: 1fr; }
}

/* =======================================================
   PAGE-SPECIFIC: GAMES
   ======================================================= */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto 60px; }
.game-card { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; overflow: hidden; box-shadow: 6px 6px 0 #1a1008; transition: transform 0.2s, box-shadow 0.2s; }
.game-card:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 #1a1008; }
.game-thumb { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; border-bottom: 6px solid #1a1008; cursor: pointer; position: relative; overflow: hidden; }
.game-thumb-bg { font-family: 'Bangers', cursive; font-size: 4.5rem; color: #1a100812; position: absolute; letter-spacing: 4px; white-space: nowrap; }
.game-info { padding: 22px; }
.game-title { font-size: 1.7rem; margin-bottom: 6px; }
.game-desc { font-size: 0.9rem; font-weight: 700; line-height: 1.7; color: #555; margin-bottom: 16px; }
.game-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }

.diff-easy   { background: #A8E063; border: 2px solid #1a1008; font-family: 'Bangers', cursive; font-size: 0.85rem; letter-spacing: 1px; padding: 2px 12px; border-radius: 4px; }
.diff-medium { background: #FFE045; border: 2px solid #1a1008; font-family: 'Bangers', cursive; font-size: 0.85rem; letter-spacing: 1px; padding: 2px 12px; border-radius: 4px; }
.diff-hard   { background: #FF6B9D; color: #FFFDF5; border: 2px solid #1a1008; font-family: 'Bangers', cursive; font-size: 0.85rem; letter-spacing: 1px; padding: 2px 12px; border-radius: 4px; }

.score-bar {
  display: flex; justify-content: space-between; align-items: center; background: #1a1008;
  color: #FFE045; padding: 10px 18px; border-radius: 8px; margin-bottom: 20px;
  font-family: 'Bangers', cursive; font-size: 1.2rem; letter-spacing: 2px;
}
.big-score { font-size: 2rem; }
.game-msg { font-family: 'Bangers', cursive; font-size: 1.8rem; text-align: center; margin: 14px 0; min-height: 44px; letter-spacing: 2px; }
.play-btn {
  font-family: 'Bangers', cursive; font-size: 1.4rem; letter-spacing: 2px; padding: 14px 36px;
  border: 6px solid #1a1008; border-radius: 12px; cursor: pointer; box-shadow: 6px 6px 0 #1a1008;
  transition: all 0.15s;
}
.play-btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 #1a1008; }

.quiz-q { font-size: 1.2rem; font-weight: 700; line-height: 1.7; text-align: center; margin-bottom: 22px; background: #FFE045; border: 3px solid #1a1008; border-radius: 12px; padding: 16px; }
.quiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quiz-opt {
  font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; padding: 14px;
  border: 4px solid #1a1008; border-radius: 12px; cursor: pointer; background: #FFFDF5;
  box-shadow: 3px 3px 0 #1a1008; transition: all 0.15s; text-align: center;
}
.quiz-opt:hover { transform: scale(1.03); box-shadow: 5px 5px 0 #1a1008; }
.quiz-opt.correct { background: #A8E063; pointer-events: none; }
.quiz-opt.wrong { background: #FF6B9D; color: #FFFDF5; pointer-events: none; }
.quiz-opt.disabled { opacity: 0.5; pointer-events: none; }
.quiz-progress { display: flex; gap: 6px; margin-bottom: 16px; justify-content: center; }
.q-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #1a1008; background: #FFF9E8; }
.q-dot.done { background: #A8E063; }
.q-dot.wrong { background: #FF6B9D; }
.q-dot.current { background: #FFE045; }

.breath-ring {
  width: 120px; height: 120px; border-radius: 50%; border: 6px solid #A8E063;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  transition: transform 0.8s, border-color 0.4s;
}
.tap-btn {
  font-family: 'Bangers', cursive; font-size: 1.6rem; letter-spacing: 2px; padding: 18px 48px;
  border: 6px solid #1a1008; border-radius: 12px; cursor: pointer; background: #FF6B9D;
  color: #FFFDF5; box-shadow: 6px 6px 0 #1a1008; transition: all 0.15s; user-select: none;
}
.tap-btn:active { transform: scale(0.95); }

.leaderboard { background: #1a1008; border: 6px solid #1a1008; border-radius: 12px; padding: 24px; max-width: 500px; margin: 20px auto 0; box-shadow: 6px 6px 0 #FFE045; }
.leaderboard h3 { color: #FFE045; font-size: 1.6rem; margin-bottom: 16px; text-align: center; }
.lb-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ffffff20; font-weight: 700; color: #FFFDF5; }
.lb-row:last-child { border-bottom: none; }
.lb-rank { font-family: 'Bangers', cursive; font-size: 1.3rem; color: #FFE045; width: 32px; }
.lb-score { font-family: 'Bangers', cursive; font-size: 1.3rem; color: #A8E063; }

/* =======================================================
   PAGE-SPECIFIC: ABOUT
   ======================================================= */
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 60px; }
.origin-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 6px solid #1a1008; border-radius: 12px; overflow: hidden; box-shadow: 6px 6px 0 #1a1008; }
.o-panel { padding: 24px 20px; border: 3px solid #1a1008; position: relative; }
.o-panel:nth-child(1){background: #FFB3C6;}
.o-panel:nth-child(2){background: #B3E5FF;}
.o-panel:nth-child(3){background: #C8F07A;}
.o-panel:nth-child(4){background: #D9B3FF;}
.o-num { font-family: 'Bangers', cursive; font-size: 1rem; color: #1a100850; position: absolute; top: 8px; left: 10px; }
.o-emoji { font-size: 2.8rem; display: block; margin-bottom: 8px; }
.o-text { font-weight: 700; font-size: 0.88rem; line-height: 1.6; }

.char-card { background: #1a1008; color: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; padding: 32px; box-shadow: 6px 6px 0 #FFE045; position: relative; overflow: hidden; }
.char-card::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #ffffff0e 1.5px, transparent 1.5px); background-size: 18px 18px; pointer-events: none; }
.char-name { font-size: 3rem; color: #FFE045; text-shadow: 3px 3px 0 #A8E063; margin-bottom: 4px; }
.char-sub { font-weight: 700; font-size: 0.9rem; color: #bbb; margin-bottom: 24px; }
.stat-list { list-style: none; }
.stat-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ffffff20; font-weight: 700; font-size: 0.9rem; }
.stat-list li:last-child { border-bottom: none; }
.stat-key { color: #aaa; }
.stat-val { color: #FFE045; font-family: 'Bangers', cursive; font-size: 1rem; letter-spacing: 1px; }

.timeline { max-width: 700px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 80px 1fr; }
.tl-year { font-family: 'Bangers', cursive; font-size: 1.2rem; letter-spacing: 2px; background: #1a1008; color: #FFE045; padding: 14px 10px; text-align: center; border: 3px solid #1a1008; border-right: none; }
.tl-content { background: #FFFDF5; border: 3px solid #1a1008; border-bottom: none; padding: 14px 18px; }
.tl-item:last-child .tl-content { border-bottom: 3px solid #1a1008; }
.tl-item:last-child .tl-year { border-bottom: 3px solid #1a1008; }
.tl-title { font-size: 1.2rem; margin-bottom: 4px; }
.tl-body { font-size: 0.88rem; font-weight: 700; color: #555; line-height: 1.6; }
.tl-item:nth-child(odd) .tl-content { background: #FFF9E8; }

.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; margin-bottom: 14px; overflow: hidden; box-shadow: 3px 3px 0 #1a1008; }
.faq-q { font-family: 'Bangers', cursive; font-size: 1.2rem; letter-spacing: 1px; padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: background 0.15s; }
.faq-q:hover { background: #FFE045; }
.faq-arrow { font-size: 1.2rem; transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 16px; font-weight: 700; font-size: 0.93rem; line-height: 1.7; color: #444; border-top: 2px solid #eee; }
.faq-item.open .faq-a { display: block; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.contact-card { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; padding: 28px; box-shadow: 6px 6px 0 #1a1008; text-align: center; transition: transform 0.2s; }
.contact-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 #1a1008; }
.contact-icon { font-size: 3rem; margin-bottom: 12px; }
.contact-title { font-size: 1.5rem; margin-bottom: 8px; }
.contact-body { font-size: 0.9rem; font-weight: 700; line-height: 1.7; color: #555; margin-bottom: 16px; }

@media(max-width:700px){
  .origin-grid { grid-template-columns: 1fr; }
  .origin-panels { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* =======================================================
   PAGE-SPECIFIC: JOIN / CLUB
   ======================================================= */
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 6px solid #1a1008; border-radius: 12px; overflow: hidden; box-shadow: 6px 6px 0 #1a1008; margin-bottom: 60px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.step { padding: 32px 24px; text-align: center; border-right: 4px solid #1a1008; }
.step:last-child { border-right: none; }
.step:nth-child(1){background: #FFE045;}
.step:nth-child(2){background: #FFB3C6;}
.step:nth-child(3){background: #A8E063;}
.step-num { font-family: 'Bangers', cursive; font-size: 3rem; display: block; margin-bottom: 6px; }
.step-title { font-size: 1.6rem; margin-bottom: 8px; }
.step-body { font-size: 0.92rem; font-weight: 700; line-height: 1.7; }

.join-form-wrap { max-width: 620px; margin: 0 auto; }
.form-panel { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; padding: 36px; box-shadow: 6px 6px 0 #1a1008; }
.form-panel h2 { font-size: 2.2rem; margin-bottom: 6px; }
.form-panel > p { font-weight: 700; margin-bottom: 28px; color: #666; }

.field { margin-bottom: 20px; }
.field label { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 16px; border: 4px solid #1a1008; border-radius: 8px; font-family: 'Comic Neue', cursive; font-weight: 700; font-size: 1rem; background: #FFF9E8; outline: none; transition: border-color 0.15s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #FF6B9D; background: #FFFDF5; }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.trigger-picker { display: flex; flex-wrap: wrap; gap: 8px; }
.trigger-pill {
  font-family: 'Bangers', cursive; font-size: 0.9rem; letter-spacing: 1px; padding: 6px 16px;
  border: 3px solid #1a1008; border-radius: 20px; cursor: pointer; background: #FFF9E8;
  transition: all 0.15s; user-select: none;
}
.trigger-pill:hover { background: #1a1008; color: #FFE045; }
.trigger-pill.selected { background: #FF6B9D; color: #FFFDF5; border-color: #FF6B9D; }

.submit-btn {
  width: 100%; padding: 18px; font-family: 'Bangers', cursive; font-size: 1.6rem; letter-spacing: 3px;
  background: #FF6B9D; color: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px;
  cursor: pointer; box-shadow: 6px 6px 0 #1a1008; transition: all 0.15s; margin-top: 8px;
}
.submit-btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 #1a1008; }

/* Membership Card */
.membership-card {
  width: 380px; max-width: 100%; background: #1a1008; border: 5px solid #FFE045;
  border-radius: 20px; padding: 28px; box-shadow: 12px 12px 0 #FFE045; margin: 0 auto 32px;
  position: relative; overflow: hidden; animation: card-flip 0.6s ease;
}
@keyframes card-flip { from { transform: rotateY(90deg); opacity: 0; } to { transform: rotateY(0); opacity: 1; } }
.card-bg-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1.5px, transparent 1.5px); background-size: 14px 14px; pointer-events: none; }
.card-logo-txt { font-family: 'Bangers', cursive; font-size: 1.6rem; color: #FFE045; letter-spacing: 3px; text-shadow: 2px 2px 0 #A8E063; }
.card-badge-txt { font-family: 'Bangers', cursive; font-size: 0.75rem; letter-spacing: 2px; background: #FF6B9D; color: #FFFDF5; padding: 4px 10px; border-radius: 4px; }
.card-avatar-txt { font-size: 5rem; display: block; text-align: center; margin-bottom: 12px; }
.card-name-txt { font-family: 'Bangers', cursive; font-size: 2.2rem; color: #FFFDF5; text-align: center; letter-spacing: 2px; line-height: 1; margin-bottom: 4px; }
.card-title-txt { font-weight: 700; font-size: 0.85rem; color: #FFE045; text-align: center; margin-bottom: 18px; opacity: 0.8; }
.card-triggers-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; justify-content: center; }
.card-trigger-tag { font-family: 'Bangers', cursive; font-size: 0.75rem; letter-spacing: 1px; padding: 3px 10px; border: 1.5px solid #FFE045; border-radius: 12px; color: #FFE045; }
.card-footer-row { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 14px; border-top: 1px solid #ffffff20; }
.card-num-txt { font-family: 'Bangers', cursive; font-size: 1rem; color: rgba(255,255,255,0.38); letter-spacing: 2px; }
.card-since-txt { font-weight: 700; font-size: 0.8rem; color: rgba(255,255,255,0.38); }

.perks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.perk-card { background: #FFFDF5; border: 6px solid #1a1008; border-radius: 12px; padding: 24px; box-shadow: 6px 6px 0 #1a1008; transition: transform 0.2s; }
.perk-card:hover { transform: rotate(-1deg) scale(1.03); }
.perk-icon { font-size: 2.5rem; margin-bottom: 10px; }
.perk-title { font-size: 1.4rem; margin-bottom: 6px; }
.perk-body { font-size: 0.9rem; font-weight: 700; line-height: 1.7; color: #555; }

@media(max-width:700px){
  .steps-row { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 4px solid #1a1008; }
  .step:last-child { border-bottom: none; }
  .field-row { grid-template-columns: 1fr; }
}

/* =======================================================
   INTERACTIVE WIDGETS & POP-UPS (NEW FEATURES)
   ======================================================= */

/* 1. Floating Nausea Meter Widget */
.nausea-meter-widget {
  position: fixed; bottom: 28px; left: 28px; z-index: 150;
  background: #FFFDF5; border: 4px solid #1a1008; border-radius: 16px;
  padding: 14px 18px; box-shadow: 6px 6px 0 #1a1008;
  display: flex; flex-direction: column; gap: 8px; width: 220px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nausea-meter-widget.collapsed { transform: translateY(calc(100% - 30px)); }
.nausea-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.nausea-title { font-family: 'Bangers', cursive; font-size: 1.1rem; letter-spacing: 1px; color: #1a1008; }
.nausea-toggle-icon { font-size: 0.8rem; transition: transform 0.3s; }
.nausea-meter-widget.collapsed .nausea-toggle-icon { transform: rotate(180deg); }

.nausea-bar-container {
  width: 100%; height: 16px; background: #eee; border: 3px solid #1a1008;
  border-radius: 20px; overflow: hidden; position: relative;
}
.nausea-bar-fill {
  height: 100%; width: 0%; background: #A8E063; transition: width 0.4s ease, background-color 0.4s ease;
}
.nausea-status { font-weight: 700; font-size: 0.85rem; color: #1a1008; text-align: center; }

.ginger-feed-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #FFE045; border: 3px solid #1a1008; border-radius: 8px;
  padding: 6px 12px; font-family: 'Bangers', cursive; font-size: 1rem;
  letter-spacing: 1px; cursor: pointer; box-shadow: 2px 2px 0 #1a1008;
  transition: all 0.15s;
}
.ginger-feed-btn:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 #1a1008; }
.ginger-feed-btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 #1a1008; }

@media(max-width:600px){
  .nausea-meter-widget { bottom: 16px; left: 16px; width: 170px; padding: 10px; }
  .nausea-title { font-size: 0.95rem; }
  .ginger-feed-btn { font-size: 0.85rem; padding: 4px 8px; }
}

/* 2. Humorous Toast Warning Pop-ups */
.puki-toast {
  position: fixed; top: 80px; right: 28px; z-index: 1000;
  background: #FFFDF5; border: 4px solid #1a1008; border-radius: 12px;
  padding: 16px 20px; box-shadow: 6px 6px 0 #1a1008; max-width: 340px;
  display: flex; gap: 14px; align-items: flex-start;
  animation: slide-in-toast 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.puki-toast.closing {
  animation: slide-out-toast 0.3s ease forwards;
}
.toast-avatar { font-size: 2.5rem; flex-shrink: 0; }
.toast-content h4 { font-family: 'Bangers', cursive; font-size: 1.3rem; margin-bottom: 4px; color: #FF6B9D; }
.toast-content p { font-size: 0.9rem; font-weight: 700; color: #1a1008; line-height: 1.4; }
.toast-close { background: none; border: none; font-size: 1.1rem; font-weight: 700; cursor: pointer; margin-left: auto; padding: 0; }

@keyframes slide-in-toast {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slide-out-toast {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

/* 3. Dizzy Screen Tint Overlay */
.dizzy-tint {
  position: fixed; inset: 0; pointer-events: none; z-index: 900;
  background-image: radial-gradient(circle, rgba(168, 224, 99, 0.08) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0; transition: opacity 0.5s ease;
}
body.dizzy-active .dizzy-tint { opacity: 1; }
body.dizzy-active .comic-panel, body.dizzy-active .stat-card, body.dizzy-active .tip-card, body.dizzy-active .story-card, body.dizzy-active .game-card {
  animation: dizzy-drift 4s ease-in-out infinite alternate;
}
body.dizzy-active .comic-panel:nth-child(even), body.dizzy-active .tip-card:nth-child(even), body.dizzy-active .story-card:nth-child(even) {
  animation-delay: 1.5s;
}

@keyframes dizzy-drift {
  0% { transform: rotate(-0.5deg) translate(-2px, -1px); }
  50% { transform: rotate(0.5deg) translate(2px, 1px); }
  100% { transform: rotate(-0.8deg) translate(-1px, 2px); }
}

/* 4. Interactive Bag Packer Widget (Survival Page) */
.bag-packer-widget {
  background: #FFFDF5; border: 6px solid #1a1008; border-radius: 16px;
  padding: 32px; box-shadow: 6px 6px 0 #1a1008; max-width: 800px; margin: 40px auto 0;
}
.packer-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.packer-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.packer-item {
  background: #FFF9E8; border: 3px solid #1a1008; border-radius: 12px;
  padding: 12px; text-align: center; cursor: pointer; box-shadow: 3px 3px 0 #1a1008;
  transition: all 0.15s; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.packer-item:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #1a1008; }
.packer-item.packed { background: #A8E063; }
.packer-item.trigger-packed { background: #FF6B9D; }
.p-item-emoji { font-size: 2.2rem; }
.p-item-name { font-family: 'Bangers', cursive; font-size: 0.9rem; letter-spacing: 0.5px; }

.packer-preview {
  background: #1a1008; color: #FFFDF5; border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: 6px 6px 0 #A8E063; min-height: 280px; justify-content: space-between;
  position: relative; overflow: hidden;
}
.packer-preview::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle,#ffffff06 1.5px,transparent 1.5px); background-size:14px 14px; }
.puki-packer-avatar { font-size: 5rem; animation: float 3s ease-in-out infinite; position: relative; z-index: 2; }
.puki-packer-bubble {
  background: #FFFDF5; color: #1a1008; border: 3px solid #1a1008; border-radius: 12px;
  padding: 10px 14px; font-weight: 700; font-size: 0.9rem; margin-top: 14px;
  position: relative; z-index: 2; box-shadow: 3px 3px 0 #FFE045;
}
.puki-packer-bubble::after {
  content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-top: 12px solid #1a1008;
}
.bag-contents { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; justify-content: center; }
.bag-tag { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); border-radius: 20px; padding: 3px 10px; font-size: 0.85rem; font-weight: 700; }

@media(max-width:700px){
  .packer-layout { grid-template-columns: 1fr; }
  .packer-preview { min-height: auto; }
}

/* =======================================================
   ANIMATIONS
   ======================================================= */
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes burst-wobble {
  0%,100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.08); }
}
@keyframes confetti-fall {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}
@keyframes puki-shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: translate(-4px, -2px) rotate(-3deg); }
  20%, 40%, 60%, 80% { transform: translate(4px, 2px) rotate(3deg); }
}
.puki-shake { animation: puki-shake 0.5s ease-in-out; }
.puki-spin { animation: puki-spin-anim 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes puki-spin-anim {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
  100% { transform: rotate(360deg) scale(1); }
}

/* ===== NEW MASCOT REDESIGN & INTERACTIVE STYLES ===== */
.puki-pigtail-left {
  transform-origin: 82px 130px;
  animation: sway-left 2.5s ease-in-out infinite alternate;
}
.puki-pigtail-right {
  transform-origin: 238px 130px;
  animation: sway-right 2.5s ease-in-out infinite alternate;
}
@keyframes sway-left {
  0% { transform: rotate(-6deg); }
  100% { transform: rotate(6deg); }
}
@keyframes sway-right {
  0% { transform: rotate(6deg); }
  100% { transform: rotate(-6deg); }
}

#puki-dizzy-halo {
  display: none;
  transform-origin: 160px 40px;
  animation: spin-halo 4s linear infinite;
}
body.dizzy-active #puki-dizzy-halo {
  display: block;
}
@keyframes spin-halo {
  to { transform: rotate(360deg); }
}

#puki-mouth-happy, #puki-mouth-queasy, #puki-mouth-dizzy, #puki-mouth-vomit {
  display: none;
}

/* Vomit Particle System */
.vomit-particle {
  position: fixed;
  font-size: 2rem;
  pointer-events: none;
  z-index: 10000;
  animation: fly-particle 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}
@keyframes fly-particle {
  0% { transform: translate(0, 0) scale(0.5) rotate(0deg); opacity: 1; }
  20% { transform: translate(var(--dx20), var(--dy20)) scale(1.2) rotate(var(--rot20)); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0) rotate(var(--rot)); opacity: 0; }
}
