/* © 2026 Dhanraj Jadhav. All Rights Reserved.
   Designed & Developed by Dhanraj Jadhav. */
/* ==========================================================================
   MINECRAFT HACKATHON - HIGH IMMERSION DESIGN SYSTEM
   Pixel-perfect Minecraft aesthetic with modern web elegance & horizontal scroll
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Press+Start+2P&family=Silkscreen:wght@400;700&family=VT323&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Minecraft Palette */
  --mc-dark-obsidian: #0e1117;
  --mc-stone-dark: #1b1e24;
  --mc-stone-base: #2e333d;
  --mc-stone-border: #444b59;
  --mc-stone-highlight: #60687a;
  
  --mc-green-bright: #55ff55;
  --mc-green-emerald: #22c55e;
  --mc-green-dark: #15803d;
  --mc-green-glow: rgba(85, 255, 85, 0.45);
  
  --mc-diamond-cyan: #55ffff;
  --mc-diamond-glow: rgba(85, 255, 255, 0.4);
  --mc-gold-yellow: #facc15;
  --mc-gold-dark: #ca8a04;
  --mc-redstone-red: #ef4444;
  --mc-wood-plank: #684826;
  --mc-wood-dark: #432a13;
  --mc-wood-light: #94693a;

  --mc-font-pixel: 'Silkscreen', 'Press Start 2P', monospace;
  --mc-font-subpixel: 'VT323', monospace;
  --mc-font-ui: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --mc-font-title: 'Cinzel', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
}

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--mc-dark-obsidian);
  color: #e2e8f0;
  font-family: var(--mc-font-ui);
  line-height: 1.5;
}

/* ==========================================================================
   CINEMATIC INTRO VIDEO OVERLAY
   ========================================================================== */
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  overflow: hidden;
}

#intro-overlay.intro-fading {
  opacity: 0;
  pointer-events: none;
}

.intro-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.intro-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
}

.intro-hud {
  position: absolute;
  bottom: 88px;
  display: flex;
  gap: 20px;
  z-index: 10;
}

.intro-title-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.intro-main-title {
  font-family: var(--mc-font-pixel);
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  text-shadow: 0 4px 0 #3f3f3f, 0 8px 24px rgba(0,0,0,0.9), 0 0 30px var(--mc-green-bright);
  letter-spacing: 4px;
  animation: introLogoPulse 2.5s infinite alternate ease-in-out;
}

.intro-subtitle {
  font-family: var(--mc-font-pixel);
  font-size: 1.1rem;
  color: var(--mc-gold-yellow);
  letter-spacing: 3px;
  margin-top: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

@keyframes introLogoPulse {
  0% { transform: scale(0.98); filter: drop-shadow(0 0 10px rgba(85,255,85,0.4)); }
  100% { transform: scale(1.02); filter: drop-shadow(0 0 35px rgba(85,255,85,0.9)); }
}

/* ==========================================================================
   LIVING MINECRAFT BACKGROUND ENVIRONMENT
   ========================================================================== */
   /* © 2026 Dhanraj Jadhav. All Rights Reserved.
   Designed & Developed by Dhanraj Jadhav. */
#bg-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.living-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(1.15) contrast(1.1);
  transform: scale(1.04);
  transition: filter 1s ease;
}

.living-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 40%, rgba(20, 24, 33, 0.4) 0%, rgba(10, 12, 16, 0.88) 80%);
  pointer-events: none;
}

.living-bg-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 120px rgba(0,0,0,0.85);
  pointer-events: none;
}

#mc-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ==========================================================================
   MINECRAFT HEADER HUD
   ========================================================================== */
#mc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 72px;
  background: rgba(18, 22, 29, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid #333a48;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-box {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: var(--mc-font-pixel);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 0 #2b2b2b, 0 0 10px rgba(255,255,255,0.4);
}

