* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
    }

    body {
      font-family: 'Poppins', sans-serif;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      background: linear-gradient(135deg, #002b36, #00796b, #00c896);
      background-size: 200% 200%;
      animation: gradientMove 8s ease infinite;
      padding: 2rem;
      min-height: 100vh;
    }

    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    h1 {
      font-size: 3.5rem;
      font-weight: 700;
      letter-spacing: 3px;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      word-wrap: break-word;
      z-index: 2;
    }

    h2 {
      font-weight: 500;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: rgba(255, 255, 255, 0.85);
    }

    p {
      max-width: 700px;
      font-size: 1.1rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 3rem;
    }

    footer {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.85);
      margin-top: auto;
      padding-bottom: 1rem;
    }

    a {
      color: #ffffff;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    a:hover {
      color: #00ffc6;
      text-decoration: underline;
    }


    .email-button {
      display: inline-block;
      background: #00ffc6;
      color: #00332a;
      padding: 0.75rem 1.5rem;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 255, 198, 0.3);
    }

    .email-button:hover {
      background: #00e6b2;
      box-shadow: 0 6px 20px rgba(40, 70, 63, 0.5);
      transform: translateY(-2px);
    }


    /* Responsive Fixes */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.6rem;
      }
      h2 {
        font-size: 1.2rem;
      }
      p {
        font-size: 1rem;
        line-height: 1.6;
      }
    }

    @media (max-width: 480px) {
      body {
        justify-content: flex-start;
        padding-top: 20vh; /* ensures VV is visible at top */
      }

      h1 {
        font-size: 2.2rem;
      }
      h2 {
        font-size: 1rem;
      }
      p {
        font-size: 0.95rem;
      }
      footer {
        font-size: 0.9rem;
      }
      .email-button {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
      }
    }