/* ==========================================================================
   Brainstorm SMG — Core Stylesheet (Vanilla CSS, Glassmorphic Dashboard)
   ========================================================================== */

:root {
  --bg-primary: #06060b;
  --bg-secondary: #0d0d18;
  --glass-bg: rgba(13, 13, 24, 0.45);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-glow: rgba(255, 255, 255, 0.02);
  
  /* Color Tokens */
  --text-primary: #f1f1f6;
  --text-secondary: #8c8c9e;
  --text-muted: #575765;
  
  --accent-cyan: hsl(190, 100%, 55%);
  --accent-purple: hsl(270, 95%, 65%);
  --accent-blue: hsl(215, 100%, 60%);
  --accent-green: hsl(145, 95%, 55%);
  --accent-orange: hsl(18, 95%, 60%);
  --accent-red: hsl(350, 95%, 58%);
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

/* Background Ambient Visuals */
.stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.glow-bg {
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(126, 34, 206, 0.15) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 100%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* Shell Layout */
.shell {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  margin-bottom: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: var(--font-mono);
}

.logo-accent {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.system-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 15px var(--accent-green); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Main Grid Layout */
.main-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  flex: 1;
  margin-bottom: 24px;
}

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

/* Vault History Panel */
.vault-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 160px);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.panel-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.vault-count {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: rgba(255,255,255,0.06);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--accent-cyan);
}

.panel-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 20px;
}

.vault-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
}

/* Custom Scrollbar for Vault list */
.vault-list::-webkit-scrollbar {
  width: 4px;
}
.vault-list::-webkit-scrollbar-track {
  background: transparent;
}
.vault-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.vault-placeholder {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding: 40px 10px;
  border: 1px dashed rgba(255,255,255,0.05);
  border-radius: 12px;
  line-height: 1.4;
}

/* Vault Items */
.vault-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vault-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  transform: translateX(2px);
}

.vault-item.active {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

.vault-item-category {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.vault-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Center Panel: Engine */
.engine-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-bar::-webkit-scrollbar {
  height: 0px;
}

.filter-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.1);
}

.filter-btn.active {
  background: var(--text-primary);
  color: var(--bg-primary);
  font-weight: 600;
  border-color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Idea Card */
.idea-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  flex: 1;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.idea-card.loading {
  opacity: 0.6;
  transform: translateY(4px) scale(0.995);
  filter: blur(1px);
}

.card-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(126, 34, 206, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Placeholder card state */
.idea-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  max-width: 500px;
  margin: 40px auto;
}

.placeholder-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.idea-placeholder h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.idea-placeholder p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pulse-trigger-btn {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(126, 34, 206, 0.4);
  transition: var(--transition-smooth);
}

.pulse-trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(126, 34, 206, 0.6);
}

/* Card Content State */
.idea-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.idea-content.hidden {
  display: none !important;
}

.card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.chip-category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.chip-difficulty {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-purple);
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.2);
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

/* Difficulty Variant colors */
.chip-difficulty.mid { color: var(--accent-green); background: rgba(34, 197, 94, 0.08); border-color: rgba(34, 197, 94, 0.2); }
.chip-difficulty.senior { color: var(--accent-orange); background: rgba(249, 115, 22, 0.08); border-color: rgba(249, 115, 22, 0.2); }
.chip-difficulty.master { color: var(--accent-purple); background: rgba(147, 51, 234, 0.08); border-color: rgba(147, 51, 234, 0.2); }
.chip-difficulty.architect { color: var(--accent-red); background: rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.2); }

.idea-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.idea-tagline {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--glass-border), transparent);
}

.idea-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idea-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

.section-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
}

/* Architecture pipeline timeline visual */
.pipeline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-left: 20px;
  margin-top: 6px;
}

.pipeline-list::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
  opacity: 0.2;
}

.pipeline-step {
  position: relative;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.pipeline-step::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--bg-primary);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-cyan);
}