.nav-logo-sub {
  font-family: var(--mc-font-pixel);
  font-size: 0.72rem;
  color: var(--mc-green-bright);
  letter-spacing: 2px;
  margin-top: -2px;
  text-shadow: 0 0 8px var(--mc-green-glow);
}

.nav-links-cluster {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--mc-font-pixel);
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: none;
  letter-spacing: 1.5px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(255,255,255,0.7);
}

.nav-link.active-nav {
  color: var(--mc-green-bright);
  text-shadow: 0 0 12px var(--mc-green-glow);
}

.nav-link.active-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--mc-green-bright);
  box-shadow: 0 0 8px var(--mc-green-bright);
}

.header-action-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   MINECRAFT 3D BUTTON DESIGN SYSTEM (Stone, Green, Gold)
   ========================================================================== */
.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--mc-font-pixel);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  position: relative;
  border: none;
  outline: none;
  background: #3f4756;
  border-top: 3px solid #6b778c;
  border-left: 3px solid #6b778c;
  border-bottom: 3px solid #1e232b;
  border-right: 3px solid #1e232b;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.12s ease;
  image-rendering: pixelated;
}

.mc-btn:hover {
  background: #4d576a;
  border-top-color: #7d8aa3;
  border-left-color: #7d8aa3;
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

.mc-btn:active {
  transform: translateY(2px);
  border-top: 3px solid #1e232b;
  border-left: 3px solid #1e232b;
  border-bottom: 3px solid #6b778c;
  border-right: 3px solid #6b778c;
}

.mc-btn-green {
  background: #238b38;
  border-top: 3px solid #4ade80;
  border-left: 3px solid #4ade80;
  border-bottom: 3px solid #124e1e;
  border-right: 3px solid #124e1e;
  text-shadow: 1px 2px 0 #0d3815;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.mc-btn-green:hover {
  background: #2aa844;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.6);
}

.mc-btn-gold {
  background: #c28813;
  border-top: 3px solid #fde047;
  border-left: 3px solid #fde047;
  border-bottom: 3px solid #634304;
  border-right: 3px solid #634304;
  color: #2b1a03;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
  font-weight: bold;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
}

.mc-btn-gold:hover {
  background: #d99916;
  box-shadow: 0 0 24px rgba(253, 224, 71, 0.7);
}

.mc-btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ==========================================================================
   HORIZONTAL BIOME VIEWPORT & SECTIONS
   ========================================================================== */
#viewport-container {
  position: absolute;
  top: 72px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 72px - 48px);
  overflow: hidden;
  z-index: 10;
}

#biome-track {
  display: flex;
  width: 700vw;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.2, 0.85, 0.32, 1.05);
  will-change: transform;
}

.biome-section {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 60px 96px 60px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar for inner section overflow */
.biome-section::-webkit-scrollbar {
  width: 6px;
}
.biome-section::-webkit-scrollbar-thumb {
  background: #3a4253;
  border-radius: 3px;
}

/* ==========================================================================
   SECTION 1: HERO HOME (EXACT MATCH TO REFERENCE)
   ========================================================================== */
.hero-content-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  margin: auto;
}

/* Big 3D Voxel Minecraft Hackathon Logo */
.hero-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.voxel-main-title {
  font-family: var(--mc-font-pixel);
  font-size: clamp(2.0rem, 4.8vw, 3.8rem);
  font-weight: 900;
  color: #e5e7eb;
  letter-spacing: 4px;
  text-shadow: 
    0 2px 0 #d1d5db,
    0 4px 0 #9ca3af,
    0 6px 0 #6b7280,
    0 8px 0 #4b5563,
    0 10px 0 #374151,
    0 12px 16px rgba(0,0,0,0.85);
  margin-bottom: -10px;
  transform: perspective(600px) rotateX(10deg);
}

