   <style>
    /* Reset and base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #121212;
      color: #cccccc;
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:focus-visible {
      outline: 2px solid #4f46e5;
      outline-offset: 2px;
    }

    /* Header */
    .header {
      background: #0d0d0d;
      padding: 20px 60px;
      border-bottom: 1px solid #2a2a2a;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0,0,0,0.7);
      transition: background-color 0.3s ease;
    }

    .header:hover {
      background-color: #1a1a1a;
    }

    .logo {
      font-size: 1.75rem;
      font-weight: 800;
      color: #e0e0e0;
      display: flex;
      align-items: center;
      gap: 14px;
      user-select: none;
      letter-spacing: 1.2px;
      text-shadow: 0 0 6px #4f46e5;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .logo img {
      height: 48px;
      width: auto;
      filter: drop-shadow(0 0 3px #4f46e5);
      transition: transform 0.3s ease;
    }

    .logo:hover {
      color: #7c3aed;
    }

    .logo:hover img {
      transform: scale(1.1);
    }

    /* Navigation */
    .nav-menu {
      display: flex;
      gap: 36px;
      list-style: none;
      font-weight: 600;
      font-size: 1rem;
    }

    .nav-menu a {
      color: #999999;
      padding: 10px 0;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: #7c3aed;
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
      color: #ffffff;
    }

    .nav-menu a:hover::after,
    .nav-menu a:focus::after {
      width: 100%;
    }

    /* Main Content */
    .main-content {
      max-width: 900px;
      margin: 80px auto 100px;
      padding: 0 40px;
      user-select: none;
    }

    .page-title {
      font-size: 2.8rem;
      font-weight: 900;
      color: #e0e0e0;
      margin-bottom: 24px;
      letter-spacing: 0.03em;
      text-shadow: 0 0 10px #7c3aed;
      text-align: center;
    }

    .intro-text {
      font-size: 1.2rem;
      color: #a0a0a0;
      line-height: 1.5;
      margin-bottom: 40px;
      text-align: center;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Products Grid */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 48px;
    }

    .product-card {
      background: #1a1a1a;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
      display: flex;
      flex-direction: column;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
      cursor: pointer;
      border: 1px solid #2a2a2a;
      user-select: none;
    }

    .product-card:focus-visible {
      outline: 3px solid #7c3aed;
      outline-offset: 3px;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(124, 58, 237, 0.7);
      border-color: #7c3aed;
    }

    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #2a2a2a;
      transition: transform 0.4s ease;
      will-change: transform;
    }

    .product-card img:hover,
    .product-card img:focus {
      transform: scale(1.08);
      outline: none;
    }

    .product-info {
      padding: 24px 28px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-title {
      font-size: 1.4rem;
      color: #e0e0e0;
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: 0.02em;
    }

    .product-subtitle {
      font-size: 1rem;
      color: #a0a0a0;
      margin-bottom: 28px;
      flex-grow: 1;
      line-height: 1.4;
    }

    .product-link {
      text-align: center;
    }

    .product-link a {
      display: inline-block;
      background: linear-gradient(135deg, #7c3aed, #4c1d95);
      color: white;
      padding: 14px 40px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1.05rem;
      border: none;
      box-shadow: 0 6px 18px rgba(124, 58, 237, 0.6);
      transition: all 0.3s ease;
      user-select: none;
    }

    .product-link a:hover,
    .product-link a:focus {
      background: linear-gradient(135deg, #9d7edd, #5b2eac);
      box-shadow: 0 10px 30px rgba(157, 126, 221, 0.8);
      transform: translateY(-3px);
      outline: none;
    }

    /* Footer */
    .footer {
      text-align: center;
      margin-top: auto;
      padding: 40px 60px;
      border-top: 1px solid #2a2a2a;
      color: #666666;
      font-size: 1rem;
      user-select: none;
      letter-spacing: 0.05em;
      background: #0d0d0d;
      box-shadow: inset 0 1px 3px rgba(255,255,255,0.05);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .main-content {
        padding: 0 40px;
      }

      .header {
        padding: 20px 40px;
      }
    }

    @media (max-width: 768px) {
      .header {
        padding: 16px 20px;
      }

      .nav-menu {
        gap: 24px;
        font-size: 0.95rem;
      }

      .main-content {
        padding: 0 20px;
        margin: 60px auto 80px;
      }

      .page-title {
        font-size: 2.2rem;
      }

      .intro-text {
        font-size: 1.1rem;
      }

      .products-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .product-card img {
        height: 180px;
      }

      .product-info {
        padding: 20px 24px;
      }

      .product-title {
        font-size: 1.2rem;
      }

      .product-subtitle {
        font-size: 0.9rem;
      }

      .product-link a {
        padding: 12px 32px;
        font-size: 1rem;
      }

      .footer {
        padding: 30px 20px;
        font-size: 0.9rem;
      }
    }
  </style>