/* ===================================
   WERWOLF - HORROR THEME
   Mobile-First Responsive Design
   =================================== */

:root {
  /* Color Palette - Dark Horror Theme */
  --color-night-sky: #0a0e1a;
  --color-dark-forest: #12141d;
  --color-midnight: #1a1d2e;
  --color-shadow: #242738;
  --color-fog: rgba(150, 160, 180, 0.05);
  
  --color-blood-red: #c41e3a;
  --color-blood-dark: #8b0000;
  --color-blood-glow: rgba(196, 30, 58, 0.4);
  
  --color-moon-glow: #e8f4ff;
  --color-moon-light: #d4e8ff;
  --color-amber: #ff8c42;
  --color-mystic-purple: #8b5cf6;
  --color-forest-green: #10b981;
  
  --color-text-primary: #e8ecf4;
  --color-text-secondary: #b0b8cc;
  --color-text-muted: #6b7280;
  
  /* Fonts */
  --font-title: 'Cinzel', serif;
  --font-horror: 'Creepster', cursive;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(196, 30, 58, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===================================
   RESET & BASE
   =================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===================================
   ANIMATED BACKGROUND
   =================================== */

.bg-night {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #0a0e1a 0%,
    #12141d 50%,
    #1a1d2e 100%
  );
}

/* Moon */
.moon {
  position: absolute;
  top: 8%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #fff 0%, #d4e8ff 60%, transparent 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 40px rgba(255, 255, 255, 0.5),
    0 0 80px rgba(212, 232, 255, 0.3),
    inset -10px -10px 20px rgba(0, 0, 0, 0.2);
  animation: moonPulse 8s ease-in-out infinite;
}

@keyframes moonPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.9;
  }
  50% { 
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Stars */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent),
    radial-gradient(1px 1px at 15% 90%, white, transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: starsFloat 60s linear infinite;
  opacity: 0.6;
}

@keyframes starsFloat {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Fog Layers */
.fog {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 300px;
  background: linear-gradient(
    to top,
    rgba(150, 160, 180, 0.1) 0%,
    transparent 100%
  );
  filter: blur(20px);
}

.fog-1 {
  animation: fogMove 30s ease-in-out infinite;
  opacity: 0.3;
}

.fog-2 {
  animation: fogMove 40s ease-in-out infinite reverse;
  opacity: 0.2;
  animation-delay: -10s;
}

.fog-3 {
  animation: fogMove 50s ease-in-out infinite;
  opacity: 0.15;
  animation-delay: -20s;
}

@keyframes fogMove {
  0%, 100% { transform: translateX(-50%); }
  50% { transform: translateX(0%); }
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-height: 100vh;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: var(--space-xl);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 900px;
  }
}

/* ===================================
   HEADER
   =================================== */

.header {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(
    135deg,
    rgba(26, 29, 46, 0.8) 0%,
    rgba(18, 20, 29, 0.9) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.wolf-icon {
  font-size: 3rem;
  animation: wolfHowl 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(196, 30, 58, 0.5));
}

@keyframes wolfHowl {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-5deg); }
  75% { transform: scale(1.1) rotate(5deg); }
}

