/* ===== CYBERSECURITY WORKSHOP THEME ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #0a0e17;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --border: #1e293b;
  --neon-green: #00ff88;
  --neon-cyan: #00d4ff;
  --neon-purple: #a855f7;
  --neon-red: #ff4757;
  --neon-orange: #ffa502;
  --neon-blue: #1e90ff;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --font-display: 'Orbitron', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scanline overlay for hacker feel */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 136, 0.015) 2px,
    rgba(0, 255, 136, 0.015) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ===== LANDING PAGE ===== */
.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.logo-section {
  text-align: center;
  margin-bottom: 3rem;
}

.logo-section h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 0.5rem;
}

.logo-section .subtitle {
  font-family: var(--font-mono);
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.landing-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2.5rem 3rem;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 220px;
}

.btn-landing:hover {
  border-color: var(--neon-green);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.btn-landing .icon {
  font-size: 3rem;
}

.btn-landing .label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-landing .desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== HOST PAGE ===== */
.host-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
}

.host-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.host-header h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--neon-green);
}

/* Game Selection Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.game-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--card-color, var(--neon-green));
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-color, var(--neon-green));
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.game-card .game-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.game-card .game-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.game-card .game-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.game-card .game-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Lobby */
.lobby-container {
  display: none;
  text-align: center;
}

.lobby-container.active { display: block; }
.game-selection.hidden { display: none; }
.game-play.hidden { display: none; }
.lesson-view.hidden { display: none; }
.results-view.hidden { display: none; }

.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.qr-code-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  display: inline-block;
}

.room-code {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.join-url {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-secondary);
  word-break: break-all;
}

.player-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.player-chip {
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  border-radius: 24px;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--neon-cyan);
  animation: chipAppear 0.3s ease;
}

