    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, sans-serif;
      background: transparent; /* Dark/Light adaptive */
      color: inherit;
      line-height: 1.6;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 30px 20px;
    }

    h1 {
      text-align: center;
      color: #a855f7;
      font-size: 32px;
      margin-bottom: 10px;
    }

    p.subtitle {
      text-align: center;
      font-size: 15px;
      opacity: 0.8;
      margin-bottom: 40px;
    }

    /* 🧰 Tools Grid */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .tool-card {
      background: transparent;
      border: 1px solid rgba(170, 170, 170, 0.3);
      border-radius: 14px;
      padding: 20px;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      backdrop-filter: blur(6px);
    }

    .tool-card:hover {
      transform: translateY(-4px);
      border-color: #a855f7;
      box-shadow: 0 4px 15px rgba(168, 85, 247, 0.15);
    }

    .tool-icon {
      font-size: 38px;
      margin-bottom: 12px;
      color: #a855f7;
    }

    .tool-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .tool-desc {
      font-size: 14px;
      opacity: 0.8;
      margin-bottom: 15px;
      min-height: 45px;
    }

    .tool-btn {
			text-decoration: none;
      display: inline-block;
      background: #a855f7;
      color: #fff;
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    .tool-btn:hover {
      background: #9333ea;
    }

    .tool-btn:active {
      transform: scale(0.97);
    }

    /* ✅ Responsive */
    @media (max-width: 600px) {
      h1 {
        font-size: 26px;
      }
    }