@charset "UTF-8";
/* v01.00 (C)Copyright Black Fox Square */

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

    body {
      font-family: 'Outfit', sans-serif;
      background: #0e0e0e;
      color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease-out forwards;
    }

    .fade-in.delay-1 { animation-delay: 0.3s; }
    .fade-in.delay-2 { animation-delay: 0.6s; }
    .fade-in.delay-3 { animation-delay: 0.9s; }
    .fade-in.delay-4 { animation-delay: 1.2s; }
    .fade-in.delay-5 { animation-delay: 1.5s; }
    .fade-in.delay-6 { animation-delay: 1.8s; }
    .fade-in.delay-7 { animation-delay: 2.1s; }
    .fade-in.delay-8 { animation-delay: 2.4s; }
    .fade-in.delay-9 { animation-delay: 2.7s; } 
    .fade-in.delay-10 { animation-delay: 3.0s; } 
    .fade-in.delay-11 { animation-delay: 3.3s; }
    .fade-in.delay-12 { animation-delay: 3.6s; }
    .fade-in.delay-13 { animation-delay: 3.9s; } 
    .fade-in.delay-14 { animation-delay: 4.2s; }
    .fade-in.delay-15 { animation-delay: 4.5s; }
    .fade-in.delay-16 { animation-delay: 4.8s; }
    .fade-in.delay-17 { animation-delay: 5.1s; }
    .fade-in.delay-18 { animation-delay: 5.4s; }
    .fade-in.delay-19 { animation-delay: 5.7s; }
    .fade-in.delay-20 { animation-delay: 6.0s; }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    img.logo {
      width: 150px;
      height: auto;
      margin-bottom: 2rem;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    h2 {
      font-size: 1.7rem;
      margin-bottom: 1rem;
      margin-top: 1.5rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1rem;
      max-width: 400px;
      opacity: 0.85;
    }
    p strong {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      max-width: 600px;
      opacity: 1;
    }

    a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      border: 2px solid #ffffff33;
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      transition: all 0.3s ease;
    }

    a:hover {
      background-color: #ffffff10;
      border-color: #ffffff66;
    }

    .social {
      margin-top: 1.5rem;
      opacity: 0.6;
      font-size: 1rem;
    }

    .social a {
      color: #ccc;
      margin: 0 0.5rem;
      text-decoration: underline;
      font-weight: normal;
    }