@keyframes chipAppear {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.player-count {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), #00cc6a);
  color: var(--bg-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
}

.btn-danger {
  background: linear-gradient(135deg, var(--neon-red), #cc0022);
  color: white;
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 71, 87, 0.4);
}

.host-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

/* ===== GAME PLAY VIEW (HOST) ===== */
.game-play {
  text-align: center;
}

.question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.question-counter {
  font-family: var(--font-mono);
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.timer-bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.timer-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
  border-radius: 3px;
  transition: width 0.1s linear;
  width: 100%;
}

.timer-bar-fill.warning { background: var(--warning); }
.timer-bar-fill.danger { background: var(--danger); }

.question-context {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-wrap;
}

.question-prompt {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.answer-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  font-family: var(--font-mono);
}

.stat-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ===== LEADERBOARD ===== */
.leaderboard {
  max-width: 700px;
  margin: 0 auto;
}

.leaderboard h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--neon-green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.leaderboard-entry {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.leaderboard-entry.top-1 {
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
.leaderboard-entry.top-2 { border-color: #c0c0c0; }
.leaderboard-entry.top-3 { border-color: #cd7f32; }

.rank {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  min-width: 50px;
  text-align: center;
}

.top-1 .rank { color: #ffd700; }
.top-2 .rank { color: #c0c0c0; }
.top-3 .rank { color: #cd7f32; }

.leaderboard-name {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 1.2rem;
}

.leaderboard-score {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neon-green);
}

/* ===== LESSON VIEW ===== */
.lesson-slide {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lesson-slide .slide-type {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lesson-slide h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--neon-green);
}

.lesson-content {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.lesson-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-green);
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

.lesson-items {
  list-style: none;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.lesson-items li {
  padding: 1rem;
  border-left: 3px solid var(--neon-green);
  margin-bottom: 0.8rem;
  background: var(--bg-card);
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
}

.slide-progress {
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-top: 2rem;
}

/* ===== PLAYER PAGE ===== */
.player-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.player-header {
  text-align: center;
  margin-bottom: 2rem;
}

.player-header h1 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--neon-green);
}

/* Join Form */
.join-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.input-field {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  text-transform: uppercase;
}

.input-field:focus {
  border-color: var(--neon-green);
}

.input-field.nickname {
  text-transform: none;
}

.error-msg {
  color: var(--danger);
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.5rem;
}

/* Player Waiting */
.player-waiting {
  display: none;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.player-waiting.active { display: flex; }
.join-section.hidden { display: none; }
.player-game.hidden { display: none; }
.player-lesson.hidden { display: none; }
.player-results.hidden { display: none; }

.waiting-text {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--text-secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Player Answer Buttons */
.answer-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.answer-btn {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.answer-btn:hover {
  border-color: var(--neon-cyan);
  background: var(--bg-card-hover);
}

.answer-btn:active {
  transform: scale(0.98);
}

.answer-btn.selected {
  border-color: var(--neon-cyan);
  background: rgba(0, 212, 255, 0.15);
}

.answer-btn.correct {
  border-color: var(--success);
  background: rgba(34, 197, 94, 0.15);
}

.answer-btn.incorrect {
  border-color: var(--danger);
  background: rgba(239, 68, 68, 0.15);
}

/* Player password input */
.password-input-section {
  margin-top: 1.5rem;
}

.password-input-section input {
  width: 100%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--neon-green);
  outline: none;
  margin-bottom: 1rem;
}

.password-input-section input:focus {
  border-color: var(--neon-green);
}

/* Result feedback */
.result-feedback {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-feedback.correct-result {
  color: var(--success);
}

.result-feedback.incorrect-result {
  color: var(--danger);
}

.result-feedback .points {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
}

.result-feedback .result-text {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.result-feedback .explanation {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.5;
}

/* Player mini leaderboard */
.player-rank {
  text-align: center;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}

.player-rank .my-rank {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--neon-cyan);
}

.player-rank .my-score {
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

/* ===== PODIUM (Final Results) ===== */
.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.podium-place {
  text-align: center;
  border-radius: 12px 12px 0 0;
  padding: 1.5rem 2rem;
  min-width: 150px;
}

.podium-place.first {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.2), transparent);
  border: 2px solid #ffd700;
  border-bottom: none;
  min-height: 200px;
}

.podium-place.second {
  background: linear-gradient(180deg, rgba(192, 192, 192, 0.2), transparent);
  border: 2px solid #c0c0c0;
  border-bottom: none;
  min-height: 150px;
}

.podium-place.third {
  background: linear-gradient(180deg, rgba(205, 127, 50, 0.2), transparent);
  border: 2px solid #cd7f32;
  border-bottom: none;
  min-height: 120px;
}

.podium-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.podium-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.podium-score {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--neon-green);
  margin-top: 0.3rem;
}

/* ===== MULTI-SELECT (for privacy game) ===== */
.multi-select-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.multi-select-btn {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.multi-select-btn.selected {
  border-color: var(--neon-orange);
  background: rgba(255, 165, 2, 0.15);
}

.submit-multi {
  margin-top: 1rem;
}

/* ===== UTILITY ===== */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .game-grid {
    grid-template-columns: 1fr;
  }

  .question-prompt {
    font-size: 1.3rem;
  }

  .room-code {
    font-size: 2.5rem;
  }

  .host-container {
    padding: 1rem;
  }

  .podium-place {
    min-width: 100px;
    padding: 1rem;
  }

  .lesson-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.6); }
}

.animate-in {
  animation: slideUp 0.4s ease forwards;
}

.glow {
  animation: glow 2s infinite;
}

/* Timer display */
.timer-display {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.timer-display.warning { color: var(--warning); }
.timer-display.danger { color: var(--danger); }

/* ===== VISUAL MOCKUPS FOR GAME CONTEXTS ===== */

/* Email Mockup */
.email-mockup {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  font-family: var(--font-body);
}

.email-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #12122a;
  border-bottom: 1px solid #2a2a4a;
}

.email-toolbar .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.email-toolbar .dot.red { background: #ff5f57; }
.email-toolbar .dot.yellow { background: #ffbd2e; }
.email-toolbar .dot.green { background: #28c840; }

.email-toolbar .tab {
  margin-left: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: #1a1a2e;
  padding: 4px 12px;
  border-radius: 6px 6px 0 0;
}

.email-header {
  padding: 14px 16px;
  border-bottom: 1px solid #2a2a4a;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.email-from, .email-to, .email-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.email-from strong, .email-to strong {
  color: var(--text-primary);
}

.email-from .suspicious {
  color: var(--neon-red);
  font-weight: 600;
}

.email-from .legit {
  color: var(--neon-green);
}

.email-subject {
  padding: 10px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid #2a2a4a;
}

.email-body {
  padding: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.email-body .link {
  color: var(--neon-cyan);
  text-decoration: underline;
  word-break: break-all;
}

.email-body .cta-btn {
  display: inline-block;
  background: var(--neon-red);
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.email-body .cta-btn.legit-btn {
  background: var(--neon-blue);
}

/* SMS Mockup */
.sms-mockup {
  background: #1a1a2e;
  border-radius: 20px;
  padding: 16px;
  max-width: 340px;
  margin: 0 auto;
  border: 2px solid #2a2a4a;
  text-align: left;
}

.sms-header {
  text-align: center;
  margin-bottom: 12px;
}

.sms-sender {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.sms-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 8px;
}

.sms-bubble {
  background: #2a2a4a;
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.sms-bubble .link {
  color: var(--neon-cyan);
  text-decoration: underline;
  word-break: break-all;
}

/* Social Media Post Mockup */
.social-post {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.post-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.post-username {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.post-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.post-verified {
  color: var(--neon-cyan);
  font-size: 0.8rem;
}

.post-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.post-image {
  background: #2a2a4a;
  border-radius: 8px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.post-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Browser URL Bar Mockup */
.browser-bar {
  background: #12122a;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}

.browser-bar-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #0d0d20;
}

.browser-bar-top .dots {
  display: flex;
  gap: 5px;
}

.browser-bar-top .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.browser-url-field {
  flex: 1;
  background: #1a1a2e;
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-url-field .lock {
  color: var(--success);
}

.browser-url-field .no-lock {
  color: var(--danger);
}

.browser-url-field .url-text {
  color: var(--text-primary);
}

.browser-url-field .url-domain {
  color: var(--text-primary);
  font-weight: 600;
}

.browser-url-field .url-sus {
  color: var(--neon-red);
  font-weight: 600;
}

.browser-content {
  padding: 20px 16px;
  text-align: center;
}

/* WiFi Network List Mockup */
.wifi-list {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  max-width: 380px;
  margin: 0 auto;
}

.wifi-list-header {
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #12122a;
  border-bottom: 1px solid #2a2a4a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wifi-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #1e1e3a;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.wifi-item:last-child {
  border-bottom: none;
}

.wifi-item .wifi-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wifi-item .wifi-icon {
  font-size: 1.1rem;
}

.wifi-item .wifi-lock {
  font-size: 0.8rem;
  color: var(--success);
}

.wifi-item .wifi-open {
  font-size: 0.75rem;
  color: var(--warning);
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Profile Card Mockup */
.profile-card {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.profile-banner {
  height: 60px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
}

.profile-info {
  padding: 0 16px 16px;
  margin-top: -20px;
}

.profile-info .profile-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: white;
  border: 3px solid #1a1a2e;
  margin-bottom: 8px;
}

.profile-info .profile-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.profile-info .profile-handle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.profile-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
}

.profile-stats {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.profile-stats strong {
  color: var(--text-primary);
}

.profile-posts {
  padding: 12px 16px;
  border-top: 1px solid #2a2a4a;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.profile-posts .post-item {
  padding: 8px 0;
  border-bottom: 1px solid #1e1e3a;
}

.profile-posts .post-item:last-child {
  border-bottom: none;
}

/* Incident Alert Mockup */
.alert-mockup {
  background: #1a1a2e;
  border-left: 4px solid var(--neon-red);
  border-radius: 0 10px 10px 0;
  padding: 16px;
  text-align: left;
}

.alert-mockup.warning-alert {
  border-left-color: var(--warning);
}

.alert-mockup.info-alert {
  border-left-color: var(--neon-cyan);
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.alert-header .alert-icon {
  font-size: 1.3rem;
}

.alert-header .alert-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--neon-red);
}

.alert-mockup.warning-alert .alert-title {
  color: var(--warning);
}

.alert-mockup.info-alert .alert-title {
  color: var(--neon-cyan);
}

.alert-body {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.alert-meta {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
