body {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.logo {
  width: 280px;
  margin-bottom: 30px;
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 2.5em;
  margin: 10px 0;
  animation: glow 2s infinite alternate;
}

p {
  font-size: 1.2em;
  color: #ccc;
}

.caution {
  margin: 40px auto;
  width: 80%;
  height: 20px;
  background: repeating-linear-gradient(
    45deg,
    #ffcc00,
    #ffcc00 20px,
    #000 20px,
    #000 40px
  );
  animation: moveStripe 3s linear infinite;
}

.warning .triangle {
  width: 80px;
  height: 80px;
  background: #ffcc00;
  color: #000;
  font-weight: bold;
  font-size: 2em;
  line-height: 80px;
  border-radius: 10px;
  margin: 20px auto;
  animation: pulse 1.5s infinite;
}

.social {
  margin-top: 40px;
}

.icon {
  color: gold;
  margin: 0 10px;
  font-size: 1.8em;
  text-decoration: none;
  transition: transform 0.3s;
}

.icon:hover {
  transform: scale(1.2);
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  from { text-shadow: 0 0 10px gold; }
  to { text-shadow: 0 0 20px #ffcc00; }
}

@keyframes moveStripe {
  from { background-position: 0 0; }
  to { background-position: 80px 0; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 600px) {
  h1 { font-size: 1.8em; }
  .logo { width: 200px; }
  .caution { width: 90%; }
}
