:root {
  --bg: #050509;
  --bg-card: #11131a;
  --accent: #f3c640;
  /* dorado Titans */
  --accent-soft: rgba(243, 198, 64, 0.15);
  --text: #f5f5f5;
  --muted: #9ca3af;
  --danger: #ef4444;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.65);
}

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

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.container {
  width: 100%;
  max-width: 480px;
}

.card {
  background: linear-gradient(
    135deg,
    rgba(243, 198, 64, 0.06),
    rgba(15, 23, 42, 0.98)
  );
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(243, 198, 64, 0.16),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(56, 189, 248, 0.12),
      transparent 60%
    );
  opacity: 0.6;
  z-index: -1;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.2rem;
  /* más espacio */
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(243, 198, 64, 0.18),
    transparent 70%
  );
  filter: blur(12px);
  z-index: -1;
}

.logo {
  width: 230px;
  max-width: 80vw;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.9));
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.title {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 1.2rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: #e5e7eb;
  word-break: break-all;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 0.9rem;
  color: var(--accent);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, background 0.16s ease;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(248, 250, 252, 0.06),
    rgba(15, 23, 42, 0.96)
  );
}

.social-link i {
  color: #e5e7eb;
  font-size: 1.1rem;
}

.social-link:hover {
  transform: translateY(-1px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.75);
  background: radial-gradient(
    circle at 30% 0%,
    rgba(243, 198, 64, 0.22),
    rgba(15, 23, 42, 0.96)
  );
}

.admin-link-wrapper {
  margin-top: 1.7rem;
  text-align: center;
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.25);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  background: linear-gradient(135deg, #f3c640, #f97316);
  color: #111827;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.75);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.admin-link i {
  font-size: 0.95rem;
}

.admin-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.9);
  filter: brightness(1.02);
}

.footer-note {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 480px) {
  .card {
    padding: 1.8rem 1.4rem 1.5rem;
  }

  .title {
    font-size: 1.2rem;
  }

  .subtitle {
    font-size: 0.85rem;
  }
}