.voxel-sub-title {
  font-family: var(--mc-font-pixel);
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  font-weight: 900;
  color: #4ade80;
  letter-spacing: 6px;
  text-shadow: 
    0 2px 0 #22c55e,
    0 4px 0 #16a34a,
    0 6px 0 #15803d,
    0 8px 0 #166534,
    0 10px 0 #14532d,
    0 14px 24px rgba(0,0,0,0.9),
    0 0 35px rgba(74, 222, 128, 0.6);
  transform: perspective(600px) rotateX(10deg);
}

/* Wooden Banner Subtitle */
.wood-banner {
  background: #5a3818;
  border-top: 4px solid #8e5827;
  border-left: 4px solid #8e5827;
  border-bottom: 4px solid #331f0b;
  border-right: 4px solid #331f0b;
  padding: 8px 32px;
  margin-top: 16px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.7), inset 0 2px 0 rgba(255,255,255,0.15);
  transform: rotate(-0.5deg);
}

.wood-banner-text {
  font-family: var(--mc-font-pixel);
  font-size: clamp(0.85rem, 1.4vw, 1.15rem);
  color: #fde047;
  letter-spacing: 3px;
  text-shadow: 2px 2px 0 #2b1805;
}

.hero-description {
  max-width: 680px;
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

/* Hero Characters Stage (Steve, Alex, Crafting table, Pig, Torches) */
.hero-stage {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.character-steve {
  position: absolute;
  left: 4%;
  bottom: 14%;
  width: 220px;
  animation: floatIdleLeft 4s infinite ease-in-out;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}

.character-alex {
  position: absolute;
  right: 4%;
  bottom: 14%;
  width: 240px;
  animation: floatIdleRight 4.2s infinite ease-in-out 0.5s;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}

@keyframes floatIdleLeft {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes floatIdleRight {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

/* 4 Stat / Info Cards at Bottom of Hero */
.hero-stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 960px;
  margin-top: 28px;
}

.info-card {
  background: rgba(24, 28, 36, 0.92);
  border-top: 3px solid #4a5468;
  border-left: 3px solid #4a5468;
  border-bottom: 3px solid #12151c;
  border-right: 3px solid #12151c;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  box-shadow: 0 8px 18px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: #60a5fa;
}

.info-card-icon {
  font-size: 1.6rem;
  color: var(--mc-green-bright);
}

.info-card-label {
  font-family: var(--mc-font-pixel);
  font-size: 0.68rem;
  color: #94a3b8;
  letter-spacing: 1px;
}

.info-card-value {
  font-family: var(--mc-font-pixel);
  font-size: 0.85rem;
  color: #fff;
  margin-top: 2px;
}

/* ==========================================================================
   SECTION 2: ABOUT THE HACKATHON
   ========================================================================== */
.about-grid-wrapper {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin: auto;
}

.voxel-island-display {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.island-graphic {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.85));
  animation: islandFloat 5s infinite ease-in-out;
}

@keyframes islandFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.about-text-content {
  text-align: left;
}

.section-tag {
  font-family: var(--mc-font-pixel);
  font-size: 0.85rem;
  color: var(--mc-green-bright);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow: 0 0 10px var(--mc-green-glow);
}

.section-title {
  font-family: var(--mc-font-pixel);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 #2b2b2b, 0 6px 18px rgba(0,0,0,0.8);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--mc-green-bright);
}

.section-body {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 24px;
  background: rgba(20, 24, 32, 0.8);
  border-left: 4px solid var(--mc-green-bright);
  padding: 18px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* ==========================================================================
   SECTION 3: WHY PARTICIPATE (5 ITEM CARDS)
   ========================================================================== */
.why-participate-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto;
}

.items-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 36px;
}

.item-card {
  background: rgba(20, 24, 32, 0.95);
  border-top: 3px solid #3d4554;
  border-left: 3px solid #3d4554;
  border-bottom: 3px solid #11141a;
  border-right: 3px solid #11141a;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.item-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--mc-green-bright);
  box-shadow: 0 12px 28px rgba(0,0,0,0.8), 0 0 20px rgba(85,255,85,0.25);
}

.item-icon-wrapper {
  width: 68px;
  height: 68px;
  background: rgba(10, 12, 16, 0.8);
  border: 2px solid #2b313d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.8);
}

.item-svg-icon {
  width: 44px;
  height: 44px;
  image-rendering: pixelated;
}

.item-title {
  font-family: var(--mc-font-pixel);
  font-size: 0.85rem;
  color: var(--mc-green-bright);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.item-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 4: DETAILS & RULES (SIDE BY SIDE WITH CENTER SCENE)
   ========================================================================== */
.details-rules-wrapper {
  max-width: 1240px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin: auto;
}

.panel-container {
  background: rgba(20, 24, 32, 0.94);
  border-top: 3px solid #4a5468;
  border-left: 3px solid #4a5468;
  border-bottom: 3px solid #11141b;
  border-right: 3px solid #11141b;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.7);
}

.panel-header {
  font-family: var(--mc-font-pixel);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border-bottom: 2px solid #333c4d;
  padding-bottom: 10px;
}

.panel-header span {
  color: var(--mc-green-bright);
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.detail-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-icon {
  font-size: 1.25rem;
  color: var(--mc-green-bright);
  min-width: 24px;
}

.detail-label {
  font-family: var(--mc-font-pixel);
  font-size: 0.72rem;
  color: #94a3b8;
}

.detail-val {
  font-size: 0.88rem;
  color: #fff;
  margin-top: 2px;
}

/* Center Planning Scene */
.planning-scene-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.planning-graphic {
  width: 100%;
  max-width: 360px;
  border-radius: 4px;
  border: 3px solid #3d4554;
  box-shadow: 0 14px 32px rgba(0,0,0,0.85);
  animation: torchFlicker 4s infinite alternate ease-in-out;
}

@keyframes torchFlicker {
  0% { filter: drop-shadow(0 0 15px rgba(251, 146, 60, 0.4)); }
  100% { filter: drop-shadow(0 0 35px rgba(251, 146, 60, 0.75)); }
}

/* Rules list */
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.rule-badge {
  background: var(--mc-green-bright);
  color: #0c2711;
  font-family: var(--mc-font-pixel);
  font-size: 0.75rem;
  font-weight: bold;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #14532d;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.rule-text {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* ==========================================================================
   SECTION 5: AMAZING PRIZES AWAIT!
   ========================================================================== */
   /* © 2026 Dhanraj Jadhav. All Rights Reserved.
   Designed & Developed by Dhanraj Jadhav. */
.prizes-content-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  margin: auto;
}

.prizes-trophies-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-top: 36px;
  position: relative;
  z-index: 5;
}

.trophy-card {
  background: rgba(20, 24, 32, 0.94);
  border-top: 3px solid #4a5468;
  border-left: 3px solid #4a5468;
  border-bottom: 3px solid #11141b;
  border-right: 3px solid #11141b;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trophy-card.first-prize {
  border-color: #eab308;
  transform: scale(1.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.85), 0 0 30px rgba(234, 179, 8, 0.3);
  z-index: 6;
}

.trophy-card.first-prize:hover {
  transform: scale(1.12) translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.9), 0 0 45px rgba(234, 179, 8, 0.6);
}

.trophy-card:hover {
  transform: translateY(-8px);
}

.trophy-icon-wrapper {
  font-size: 3.2rem;
  margin-bottom: 12px;
}

.trophy-tier {
  font-family: var(--mc-font-pixel);
  font-size: 0.95rem;
  color: #e2e8f0;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.first-prize .trophy-tier {
  color: #facc15;
}

.trophy-amount {
  font-family: var(--mc-font-pixel);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.first-prize .trophy-amount {
  font-size: 1.9rem;
  color: #fef08a;
  text-shadow: 0 0 15px rgba(254, 240, 138, 0.6);
}

.trophy-perks {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* Guard Wolf & Diamond Chest side characters */
.prize-character-wolf {
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 140px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
}

.prize-diamond-chest {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 140px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
}

/* ==========================================================================
   SECTION 6: CTA BANNER & FAQ & REGISTRATION MODAL
   ========================================================================== */
.cta-faq-wrapper {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  gap: 32px;
}

.cta-end-banner {
  background: #19461f;
  border-top: 4px solid #4ade80;
  border-left: 4px solid #4ade80;
  border-bottom: 4px solid #0d2812;
  border-right: 4px solid #0d2812;
  padding: 32px 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 36px rgba(0,0,0,0.8), inset 0 2px 0 rgba(255,255,255,0.2);
}

.enderman-graphic {
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 110px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
}

.enchanting-table-graphic {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 120px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
}

.cta-banner-title {
  font-family: var(--mc-font-pixel);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.cta-banner-title span {
  color: #facc15;
}

.cta-banner-sub {
  font-size: 1rem;
  color: #dcfce7;
  max-width: 600px;
  margin-bottom: 24px;
}

/* FAQ Accordion */
.faq-container {
  width: 100%;
  max-width: 800px;
  margin-top: 10px;
}

.faq-item {
  background: rgba(20, 24, 32, 0.9);
  border: 2px solid #333c4d;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.faq-question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mc-font-pixel);
  font-size: 0.8rem;
  color: #e2e8f0;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--mc-green-bright);
}

.faq-arrow {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 16px 20px;
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--mc-green-bright);
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
  color: var(--mc-green-bright);
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   MINECRAFT XP BAR HUD & BIOME STATUS BAR (BOTTOM)
   ========================================================================== */
#mc-xp-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 48px;
  background: rgba(14, 17, 23, 0.95);
  border-top: 2px solid #2e3543;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
}

.hud-biome-badge {
  font-family: var(--mc-font-pixel);
  font-size: 0.72rem;
  color: #94a3b8;
  letter-spacing: 1px;
}

.hud-biome-badge span {
  color: var(--mc-green-bright);
}

/* Center XP Bar */
.mc-xp-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  position: relative;
}

.mc-xp-level-badge {
  font-family: var(--mc-font-pixel);
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--mc-green-bright);
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 0 0 8px var(--mc-green-glow);
  margin-bottom: 2px;
}

.mc-xp-track {
  width: 100%;
  height: 8px;
  background: #11141a;
  border: 1px solid #333a48;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.mc-xp-fill {
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, #22c55e, #84cc16, #55ff55);
  box-shadow: 0 0 10px var(--mc-green-glow);
  transition: width 0.4s ease;
}

.hud-controls-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-icon-btn {
  background: #252b37;
  border: 2px solid #444d5f;
  color: #e2e8f0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.hud-icon-btn:hover {
  background: #363e4f;
  color: var(--mc-green-bright);
  border-color: var(--mc-green-bright);
}

/* ==========================================================================
   REGISTRATION CRAFTING TABLE MODAL
   ========================================================================== */
#register-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#register-modal.modal-visible {
  display: flex;
}

