/**
 * © 2024–2025 TiltCheck Ecosystem. All Rights Reserved.
 * Created by jmenichole (https://github.com/jmenichole)
 * 
 * This file is part of the TiltCheck project.
 * For licensing information, see LICENSE file in the project root.
 */
/**
 * Main Styles
 * 
 * Copyright (c) 2024 Degens Against Decency
 * Licensed under the MIT License
 * See LICENSE file in the project root for full license information.
 */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Updated brand colors for new design */
  --brand-green: #B4FF39;
  --brand-teal: #00ffff;
  --brand-pink: #ff00ff;
  --brand-yellow: #ffff00;
  --brand-purple: #A020F0;
  --brand-dark: #0A0B14;
  --brand-navy: #16213e;
  --brand-darker: #05060a;
  --brand-white: #ffffff;
  --text-light: #e0e0e0;
  --text-muted: #888;
  --status-online: #00ff00;
  
  /* Neon glow effects */
  --logo-glow-base: drop-shadow(0 0 30px rgba(180, 255, 57, 0.8)) drop-shadow(0 0 60px rgba(0, 255, 255, 0.4));
  --logo-glow-intense: drop-shadow(0 0 40px rgba(180, 255, 57, 1)) drop-shadow(0 0 80px rgba(0, 255, 255, 0.6));
  --button-glow-base: 0 0 20px rgba(180, 255, 57, 0.6), 0 10px 30px rgba(180, 255, 57, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
  --button-glow-intense: 0 0 30px rgba(180, 255, 57, 0.8), 0 10px 30px rgba(180, 255, 57, 0.4), 0 4px 12px rgba(0, 0, 0, 0.4);
  --purple-glow-base: 0 0 20px rgba(160, 32, 240, 0.6), 0 10px 30px rgba(160, 32, 240, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
  --purple-glow-intense: 0 0 30px rgba(160, 32, 240, 0.8), 0 10px 30px rgba(160, 32, 240, 0.4), 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: var(--button-glow-base);
  }
  50% {
    box-shadow: var(--button-glow-intense);
  }
}

body {
  background: var(--brand-dark);
  color: var(--brand-white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

/* Add subtle animated background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(160, 32, 240, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(180, 255, 57, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 11, 20, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 255, 57, 0.2);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--brand-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--brand-green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, var(--brand-green), var(--brand-teal));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(1px);
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 20px;
}

.hero-logo img {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  filter: var(--logo-glow-base);
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% {
    filter: var(--logo-glow-base);
  }
  50% {
    filter: var(--logo-glow-intense);
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-teal), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(180, 255, 57, 0.3);
}

.tagline {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-light);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About section */
.about {
  padding: 100px 0;
  background: rgba(5, 6, 10, 0.6);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple), var(--brand-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  gap: 30px;
}

.stat {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(180, 255, 57, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(180, 255, 57, 0.2), 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(180, 255, 57, 0.4), 0 8px 16px rgba(0, 0, 0, 0.4);
  border-color: rgba(180, 255, 57, 0.4);
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--brand-green);
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(180, 255, 57, 0.5);
}

.stat p {
  color: var(--text-light);
  font-weight: 500;
}

/* Games section */
.games {
  padding: 100px 0;
  background: var(--brand-dark);
}

.games h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-teal), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.game-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(180, 255, 57, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.1), 0 8px 24px rgba(0, 0, 0, 0.4), 0 16px 48px rgba(0, 0, 0, 0.2);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(180, 255, 57, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-green);
  box-shadow: 0 0 30px rgba(180, 255, 57, 0.5), 0 20px 40px rgba(180, 255, 57, 0.2), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.game-card h3 {
  color: var(--brand-green);
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
}

.game-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.6;
}

.game-card ul {
  list-style: none;
  padding: 0;
}

.game-card li {
  color: var(--brand-teal);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.game-card li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--brand-green);
}

