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

    body {
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background: linear-gradient(135deg, #020617, #0f172a, #172554);
      font-family: Arial, sans-serif;
      position: relative;
    }

    .grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(192,192,192,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192,192,192,0.08) 1px, transparent 1px);
      background-size: 70px 70px;
    }

    .glow {
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(59,130,246,0.15);
      border-radius: 50%;
      filter: blur(120px);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .container {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .logo {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .logo h1 {
      font-size: 9vw;
      letter-spacing: 0.4em;
      color: #dbeafe;
      text-shadow:
        0 0 10px rgba(255,255,255,0.4),
        0 0 30px rgba(59,130,246,0.8),
        0 0 60px rgba(59,130,246,0.4);
    }

    .line {
      margin-top: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    .bar {
      width: 90px;
      height: 2px;
      background: linear-gradient(to right, transparent, silver, #60a5fa);
    }

    .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #60a5fa;
      box-shadow: 0 0 20px #60a5fa;
    }

    .email {
      display: inline-block;
      margin-top: 30px;
      color: #cbd5e1;
      text-decoration: none;
      font-size: 1rem;
      letter-spacing: 0.15em;
      transition: 0.3s ease;
      text-shadow: 0 0 10px rgba(96,165,250,0.5);
    }

    .email:hover {
      color: #60a5fa;
      text-shadow: 0 0 20px rgba(96,165,250,1);
    }