:root {
  /* Updated colors from new design system */
  --bg-primary: #0a0a0f;
  --bg-surface: #1a1a20;
  --bg-panel: #151518;
  --accent-primary: #fbbf24; /* yellow-400 */
  --accent-secondary: #f59e0b; /* yellow-500 */
  --accent-danger: #ef4444; /* red-500 */
  --accent-success: #10b981; /* emerald-500 */
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --border-color: #374151;
  --border-glow: rgba(251, 191, 36, 0.3);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #fbbf24, #f59e0b);
  --gradient-danger: linear-gradient(135deg, #ef4444, #dc2626);
  --gradient-success: linear-gradient(135deg, #10b981, #059669);
  --gradient-panel: linear-gradient(to bottom, #09090b, #18181b, #09090b);
  --gradient-glow: radial-gradient(circle, rgba(251, 191, 36, 0.1), transparent);
  
  /* Fonts */
  --font-primary: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-display: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-mono: 'Courier New', monospace;
  
  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-default: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

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

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  font-size: 14px;
}

/* Game Header */
.game-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(26, 26, 32, 0.95), rgba(21, 21, 24, 0.95));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent-primary);
  z-index: 1000;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
  background-image: url('carbon-fiber.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.game-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.9); /* Dark overlay */
  z-index: 1;
}

/* Ensure nav content stays above overlay */
.game-nav {
  position: relative;
  z-index: 2;
}

.game-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.game-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-image {
  width: 200px;
  height: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-primary);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  letter-spacing: 2px;
}

.logo-x {
  color: var(--accent-danger);
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -2px;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

/* Main Game Container */
.game-container {
  display: grid;
  grid-template-columns: 1fr 580px 1fr;
  gap: 1.5rem;
  padding: 50px 2rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
  min-height: calc(100vh - 100px);
}

.game-container {
  background-image: url('body-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.game-container {
  position: relative;
  z-index: 1;
}

.game-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.7); /* semi-transparent dark overlay */
  pointer-events: none;
  z-index: 2;
}

/* Ensure content stays above overlay */
.game-info-panel,
.auth-panel,
.live-feed-panel {
  position: relative;
  z-index: 3;
}