/* Features section */
.features {
  padding: 100px 0;
  background: rgba(15, 15, 26, 0.8);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-teal), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(180, 255, 57, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature:hover {
  transform: translateY(-5px);
  border-color: var(--brand-green);
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.4), 0 10px 30px rgba(180, 255, 57, 0.2), 0 8px 16px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature h3 {
  color: var(--brand-green);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Getting Started section */
.getting-started {
  padding: 100px 0;
  background: var(--brand-dark);
  text-align: center;
}

.getting-started h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple), var(--brand-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.step {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(180, 255, 57, 0.2);
  backdrop-filter: blur(10px);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.5);
}

.step h3 {
  color: var(--brand-green);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.step p {
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  margin-top: 60px;
}

.disclaimer {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--brand-darker);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(180, 255, 57, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}

.footer-links h4 {
  color: var(--brand-green);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Buttons */
.cta-button, .secondary-button {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-teal));
  color: var(--brand-dark);
  box-shadow: var(--button-glow-base);
  animation: pulse-glow 2s ease-in-out infinite;
  font-weight: 700;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(180, 255, 57, 0.8), 0 15px 40px rgba(180, 255, 57, 0.4), 0 8px 16px rgba(0, 0, 0, 0.4);
  animation-play-state: paused;
}

.secondary-button {
  background: transparent;
  color: var(--brand-green);
  border: 2px solid var(--brand-green);
  box-shadow: 0 0 15px rgba(180, 255, 57, 0.3), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.secondary-button:hover {
  background: var(--brand-green);
  color: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(180, 255, 57, 0.6), 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Simple hide for mobile - could add hamburger menu */
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-logo img {
    max-width: 280px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .stat {
    padding: 20px;
  }
  
  .stat h3 {
    font-size: 1.8rem;
  }
  
  .game-cards,
  .features-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 60px 0;
  }
  
  .features {
    padding: 60px 0;
  }
  
  .games {
    padding: 60px 0;
  }
  
  .getting-started {
    padding: 60px 0;
  }
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(180, 255, 57, 0.2);
  backdrop-filter: blur(10px);
}

.user-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--brand-green);
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.5);
}

.user-details {
  text-align: center;
}

.user-details h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--brand-green);
}

.user-details p {
  color: var(--text-light);
}

.login-prompt {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(180, 255, 57, 0.2);
  backdrop-filter: blur(10px);
}

.login-prompt h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--brand-green);
}

.login-prompt p {
  margin-bottom: 30px;
  color: var(--text-light);
}

/* Buttons */
.cta-button, .discord-button, .secondary-button {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.cta-button {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-teal));
  color: var(--brand-dark);
  box-shadow: var(--button-glow-base);
  font-weight: 700;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(180, 255, 57, 0.8), 0 15px 40px rgba(180, 255, 57, 0.4);
}

.discord-button {
  background: #5865F2;
  color: white;
  box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.secondary-button {
  background: rgba(180, 255, 57, 0.1);
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
}

.secondary-button:hover {
  background: rgba(180, 255, 57, 0.2);
  transform: translateY(-2px);
}

.discord-icon {
  flex-shrink: 0;
}

.privacy-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 15px;
}

/* Features section */
.features {
  padding: 80px 20px;
  background: rgba(5, 6, 10, 0.4);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-teal), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(180, 255, 57, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: var(--brand-green);
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--brand-green);
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Utilities */
.hidden {
  display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .game-card {
    padding: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .login-prompt, .user-info {
    padding: 25px;
  }
}

/* Game Arena Styles */
.arena-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.arena-header {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(180, 255, 57, 0.2);
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.1);
}

.user-panel {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-panel img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--brand-green);
  box-shadow: 0 0 15px rgba(180, 255, 57, 0.4);
}

.lobby {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

.games-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(180, 255, 57, 0.2);
}

.games-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.game-list {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.game-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(180, 255, 57, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-item:hover {
  border-color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.3);
}

.game-type {
  color: var(--brand-green);
  font-weight: 600;
  margin-bottom: 5px;
}

.game-players {
  color: var(--text-light);
  font-size: 0.9rem;
}

.create-game-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(180, 255, 57, 0.2);
  height: fit-content;
}

.admin-status-panel {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(180, 255, 57, 0.2);
}

.admin-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.admin-status-header h3 {
  color: var(--brand-teal);
  font-size: 1rem;
}