.modal-crafting-box {
  background: #282e3b;
  border-top: 4px solid #5a6478;
  border-left: 4px solid #5a6478;
  border-bottom: 4px solid #11141a;
  border-right: 4px solid #11141a;
  width: 100%;
  max-width: 640px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.9);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-x {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ef4444;
  color: #fff;
  border: 2px solid #b91c1c;
  font-family: var(--mc-font-pixel);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-close-x:hover {
  background: #dc2626;
}

.modal-title {
  font-family: var(--mc-font-pixel);
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.reg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-family: var(--mc-font-pixel);
  font-size: 0.72rem;
  color: #cbd5e1;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.form-input, .form-select {
  width: 100%;
  background: #151922;
  border: 2px solid #3c4557;
  color: #fff;
  padding: 10px 14px;
  font-family: var(--mc-font-ui);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--mc-green-bright);
  box-shadow: 0 0 10px var(--mc-green-glow);
}

/* Success Banner */
.success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.achievement-unlocked {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1e2430;
  border: 2px solid var(--mc-gold-yellow);
  padding: 12px 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.ach-title {
  font-family: var(--mc-font-pixel);
  font-size: 0.75rem;
  color: var(--mc-gold-yellow);
}

.ach-desc {
  font-size: 0.85rem;
  color: #fff;
}

/* ==========================================================================
   SECTION: ADVENTURE FLOW PROGRESSION
   ========================================================================== */
.flow-adventure-map {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.prog-cards-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0 auto;
  position: relative;
  z-index: 5;
}

.prog-card {
  background: rgba(10, 14, 20, 0.93);
  border: 1.5px solid var(--mc-green-bright);
  border-radius: 12px;
  padding: 38px 24px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 15px rgba(34, 197, 94, 0.15);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.prog-card:hover {
  transform: translateY(-6px);
  border-color: #facc15;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(250, 204, 21, 0.25);
}

.card-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.badge-blue {
  background: radial-gradient(circle, #1e3a8a 0%, #090d16 100%);
  border: 3px solid #3b82f6;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.badge-gold {
  background: radial-gradient(circle, #78350f 0%, #090d16 100%);
  border: 3px solid #facc15;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.5);
}

.badge-bronze {
  background: radial-gradient(circle, #7c2d12 0%, #090d16 100%);
  border: 3px solid #eab308;
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.5);
}

.badge-icon {
  width: 38px;
  height: 38px;
  display: block;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mc-font-pixel);
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.card-tag-left {
  color: var(--mc-green-bright);
}

.card-tag-right {
  font-weight: bold;
}

.text-blue {
  color: #3b82f6;
}

.text-yellow {
  color: #facc15;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.card-main-title {
  font-family: var(--mc-font-pixel);
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--mc-green-bright);
  font-weight: 500;
  margin-bottom: 8px;
}

.card-price-tag {
  font-family: var(--mc-font-pixel);
  font-size: 0.65rem;
  color: var(--mc-green-bright);
}

.card-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0 0 16px 0;
}

.highlight-boxes-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.highlight-box {
  flex: 1;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  padding: 10px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.highlight-box-val {
  font-size: 1.1rem;
  font-weight: bold;
  font-family: var(--mc-font-pixel);
  margin-bottom: 2px;
}

.highlight-box-val.green-text {
  color: var(--mc-green-bright);
}

.highlight-box-val.emoji {
  font-size: 1.3rem;
  line-height: 1.1;
}

.highlight-box-title {
  font-family: var(--mc-font-pixel);
  font-size: 0.58rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.highlight-box-desc {
  font-size: 0.52rem;
  color: #64748b;
  line-height: 1.2;
}

.dotted-divider {
  border-top: 1.5px dotted rgba(255, 255, 255, 0.15);
  margin: 16px 0;
  width: 100%;
}

.card-section {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-sec-title {
  font-family: var(--mc-font-pixel);
  font-size: 0.7rem;
  color: var(--mc-green-bright);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 4px 0;
}

.card-item-box {
  background: rgba(30, 41, 59, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 8px 12px;
}

.item-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.item-desc {
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

.judging-items {
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
}

.next-step-box {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.next-step-content {
  text-align: left;
}

.next-step-title {
  font-family: var(--mc-font-pixel);
  font-size: 0.65rem;
  color: var(--mc-green-bright);
  margin: 0 0 2px 0;
}

.next-step-text {
  font-size: 0.68rem;
  color: #94a3b8;
  margin: 0;
}

.next-step-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  animation: bounceRight 1.5s infinite;
}

@keyframes bounceRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.expect-flow-grid {
  display: flex;
  gap: 16px;
  width: 100%;
}

.expect-list {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.expect-list li {
  font-size: 0.7rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flowchart-box {
  flex: 0.9;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.flow-step {
  font-size: 0.58rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
}

.flow-step.highlight-step {
  color: var(--mc-green-bright);
  font-weight: 600;
}

.flow-arrow {
  font-size: 0.55rem;
  color: #475569;
  line-height: 1;
}

.bottom-info-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  background: rgba(30, 41, 59, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: auto;
}

.bottom-info-icon {
  font-size: 1.1rem;
  line-height: 1.1;
}

.bottom-info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bottom-info-title {
  font-family: var(--mc-font-pixel);
  font-size: 0.65rem;
  color: var(--mc-green-bright);
  margin: 0;
}

.bottom-info-desc {
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1.35;
  margin: 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-size: 0.7rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1024px) {
  .prog-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 56px;
    margin-top: 60px;
  }
  .prog-card {
    width: 100%;
    max-width: 480px;
  }
}

/* ==========================================================================
   VIEWPORT SCROLL ENTRANCE ANIMATIONS
   ========================================================================== */
   /* © 2026 Dhanraj Jadhav. All Rights Reserved.
   Designed & Developed by Dhanraj Jadhav. */
.biome-section .animate-fade {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.biome-section .animate-slide-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.biome-section .animate-slide-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

/* Trigger animation when section is active */
.biome-section.active-biome .animate-fade,
.biome-section.active-biome .animate-slide-left,
.biome-section.active-biome .animate-slide-right {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delays */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-250 { transition-delay: 250ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-450 { transition-delay: 450ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }
.delay-700 { transition-delay: 700ms !important; }
.delay-750 { transition-delay: 750ms !important; }
.delay-800 { transition-delay: 800ms !important; }

/* Reduced Motion Support for Accessibility */
@media (prefers-reduced-motion: reduce) {
  .biome-section .animate-fade,
  .biome-section .animate-slide-left,
  .biome-section .animate-slide-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links-cluster { display: none; }
  .hero-stat-cards { grid-template-columns: repeat(2, 1fr); }
  .items-grid-container { grid-template-columns: repeat(3, 1fr); }
  .about-grid-wrapper { grid-template-columns: 1fr; }
  .details-rules-wrapper { grid-template-columns: 1fr; }
  .character-steve, .character-alex { display: none; }
  .prizes-trophies-row { flex-direction: column; }
  .trophy-card.first-prize { transform: scale(1); }
  .reg-form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: span 1; }
  .enderman-graphic, .enchanting-table-graphic { display: none; }
}

@media (max-width: 640px) {
  .items-grid-container { grid-template-columns: 1fr; }
  .hero-stat-cards { grid-template-columns: 1fr; }
  .biome-section { padding: 16px 20px 96px 20px; }
  .mc-xp-bar-wrapper { width: 140px; }
  .hud-biome-badge { display: none; }
  #mc-xp-footer { padding: 0 12px; }
  .hud-controls-cluster { gap: 6px; }
  .hud-icon-btn { width: 32px; height: 32px; font-size: 0.8rem; }
  .modal-crafting-box { padding: 16px; max-height: 95vh; }
}

/* Event Heads Contact Layout */
.event-heads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.contact-card {
  background: rgba(10, 14, 20, 0.9);
  border: 1.5px solid var(--mc-green-bright);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 0 8px rgba(34, 197, 94, 0.1);
  transition: all 0.2s ease;
}
/* © 2026 Dhanraj Jadhav. All Rights Reserved.
   Designed & Developed by Dhanraj Jadhav. */
.contact-card:hover {
  border-color: #facc15;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6), 0 0 12px rgba(250, 204, 21, 0.2);
}

.contact-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--mc-font-pixel);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-divider {
  width: 30px;
  height: 2px;
  background: #facc15;
  margin: 8px 0;
}

.contact-phone {
  font-size: 0.72rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
  font-family: monospace;
}

.contact-phone:hover {
  color: var(--mc-green-bright);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .event-heads-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Mobile Chrome Desktop Site position fix for Enter World button */
.mobile-chrome-desktop .intro-hud {
  top: 72% !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
/* © 2026 Dhanraj Jadhav. All Rights Reserved.
   Designed & Developed by Dhanraj Jadhav. */
