    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      font-family: 'Open Sans', Arial, sans-serif;
      background: black;
      color: #f0f0f0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
    }

    p {
      margin-bottom: 2rem;
      font-size: 1.1rem;
      color: #ccc;
    }

    .progress-container {
      width: 100%;
      border-radius: 50px;
      overflow: hidden;
      margin-bottom: 2rem;
      box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
      position: relative;
    }

    .progress-bar {
      height: 20px;
      background-color: #00aaff;
      width: 0%;
      animation: loading 5s ease-in-out infinite;
    }

    @keyframes loading {
      0% { width: 0%; }
      40% { width: 5%; }
      80% { width: 5%; }
      100% { width: 0%; }
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .social-links a {
      color: #00aaff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .social-links a:hover {
      color: #66d0ff;
    }

    .social-links svg {
      width: 32px;
      height: 32px;
      fill: currentColor;
    }

    footer {
      position: absolute;
      bottom: 10px;
      font-size: 0.8rem;
      color: #666;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 1.6rem;
      }
      p {
        font-size: 1rem;
      }
    }