.pipeline-step:nth-child(even)::before {
  border-color: var(--accent-purple);
  box-shadow: 0 0 6px var(--accent-purple);
}

/* Tech Chips */
.tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-chip {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px 12px;
  border-radius: 8px;
}

/* Innovation Accent section */
.innovation-section {
  background: radial-gradient(circle at 1% 1%, rgba(126, 34, 206, 0.05) 0%, transparent 100%);
  border: 1px solid rgba(126, 34, 206, 0.15);
  padding: 20px;
  border-radius: 16px;
}

.innovation-section h4 {
  color: var(--accent-purple);
}

/* Engine Button */
.action-bar {
  display: flex;
  justify-content: center;
}

.engine-trigger-btn {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255,255,255,0.06);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 56px;
}

.engine-trigger-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
}

.engine-trigger-btn:disabled {
  background: var(--text-muted);
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
  box-shadow: none;
}

/* Spinner Loader */
.btn-loader {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.btn-loader.hidden {
  display: none !important;
}

.spinner-dot {
  width: 6px;
  height: 6px;
  background-color: var(--bg-primary);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) { animation-delay: -0.32s; }
.spinner-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Footer */
.footer {
  text-align: center;
  padding: 24px 0 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  border-top: 1px solid rgba(255,255,255,0.02);
  margin-top: 40px;
}

/* ==========================================================================
   SMG Clash Arena & Tab Engine Styles
   ========================================================================== */

/* Engine Tabs */
.engine-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Pane Management */
.view-pane {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.view-pane.hidden {
  display: none !important;
}

/* Clash Setup Card */
.clash-setup-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clash-setup-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.clash-setup-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: -10px;
}

.clash-inputs-group {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 16px;
}

@media (max-width: 768px) {
  .clash-inputs-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .clash-vs-badge {
    margin: 8px auto !important;
  }
}

.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-wrap.full-width {
  grid-column: 1 / -1;
}

.input-wrap label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
}

.input-wrap input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.input-wrap input:focus {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px rgba(255,255,255,0.03);
}

.clash-vs-badge {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-purple);
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.2);
  padding: 8px 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.2);
  margin-bottom: 2px;
}

.clash-commence-btn {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(126, 34, 206, 0.3);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

.clash-commence-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(126, 34, 206, 0.5);
}

/* Clash Card Base */
.clash-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.clash-card.loading {
  opacity: 0.65;
  transform: translateY(4px) scale(0.995);
  filter: blur(1px);
}

.clash-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.clash-content.hidden {
  display: none !important;
}

.clash-domain-header {
  display: flex;
  justify-content: center;
}

.clash-category-chip {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 6px 16px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Side-by-side Profiles */
.combatants-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .combatants-profiles {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-card.profile-a {
  border-left: 3px solid var(--accent-cyan);
}

.profile-card.profile-b {
  border-left: 3px solid var(--accent-purple);
}

.profile-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.profile-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-section h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
}

/* Metrics and Progress Bars */
.metrics-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-label-group {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 500;
}

.metric-val {
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

.metric-bar {
  height: 6px;
  background: rgba(255,255,255,0.03);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.metric-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1s cubic-bezier(0.1, 0.8, 0.1, 1);
}

.profile-a .metric-fill {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.profile-b .metric-fill {
  background: var(--accent-purple);
  box-shadow: 0 0 8px var(--accent-purple);
}

/* Abilities and Asset list style */
.assets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.assets-list li {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.4;
  position: relative;
  padding-left: 18px;
}

.assets-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 0.75rem;
}

.profile-b .assets-list li::before {
  color: var(--accent-purple);
}

.assets-list.weaknesses li::before {
  content: "⚠";
  color: var(--accent-red);
}

/* Winner declaration card */
.winner-board {
  background: radial-gradient(circle at 1% 1%, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
  border: 1px solid rgba(34, 197, 94, 0.15);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.05);
}

.winner-badge {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-green);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 6px 18px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.15);
}

.winner-verdict-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 750px;
  font-weight: 400;
}

