/* ChloReform Studios - Compact Full Stylesheet */

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

/* Core Body */
body {
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #00ff88;
  min-height: 100vh;
  line-height: 1.5;
}

/* Landing Page - Compact */
.landing {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 20px;
  text-align: center;
}

.landing header h1 {
  font-size: 2.8rem;
  text-shadow: 0 0 25px #00ff88;
  margin-bottom: 10px;
  animation: glow 2s ease-in-out infinite alternate;
}

.landing header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.visitor-info, .user-actions {
  margin: 25px 0;
  padding: 20px;
  border-left: 4px solid #00ff88;
}

.action-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.action-grid button {
  background: #111;
  border: 2px solid #00ff88;
  color: #00ff88;
  padding: 14px 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 140px;
}

.action-grid button:hover {
  background: #00ff88;
  color: #000;
  box-shadow: 0 0 20px #00ff88;
}

.landing footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  opacity: 0.8;
}

.landing footer a {
  color: #00ff88;
  text-decoration: none;
}

/* Page Headers */
h1 {
  font-size: 2.8rem;
  text-shadow: 0 0 20px #00ff88;
  margin-bottom: 15px;
  text-align: center;
  animation: glow 2s ease-in-out infinite alternate;
}

h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* Canvas */
#threshold, #map {
  display: block;
  margin: 20px auto;
  border: 2px solid #00ff88;
  background: #111;
  cursor: pointer;
}

/* Sections */
.map-section, .dewey-cabinet, .rolladew-lobby {
  margin: 30px 0;
  text-align: center;
  padding: 25px;
}

/* Dewey Cabinet */
.cabinet-drawers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.cabinet-drawers button {
  background: #222;
  border: 2px solid #00ff88;
  color: #00ff88;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  min-width: 120px;
  transition: all 0.3s;
}

.cabinet-drawers button:hover {
  background: #00ff88;
  color: #111;
  box-shadow: 0 0 15px #00ff88;
}

/* Rolla-Dew & Grids */
.rolladew-lobby {
  border: 3px solid #00ff88;
  background: rgba(17, 17, 17, 0.95);
  border-radius: 8px;
}

.lobby-grid, .settings-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.lobby-grid button, .settings-grid button {
  padding: 14px 24px;
  font-weight: bold;
  min-width: 140px;
  border-radius: 4px;
}

/* Animations */
@keyframes glow {
  from { text-shadow: 0 0 20px #00ff88; }
  to { text-shadow: 0 0 30px #00ff88, 0 0 40px #00ff88; }
}

/* Responsive - No Scroll */
@media (max-width: 768px) {
  .landing { padding: 20px 15px; }
  .landing header h1 { font-size: 2.2rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.5rem; }
  p { font-size: 1rem; }
  .action-grid, .lobby-grid, .cabinet-drawers { 
    flex-direction: column; 
    align-items: center; 
    gap: 12px; 
  }
  canvas { 
    max-width: 95vw !important; 
    height: auto !important; 
  }
  .rolladew-lobby { padding: 20px; }
}