.persistence-status-message {
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.persistence-status-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.persistence-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(180, 255, 57, 0.2);
  font-size: 0.85rem;
}

.status-badge {
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge.good {
  color: #0b2d0b;
  background: #7dff73;
}

.status-badge.warn {
  color: #352700;
  background: #ffd56b;
}

.status-badge.bad {
  color: #3a0000;
  background: #ff8f8f;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-green);
  font-weight: 600;
}

.form-group select, .form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
}

.form-group select:focus, .form-group input:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 10px rgba(180, 255, 57, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal.show {
  display: block;
}

.modal-content {
  background: linear-gradient(135deg, var(--brand-dark), #16213e);
  margin: 5% auto;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;
  border: 1px solid rgba(180, 255, 57, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(180, 255, 57, 0.2);
}

.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 25px;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--brand-green);
}

/* Loading styles */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-style: italic;
}

/* Game item status indicators */
.game-item.waiting {
  border-left: 4px solid var(--brand-green);
}

.game-item.playing {
  border-left: 4px solid var(--brand-purple);
}

.game-item.full {
  opacity: 0.6;
  cursor: not-allowed;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.game-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.game-status.waiting {
  background: rgba(180, 255, 57, 0.2);
  color: var(--brand-green);
}

.game-status.playing {
  background: rgba(160, 32, 240, 0.2);
  color: var(--brand-purple);
}

.game-status.full {
  background: rgba(255, 255, 255, 0.1);
  color: #999;
}
/* Online Status Indicators */
.status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.status-indicator.online {
  background: var(--status-online);
  box-shadow: 0 0 10px var(--status-online);
  animation: pulse-status 2s ease-in-out infinite;
}

.status-indicator.offline {
  background: #666;
}

@keyframes pulse-status {
  0%, 100% {
    box-shadow: 0 0 10px var(--status-online);
  }
  50% {
    box-shadow: 0 0 15px var(--status-online), 0 0 20px var(--status-online);
  }
}

/* Live Game Indicators */
.game-item.live {
  position: relative;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    border-color: rgba(160, 32, 240, 0.4);
    box-shadow: 0 0 10px rgba(160, 32, 240, 0.2);
  }
  50% {
    border-color: rgba(160, 32, 240, 0.8);
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.4);
  }
}

.live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand-purple);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(160, 32, 240, 0.6);
  animation: live-pulse-badge 2s ease-in-out infinite;
}

@keyframes live-pulse-badge {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Game Timer Display */
.game-timer {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--brand-teal);
  font-size: 0.85rem;
  font-weight: 600;
}

.game-timer::before {
  content: '⏱️';
}

/* Player Status Badge */
.player-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.player-status-badge.active {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
}

.player-status-badge.in-game {
  background: rgba(160, 32, 240, 0.2);
  color: var(--brand-purple);
}

.player-status-badge.idle {
  background: rgba(255, 255, 0, 0.2);
  color: var(--brand-yellow);
}

/* Spectator Mode Indicator */
.spectator-mode-badge {
  background: rgba(0, 255, 255, 0.2);
  color: var(--brand-teal);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.spectator-mode-badge::before {
  content: '👁️';
}

/* Game Actions */
.game-actions-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.game-action-btn {
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(180, 255, 57, 0.3);
  background: rgba(180, 255, 57, 0.1);
  color: var(--brand-green);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-action-btn:hover {
  background: rgba(180, 255, 57, 0.2);
  border-color: var(--brand-green);
  transform: translateY(-1px);
}

.game-action-btn.spectate {
  border-color: rgba(0, 255, 255, 0.3);
  background: rgba(0, 255, 255, 0.1);
  color: var(--brand-teal);
}

.game-action-btn.spectate:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: var(--brand-teal);
}

/* Auto-refresh Indicator */
.auto-refresh-indicator {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 11, 20, 0.9);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(180, 255, 57, 0.3);
  color: var(--brand-green);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.auto-refresh-indicator.show {
  opacity: 1;
}

.auto-refresh-indicator .spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(180, 255, 57, 0.3);
  border-top-color: var(--brand-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Lobby Statistics */
.lobby-stats {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(180, 255, 57, 0.2);
}

.stat-label {
  color: var(--text-light);
}

.stat-value {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 1.1em;
}

/* Player Count Badge */
.player-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(180, 255, 57, 0.1);
  border: 1px solid rgba(180, 255, 57, 0.3);
  border-radius: 20px;
  color: var(--brand-green);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Progress Bar */
.progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-teal), var(--brand-purple));
  border-radius: 10px;
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Level Badge */
.level-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple));
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-dark);
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.5);
  position: relative;
}

