/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: font-family: 'Bebas Neue';
  overflow: hidden;
  background: #05060a;
  color: white;
}

/* Fondo animado simple */
#background {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, #1ef, transparent 40%),
              radial-gradient(circle at 80% 70%, #f0f, transparent 40%),
              radial-gradient(circle at 50% 50%, #0f8, transparent 50%);
  filter: blur(60px);
  opacity: 0.4;
  animation: moveBg 12s ease-in-out infinite alternate;
}

@keyframes moveBg {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.2) rotate(10deg); }
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

/* APP CONTAINER */
#app {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SPLASH */
.splash {
  text-align: center;
  padding: 24px;
  animation: fadeIn 1.2s ease;
}

.logo {
  font-size: 64px;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.title {
  font-family: 'Bebas Neue';
}

.subtitle {
  opacity: 0.8;
  margin-bottom: 30px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  background: linear-gradient(90deg, #00ffd5, #7c4dff);
  color: #000;
  font-weight: 700;
}

/* HOME */
.home {
  text-align: center;
}

.card {
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.title {
  text-shadow:
    0 0 5px rgba(0,255,200,0.8),
    0 0 15px rgba(0,255,200,0.6),
    0 0 30px rgba(0,255,200,0.4);
}

.logo {
  text-shadow:
    0 0 10px rgba(124,77,255,0.8),
    0 0 25px rgba(0,255,255,0.5);
}
.bottom-bar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 10px;

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);

  padding: 10px 14px;
  border-radius: 999px;

  z-index: 1000;
}

.bottom-bar button {
  background: transparent;
  border: none;
  font-size: 18px;
  color: white;
  padding: 8px;
}
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  padding: 14px 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);

  color: white;
  z-index: 1000;
}

.top-bar .title {
  font-weight: 600;
  font-size: 14px;
}

.top-bar .info {
  font-size: 12px;
  opacity: 0.8;
}