body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      background: linear-gradient(270deg, #001f3f, #0074D9, #00aaff);
      background-size: 600% 600%;
      animation: gradiente 15s ease infinite;
      color: white;
      padding: 40px 20px;
    }

    @keyframes gradiente {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .container {
      width: 100%;
      max-width: 900px;
      background: rgba(0, 0, 0, 0.7);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 0 25px rgba(0,200,255,0.6);
      animation: fadeIn 1.5s ease-out;
      text-align: center;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    h1 {
      color: #00cfff;
      text-shadow: 0 0 15px rgba(0,200,255,0.8);
    }

    p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 15px 0;
    }

    .highlight {
      color: #00ffcc;
      font-weight: bold;
    }

    .btn {
      margin-top: 25px;
      background: linear-gradient(135deg, #00cfff, #0077ff);
      border: none;
      border-radius: 50px;
      padding: 14px 35px;
      font-size: 1.2rem;
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(0,200,255,0.8), 0 0 40px rgba(0,200,255,0.4);
      text-decoration: none;
      display: inline-block;
    }

    .btn:hover {
      transform: scale(1.08);
      background: linear-gradient(135deg, #00ffcc, #0077ff);
      box-shadow: 0 0 30px rgba(0,255,200,0.9), 0 0 60px rgba(0,200,255,0.7);
    }