@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --primary: #ff0068;
  --background: #121212;
  --foreground: #ffffff;
  --muted: #b3b3b3;
  --hover: #282828;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  padding-bottom: 70px;
  transition: background var(--transition), color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--foreground);
}

button, .btn {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contenido */
#app {
  animation: fadeIn 0.4s ease-in-out;
  padding: 0px 10px;
}

@media (max-width: 767px) {
    #app {
        animation: fadeIn 0.4s ease-in-out;
        padding: 0px 0px 50px 0px;
    }
}

/* Modal */
#loginModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease forwards;
}

#loginModal .modal-content {
  background: #181818;
  color: var(--foreground);
  padding: 24px;
  border-radius: var(--radius);
  width: 90%;
  max-width: 360px;
  text-align: center;
  box-shadow: var(--shadow);
  transform: scale(0.95);
  animation: zoomIn 0.3s ease forwards;
}

#loginModal .modal-content p {
  margin-bottom: 1em;
  font-size: 1rem;
  color: var(--muted);
}

#loginModal button {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

#loginModal button:first-child {
  background: var(--primary);
  color: #fff;
}

#loginModal button:last-child {
  background: #333;
  color: #fff;
}

#loginModal button:hover {
  transform: scale(1.02);
}

/* Transiciones globales */
a {
  transition: color var(--transition), transform var(--transition);
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Scrollbar estilo oscuro */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.resumen-perfil h2 {
  font-size: 24px;
  color: #ff0055;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff0055;
  padding-bottom: 8px;
}

.resumen-perfil p {
  font-size: 16px;
  color: #eee;
  background: #1e1e1e;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 0, 85, 0.1);
}