/* Left Panel - Game Info */
.game-info-panel {
  background: var(--gradient-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.game-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.main-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 0.9;
}

.title-line-1 {
  display: block;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-line-2 {
  display: block;
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.title-x {
  color: var(--accent-danger);
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.game-tagline {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.game-description h2 {
  color: var(--accent-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.game-description p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.game-features {
  list-style: none;
  margin-bottom: 2rem;
}

.game-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.game-features i {
  color: var(--accent-primary);
  width: 16px;
}

.game-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(251, 191, 36, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-primary);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Center Panel - Authentication */
.auth-panel {
  background: var(--gradient-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.auth-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.auth-container {
  position: relative;
  z-index: 2;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent-primary);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.input-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.input-group input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.btn-auth {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.auth-switch {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.auth-switch a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.auth-switch a:hover {
  color: var(--accent-secondary);
  text-shadow: 0 0 5px rgba(251, 191, 36, 0.3);
}

/* Right Panel - Live Feed */
.live-feed-panel {
  background: var(--gradient-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.live-feed-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.live-feed-header h3 {
  color: var(--accent-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-feed-header i {
  animation: pulse 2s infinite;
}

.live-battles,
.recent-activity,
.top-fighters {
  flex: 1;
}

.live-battles h4,
.recent-activity h4,
.top-fighters h4 {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.battle-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.battle-item:hover {
  border-color: var(--accent-primary);
  background: rgba(251, 191, 36, 0.05);
}

.battle-participants {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.fighter-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.fighter-name.attacker {
  color: var(--accent-danger);
}

.fighter-name.defender {
  color: var(--accent-success);
}

.vs {
  color: var(--accent-primary);
  font-weight: 800;
  font-family: var(--font-display);
}

.battle-status {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.time-left {
  color: var(--accent-primary);
  font-weight: 600;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.activity-text {
  color: var(--text-secondary);
}

.activity-text strong {
  color: var(--accent-primary);
}

.activity-time {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.leader-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.leader-item.rank-1 {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.1), rgba(255, 255, 255, 0.02));
  border-color: var(--accent-primary);
}

.leader-item.rank-2 {
  background: linear-gradient(90deg, rgba(156, 163, 175, 0.1), rgba(255, 255, 255, 0.02));
}

.leader-item.rank-3 {
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.1), rgba(255, 255, 255, 0.02));
}

.rank {
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--accent-primary);
  width: 30px;
}

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

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-login,
.btn-register {
  background: transparent;
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-login:hover,
.btn-register:hover {
  background: var(--gradient-primary);
  color: var(--bg-primary);
}

/* Background Effects */
.bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(251, 191, 36, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: grid-move 20s linear infinite;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.glow-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.glow-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15), transparent);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.glow-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

/* Footer */
.game-footer {
  background: var(--gradient-panel);
  border-top: 1px solid var(--border-color);
  padding: 1rem 2rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Wiki Styles - Add to existing CSS */

.wiki-content {
  position: relative;
  z-index: 2;
}

.wiki-navigation {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.wiki-nav-btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wiki-nav-btn:hover,
.wiki-nav-btn.active {
  background: rgba(251, 191, 36, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.wiki-sections {
  min-height: 400px;
  position: relative;
  max-height: 40vh;
  overflow: auto;
}

.wiki-section {
  display: none;
  animation: fadeIn 0.3s ease;
}

.wiki-section.active {
  display: block;
}

.wiki-section h3 {
  color: var(--accent-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.wiki-section h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.wiki-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.wiki-section ul {
  list-style: none;
  margin-bottom: 1rem;
}

.wiki-section li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}



.wiki-section strong {
  color: var(--accent-primary);
  font-weight: 600;
}

/* Wiki Components */
.wiki-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.wiki-stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  text-align: center;
}

.stat-title {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  font-family: var(--font-display);
}

.wiki-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wiki-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.wiki-feature i {
  color: var(--accent-primary);
  width: 16px;
  height: 16px;
}

.wiki-feature span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Stat Explanations */
.stat-explanations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-exp {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
}

.stat-exp strong {
  display: block;
  color: var(--accent-primary);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.stat-exp p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

/* Fight Info */
.fight-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fight-type,
.fight-rules {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
}

/* Duel Info */
.duel-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.duel-details,
.duel-actions,
.duel-rewards {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
}

.action-item {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 4px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.reward-win {
  color: var(--accent-success);
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 4px;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.reward-lose {
  color: var(--accent-danger);
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 4px;
  padding: 0.5rem;
  font-size: 0.8rem;
}

/* Tips List */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
}

.tip-item i {
  color: var(--accent-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.tip-item p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

/* Wiki Footer */
.wiki-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.wiki-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.resources-info h4 {
  color: var(--accent-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(1deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.8; }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .game-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 50px 1rem 1rem;
  }
  
  .auth-panel {
    order: -1;
  }
  
  .live-feed-panel {
    order: 1;
  }
}

@media (max-width: 768px) {
  .game-nav {
    padding: 1rem;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .auth-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-login,
  .btn-register {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .game-container {
    padding: 50px 1rem 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .fact-grid {
    grid-template-columns: 1fr;
  }
  
  .starting-kit {
    gap: 0.5rem;
  }
  
  .starter-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .starter-item span {
    text-align: left;
    margin-left: 0;
  }
  
  .loop-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .reward-breakdown {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }
  
  .game-info-panel,
  .auth-panel,
  .live-feed-panel {
    padding: 1rem;
  }
  
  .auth-buttons {
    gap: 0.25rem;
  }
  
  .btn-login,
  .btn-register {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent-primary); }

/* Add these new styles to the existing CSS file */

/* Game Premise Styling */
.game-premise {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.starting-kit {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.starter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  border-left: 3px solid var(--accent-primary);
}

.starter-item strong {
  color: var(--accent-primary);
  font-size: 0.9rem;
}

.starter-item span {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: right;
  flex: 1;
  margin-left: 1rem;
}

/* Game Atmosphere */
.game-atmosphere {
  margin: 1.5rem 0;
}

.game-atmosphere ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.game-atmosphere li {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  border-left: 3px solid var(--accent-danger);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Quick Facts Grid */
.quick-facts {
  margin-top: 2rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.fact-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  transition: var(--transition-fast);
}

.fact-item:hover {
  border-color: var(--accent-primary);
  background: rgba(251, 191, 36, 0.05);
}

.fact-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  font-family: var(--font-display);
}

.fact-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* Game Summary */
.game-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Core Systems */
.core-systems {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.system-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.system-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.system-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.system-header i {
  color: var(--accent-primary);
  width: 20px;
  height: 20px;
}

.system-header strong {
  color: var(--accent-primary);
  font-size: 1rem;
}

.system-item p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Gameplay Loop */
.gameplay-loop {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.loop-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.loop-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.step-number {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.loop-step strong {
  display: block;
  color: var(--accent-primary);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.loop-step p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

/* Unique Features */
.what-makes-unique {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.unique-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.unique-item {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  border-left: 3px solid var(--accent-success);
  font-size: 0.85rem;
  line-height: 1.4;
}

.unique-item strong {
  color: var(--accent-success);
}

/* Fight Types */
.fight-types {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fight-type {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.fight-details {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(251, 191, 36, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.fight-details p {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.fight-details p:last-child {
  margin-bottom: 0;
}

.victory-conditions,
.duel-mechanics {
  margin: 1rem 0;
}

.victory-conditions strong,
.duel-mechanics strong {
  display: block;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.victory-conditions ul,
.duel-mechanics ul {
  margin-left: 1rem;
}

.victory-conditions li,
.duel-mechanics li {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

/* Duel Rewards */
.duel-rewards {
  margin-top: 1rem;
}

.reward-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.winner-rewards {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 4px;
  padding: 0.75rem;
  font-size: 0.8rem;
}

.winner-rewards strong {
  color: var(--accent-success);
}

.loser-penalties {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 4px;
  padding: 0.75rem;
  font-size: 0.8rem;
}

.loser-penalties strong {
  color: var(--accent-danger);
}

/* Fight Strategy */
.fight-strategy {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.strategy-tips {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.strategy-item {
  padding: 0.75rem;
  background: rgba(251, 191, 36, 0.05);
  border-radius: 4px;
  border-left: 3px solid var(--accent-primary);
  font-size: 0.85rem;
  line-height: 1.4;
}

.strategy-item strong {
  color: var(--accent-primary);
}

/* Survival Tips */
.survival-tips {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tip-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.tip-category h4 {
  color: var(--accent-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Survival Warnings */
.survival-warnings {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.survival-warnings h4 {
  color: var(--accent-danger);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.warning-item {
  padding: 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 4px;
  border-left: 3px solid var(--accent-danger);
  font-size: 0.85rem;
  line-height: 1.4;
}

.warning-item strong {
  color: var(--accent-danger);
}