<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: white;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('/static/img/MainBackground.jpg?v=2') no-repeat center center fixed;
      background-size: cover;
    }

    .overlay {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 3rem;
      border-radius: 16px;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
      max-width: 90%;
      width: 800px;
      animation: fadeIn 1s ease-in-out;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    h2 {
      font-size: 1.75rem;
      font-weight: 400;
      margin-bottom: 2rem;
      color: #dddddd;
    }

    p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      font-size: 1.8rem;
      font-weight: 600;
      color: white;
      background: linear-gradient(135deg, #744A8A, #9261b1);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(116, 74, 138, 0.4);
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .btn:hover {
      background: linear-gradient(135deg, #9261b1, #744A8A);
      transform: translateY(-2px);
    }

    .socials {
      margin-top: 2rem;
    }

    .social-text {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: #ccc;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
    }

    .social-links a {
      font-size: 1.8rem;
      color: white;
      text-decoration: none;
      transition: transform 0.2s ease, color 0.3s ease;
    }

    .social-links a:hover {
      transform: scale(1.2);
      color: #9261b1;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .overlay {
        margin: 0 1rem !important;
        padding: 2rem;
      }

      h1 {
        font-size: 2.2rem;
      }

      h2 {
        font-size: 1.3rem;
      }

      p {
        font-size: 1rem;
      }

      .btn {
        font-size: 1.8rem;
        padding: 0.65rem 1.2rem;
      }

      .social-links a {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 480px) {
      .overlay {
        width: auto !important;
        margin: 0 1rem !important;
        padding: 2rem;
      }

      h1 {
        font-size: 1.8rem;
      }

      h2 {
        font-size: 1.1rem;
      }

      p {
        font-size: 0.95rem;
      }

      .btn {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
      }

      .social-links a {
        font-size: 1.4rem;
      }
    }</pre></body></html>