:root {
      --primary-color: #6a0dad; /* Deep Purple */
      --secondary-color: #8a2be2; /* Blue Violet */
      --accent-color: #ff69b4; /* Hot Pink */
      --text-color: #ffffff;
      --bg-dark: rgba(0, 0, 0, 0.7);
      --bg-light: rgba(255, 255, 255, 0.1);
      --font-heading: 'Montserrat', sans-serif;
      --font-body: 'Open Sans', sans-serif;
    }

    body {
      margin: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      font-family: var(--font-body);
      color: var(--text-color);
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      background-size: cover;
      background-position: center;
      overflow: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.pexels.com/photos/1103970/pexels-photo-1103970.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center fixed;
      background-size: cover;
      opacity: 0.2; /* Subtle overlay */
      z-index: -1;
    }

    .container {
      background: var(--bg-dark);
      padding: 40px 60px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      text-align: center;
      max-width: 800px;
      width: 90%;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      animation: fadeIn 1.5s ease-out;
    }

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

    h1 {
      font-family: var(--font-heading);
      font-size: 4.5em;
      margin-bottom: 15px;
      color: var(--accent-color);
      text-shadow: 0 0 15px rgba(255, 105, 180, 0.7);
      letter-spacing: 2px;
      animation: pulse 2s infinite alternate;
    }

    @keyframes pulse {
      from { transform: scale(1); }
      to { transform: scale(1.05); }
    }

    .subtitle {
      font-family: var(--font-body);
      font-size: 1.4em;
      margin-bottom: 30px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
    }

    .progress-bar {
      width: 80%;
      height: 15px;
      background-color: var(--bg-light);
      border-radius: 10px;
      margin: 30px auto 15px auto;
      overflow: hidden;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .progress {
      height: 100%;
      background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
      border-radius: 10px;
      width: 0; /* Initial width for animation */
      animation: fillProgress 2s ease-out forwards;
    }

    @keyframes fillProgress {
      from { width: 0; }
      to { width: var(--progress-width, 75%); } /* Use CSS variable for dynamic width */
    }

    .progress-text {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.8);
    }

    .contact-info {
      font-size: 1.2em;
      color: rgba(255, 255, 255, 0.9);
    }

    .contact-info a {
      color: var(--accent-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .contact-info a:hover {
      color: var(--primary-color);
      text-decoration: underline;
    }

    footer {
      margin-top: 40px;
      font-size: 0.9em;
      color: rgba(255, 255, 255, 0.6);
      position: absolute;
      bottom: 20px;
    }

    footer a {
      color: var(--text-color); /* Wwwork Digital Agency link color */
      text-decoration: none;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: var(--accent-color);
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .container {
        padding: 30px 30px;
      }

      h1 {
        font-size: 3.5em;
      }

      .subtitle {
        font-size: 1.2em;
      }

      .progress-bar {
        width: 90%;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 20px 20px;
      }

      h1 {
        font-size: 2.5em;
      }

      .subtitle {
        font-size: 1em;
      }

      .progress-text, .contact-info {
        font-size: 0.9em;
      }
    }