.level-badge::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid var(--brand-green);
  opacity: 0.5;
}

/* Avatar Glow Effect */
.avatar-glow {
  position: relative;
  display: inline-block;
}

.avatar-glow img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.avatar-glow::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-purple));
  filter: blur(10px);
  opacity: 0.6;
  z-index: 1;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Round Timer */
.round-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(180, 255, 57, 0.3);
  border-radius: 15px;
  min-width: 120px;
}

.timer-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-green);
  text-shadow: 0 0 15px rgba(180, 255, 57, 0.5);
}

.timer-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.round-timer.warning .timer-value {
  color: var(--brand-yellow);
  animation: pulse-timer 1s ease-in-out infinite;
}

.round-timer.danger .timer-value {
  color: #ff4444;
  animation: pulse-timer 0.5s ease-in-out infinite;
}

@keyframes pulse-timer {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Game Code Display */
.game-code {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(180, 255, 57, 0.05);
  border: 1px solid rgba(180, 255, 57, 0.3);
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-green);
  letter-spacing: 2px;
}

/* Search Bar */
.search-bar {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-bar input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(180, 255, 57, 0.2);
  border-radius: 25px;
  color: var(--brand-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 15px rgba(180, 255, 57, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-bar .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-green);
  font-size: 1.2rem;
  pointer-events: none;
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(180, 255, 57, 0.2);
  border-top-color: var(--brand-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Card Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px 0;
}

/* Message Bubble */
.message-bubble {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 12px 16px;
  margin-bottom: 10px;
  position: relative;
  max-width: 80%;
}

.message-bubble.own-message {
  background: rgba(180, 255, 57, 0.1);
  margin-left: auto;
  border: 1px solid rgba(180, 255, 57, 0.2);
}

.message-bubble .timestamp {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Quick Emoji Reactions */
.emoji-reactions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.emoji-reaction {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(180, 255, 57, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.emoji-reaction:hover {
  background: rgba(180, 255, 57, 0.1);
  border-color: var(--brand-green);
  transform: scale(1.1);
}

.emoji-reaction.active {
  background: rgba(180, 255, 57, 0.2);
  border-color: var(--brand-green);
  box-shadow: 0 0 10px rgba(180, 255, 57, 0.3);
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  margin-bottom: 20px;
}

.tab-button {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(180, 255, 57, 0.2);
  border-radius: 10px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.tab-button:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.tab-button.active {
  background: rgba(180, 255, 57, 0.1);
  border-color: var(--brand-green);
  color: var(--brand-green);
  box-shadow: 0 0 15px rgba(180, 255, 57, 0.2);
}

/* Stats Card */
.stats-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(180, 255, 57, 0.2);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.stats-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 0 20px rgba(180, 255, 57, 0.2);
  transform: translateY(-2px);
}

.stats-card .stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.stats-card .stat-value {
  color: var(--brand-green);
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(180, 255, 57, 0.3);
}

/* Friend List Item */
.friend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(180, 255, 57, 0.1);
  border-radius: 10px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.friend-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(180, 255, 57, 0.3);
}

.friend-item .friend-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--brand-green);
}

.friend-item .friend-name {
  flex: 1;
  color: var(--brand-white);
  font-weight: 600;
}

.friend-item .friend-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.friend-item.online .friend-status {
  color: var(--status-online);
}

/* Additional Mobile Responsiveness for New Components */
@media (max-width: 768px) {
  .tab-navigation {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab-button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .round-timer {
    min-width: 100px;
    padding: 15px;
  }

  .timer-value {
    font-size: 1.5rem;
  }

  .game-code {
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 8px 16px;
  }

  .search-bar {
    max-width: 100%;
  }

  .search-bar input {
    padding: 10px 40px 10px 15px;
    font-size: 0.9rem;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .message-bubble {
    max-width: 90%;
    padding: 10px 14px;
  }

  .stats-card {
    padding: 15px;
  }

  .stats-card .stat-value {
    font-size: 1.5rem;
  }

  .friend-item {
    padding: 10px;
  }

  .friend-item .friend-avatar {
    width: 35px;
    height: 35px;
  }

  .player-count {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .level-badge {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .arena-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .lobby {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .tab-button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .round-timer {
    min-width: 80px;
    padding: 12px;
  }

  .timer-value {
    font-size: 1.2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .emoji-reactions {
    flex-wrap: wrap;
  }

  .emoji-reaction {
    font-size: 1rem;
    padding: 3px 6px;
  }

  .progress-bar-container {
    height: 6px;
  }

  .avatar-glow::before {
    filter: blur(8px);
  }
}

/* Touch Target Optimization */
@media (hover: none) and (pointer: coarse) {
  .tab-button,
  .game-item,
  .answer-card,
  .submission-card,
  .friend-item,
  button,
  .cta-button,
  .secondary-button {
    min-height: 44px;
    min-width: 44px;
  }

  .emoji-reaction {
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links a {
    padding: 10px;
  }
}

/* Onboarding Modal Styles */
.onboarding-content {
  max-width: 600px;
  padding: 2rem;
}

.onboarding-content h2 {
  color: var(--brand-green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.onboarding-step {
  display: none;
}

.onboarding-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.onboarding-step h3 {
  color: var(--brand-teal);
  margin-bottom: 1rem;
}

.onboarding-step p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.onboarding-step ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.onboarding-step li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.onboarding-step button {
  margin-right: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Feedback Survey Styles
   ============================================ */

.feedback-survey-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.feedback-survey-content {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark) 100%);
  border: 2px solid var(--brand-teal);
  border-radius: 20px;
  padding: 0;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.4), 
              0 0 80px rgba(180, 255, 57, 0.2);
  animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.survey-header {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-pink) 100%);
  padding: 25px 30px;
  border-radius: 18px 18px 0 0;
  text-align: center;
  border-bottom: 2px solid var(--brand-teal);
}

.survey-header h2 {
  color: var(--brand-white);
  font-size: 1.8em;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.survey-header p {
  color: var(--text-light);
  font-size: 1em;
  opacity: 0.9;
}

.survey-body {
  padding: 30px;
}

.survey-question {
  margin-bottom: 30px;
}

.survey-question label {
  display: block;
  color: var(--brand-teal);
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.rating-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.star-rating {
  display: flex;
  gap: 8px;
}

.star {
  font-size: 2.5em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.star:hover {
  color: var(--brand-yellow);
  transform: scale(1.15);
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
}

.star.selected {
  color: var(--brand-yellow);
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.6),
               0 0 40px rgba(255, 255, 0, 0.3);
}

.feedback-comment {
  width: 100%;
  background: var(--brand-darker);
  border: 2px solid var(--brand-purple);
  border-radius: 10px;
  padding: 15px;
  color: var(--brand-white);
  font-size: 1em;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  transition: all 0.3s ease;
}

.feedback-comment:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.feedback-comment::placeholder {
  color: var(--text-muted);
}

.survey-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 30px 30px;
}

.survey-footer button {
  flex: 1;
  padding: 12px 24px;
  font-size: 1.1em;
}

/* Responsive design */
@media (max-width: 768px) {
  .feedback-survey-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .survey-header {
    padding: 20px;
  }
  
  .survey-header h2 {
    font-size: 1.5em;
  }
  
  .survey-body {
    padding: 20px;
  }
  
  .star {
    font-size: 2em;
  }
  
  .survey-footer {
    flex-direction: column;
    padding: 15px 20px 20px;
  }
  
  .survey-footer button {
    width: 100%;
  }
}

/* Animation for thank you message */
.survey-body p {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
