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

/* Dark mode base */
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a0a0f;
  color: #fff;
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

/* Subtle texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(30, 30, 60, 0.8) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(30, 60, 90, 0.5) 0%,
      transparent 20%
    );
  z-index: -1;
  opacity: 0.7;
}

/* Grid overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  opacity: 0.4;
}

/* Container */
.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* Logo */
.logo {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 3.5rem; /* Tamaño base más pequeño */
  margin: 0 1rem 1.5rem;
  background: linear-gradient(90deg, #00b8e6, #2a5da3);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 20px rgba(42, 93, 163, 0.2);
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.2;
  word-break: break-word;
  color: rgba(240, 240, 245, 0.95);
}

@media (min-width: 768px) {
  .logo {
    font-size: 5rem; /* Tamaño para pantallas grandes */
    letter-spacing: 2px;
    margin: 0 0 1.5rem;
  }
}

/* Follow text */
.follow {
  font-size: 1rem;
  color: rgba(200, 200, 210, 0.7);
  margin-top: 1.5rem;
}

/* Twitter handle link */
.twitter-handle {
  color: #5aa8d8; /* Azul un poco más oscuro */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0.85;
  position: relative;
  padding: 0 2px;
}

.twitter-handle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #1da1f2;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.twitter-handle:hover {
  color: #a8d8ff;
  opacity: 1;
  text-shadow: 0 0 8px rgba(168, 216, 255, 0.5);
}

.twitter-handle:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .logo {
    font-size: 2.5rem;
    margin: 0 0.5rem 1rem;
  }

  .follow {
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }
}

/* Add some subtle animation to the background */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
