* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Poppins', sans-serif;
      background: #0b0c0f;
      color: #e8ecf1;
      line-height: 1.6;
    }
    header {
      position: fixed;
      top: 0; left: 0; width: 100%;
      background: rgba(11, 12, 15, 0.9);
      display: flex; justify-content: space-between; align-items: center;
      padding: 1rem 2rem; z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    header h1 { color: #7c5cff; font-weight: 700; font-size: 1.5rem; }
    nav ul { display: flex; list-style: none; gap: 1.5rem; }
    nav ul li a {
      text-decoration: none; color: #e8ecf1; font-weight: 500;
      transition: 0.3s;
    }
    nav ul li a:hover { color: #7c5cff; }

    /* Hero */
    .hero {
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      min-height: 100vh; text-align: center; padding: 6rem 2rem;
      background: linear-gradient(135deg, #12141a, #1e2130);
    }
    .hero h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
    .hero p { max-width: 600px; margin-bottom: 2rem; font-size: 1.1rem; color: #b5c0cc; }
    .btn {
      display: inline-block; background: #7c5cff; color: #fff;
      padding: 0.8rem 2rem; border-radius: 30px;
      font-weight: 600; transition: 0.3s;
      text-decoration: none;
    }
    .btn:hover { background: #684bd6; }

    /* Features */
    .features {
      padding: 5rem 2rem;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem; max-width: 1100px; margin: auto;
    }
    .feature {
      background: #12141a; padding: 2rem; border-radius: 16px;
      text-align: center; transition: transform 0.3s;
    }
    .feature:hover { transform: translateY(-5px); }
    .feature i { font-size: 2rem; color: #7c5cff; margin-bottom: 1rem; }
    .feature h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }

    /* Gallery */
    .gallery {
      padding: 5rem 2rem; text-align: center;
    }
    .gallery h2 { font-size: 2rem; margin-bottom: 2rem; }
    .gallery-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem; max-width: 1100px; margin: auto;
    }
    .gallery-grid img {
      width: 100%; border-radius: 16px;
      transition: transform 0.3s;
    }
    .gallery-grid img:hover { transform: scale(1.05); }

    /* Footer */
    footer {
      background: #12141a; padding: 2rem; text-align: center;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    footer p { color: #b5c0cc; }