.title-main {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-moon-glow);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
  text-shadow: 
    0 0 20px rgba(196, 30, 58, 0.5),
    0 0 40px rgba(196, 30, 58, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { 
    text-shadow: 
      0 0 20px rgba(196, 30, 58, 0.5),
      0 0 40px rgba(196, 30, 58, 0.3),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  50% { 
    text-shadow: 
      0 0 30px rgba(196, 30, 58, 0.7),
      0 0 60px rgba(196, 30, 58, 0.5),
      2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

.subtitle {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 768px) {
  .wolf-icon {
    font-size: 4rem;
  }
  .title-main {
    font-size: 3.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}

/* Status Badge */
.status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: var(--space-md);
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.status--info {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.status--info .status-pulse {
  background: #c4b5fd;
}

.status--success {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status--success .status-pulse {
  background: #6ee7b7;
}

.status--error {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status--error .status-pulse {
  background: #fca5a5;
}

/* ===================================
   CARDS
   =================================== */

.card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(26, 29, 46, 0.85) 0%,
    rgba(18, 20, 29, 0.95) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-blood-red),
    transparent
  );
  opacity: 0.5;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(196, 30, 58, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowRotate 20s linear infinite;
}

@keyframes glowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (min-width: 768px) {
  .card {
    padding: var(--space-2xl);
  }
}

/* ===================================
   TYPOGRAPHY
   =================================== */

.section-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-moon-glow);
  margin-bottom: var(--space-md);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.subsection-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(196, 30, 58, 0.3);
}

.flavor-text {
  text-align: center;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  .subsection-title {
    font-size: 1.5rem;
  }
  .flavor-text {
    font-size: 1rem;
  }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-icon {
  font-size: 1.2em;
  z-index: 1;
}

.btn span {
  z-index: 1;
}

/* Button Variants */
.btn-primary {
  background: linear-gradient(135deg, var(--color-blood-red) 0%, var(--color-blood-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px var(--color-blood-glow);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-blood-glow);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-shadow) 0%, var(--color-midnight) 100%);
  color: var(--color-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, var(--color-forest-green) 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-success:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-danger {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
}

.btn-danger:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-large {
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.1rem;
  width: 100%;
}

.btn-small {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9rem;
}

.btn-pulse {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  }
  50% { 
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.7);
  }
}

.back-btn {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(36, 39, 56, 0.6);
  color: var(--color-text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.back-btn:hover {
  background: rgba(36, 39, 56, 0.9);
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   FORMS
   =================================== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.label-icon {
  font-size: 1.2em;
}

.input-field {
  width: 100%;
  padding: var(--space-md);
  background: rgba(18, 20, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.input-field:focus {
  outline: none;
  border-color: var(--color-blood-red);
  background: rgba(18, 20, 29, 0.9);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.input-field::placeholder {
  color: var(--color-text-muted);
}

/* ===================================
   ROLES GRID
   =================================== */

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .roles-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

.role-card {
  background: linear-gradient(
    135deg,
    rgba(36, 39, 56, 0.6) 0%,
    rgba(26, 29, 46, 0.8) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.role-card:hover {
  border-color: var(--color-blood-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.role-card.optional {
  opacity: 0.7;
}

.role-card.optional:hover {
  opacity: 1;
}

.role-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-xs);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.role-name {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-text-primary);
}

.role-count {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.count-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blood-red);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.count-btn:hover {
  transform: scale(1.1);
  background: var(--color-blood-dark);
}

.count-btn:active {
  transform: scale(0.95);
}

.count-value {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-primary);
}

.roles-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.roles-summary strong {
  color: var(--color-text-primary);
  font-size: 1.1rem;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   HOME ACTIONS
   =================================== */

.home-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .home-actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .home-actions .btn {
    flex: 1;
    max-width: 280px;
  }
}

/* ===================================
   ACTIONS
   =================================== */

.actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .actions {
    flex-direction: row;
  }
  
  .actions .btn {
    flex: 1;
  }
}

/* ===================================
   LOBBIES
   =================================== */

.lobbies-container {
  margin-top: var(--space-xl);
}

.lobby-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.lobby-item {
  background: linear-gradient(
    135deg,
    rgba(36, 39, 56, 0.5) 0%,
    rgba(26, 29, 46, 0.7) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-normal);
}

.lobby-item:hover {
  border-color: var(--color-blood-red);
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .lobby-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.lobby-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.lobby-meta strong {
  color: var(--color-text-primary);
  font-size: 1.1rem;
}

.lobby-meta span {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* ===================================
   LOBBY DETAILS
   =================================== */

.lobby-details {
  background: rgba(18, 20, 29, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.lobby-details p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.lobby-details strong {
  color: var(--color-text-primary);
  margin-right: var(--space-xs);
}

.player-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.player-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, var(--color-mystic-purple) 0%, #7c3aed 100%);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.player-tag.host {
  background: linear-gradient(135deg, var(--color-amber) 0%, #f97316 100%);
  box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
}

/* ===================================
   MESSAGES
   =================================== */

.messages-card {
  padding: var(--space-md);
}

.messages-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.message-log {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  max-height: 200px;
  overflow-y: auto;
}

.message-log::-webkit-scrollbar {
  width: 6px;
}

.message-log::-webkit-scrollbar-track {
  background: rgba(18, 20, 29, 0.5);
  border-radius: var(--radius-sm);
}

.message-log::-webkit-scrollbar-thumb {
  background: var(--color-blood-red);
  border-radius: var(--radius-sm);
}

.message-log li {
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===================================
   UTILITY
   =================================== */

.hidden {
  display: none !important;
}

.view {
  animation: viewFadeIn 0.5s ease;
}

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

/* ===================================
   MOBILE OPTIMIZATIONS
   =================================== */

@media (max-width: 480px) {
  .title-main {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .role-icon {
    font-size: 2rem;
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-blood-red);
  outline-offset: 2px;
}
