* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    :root {
      --bg: #faf9f7;
      --text: #1a1a1a;
      --text-light: #666;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    
    header {
      padding: 60px 0;
      text-align: center;
    }
    
    header h1 {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(48px, 8vw, 80px);
      font-weight: 400;
      margin-bottom: 16px;
    }
    
    header p {
      font-size: 18px;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .apps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 24px;
      padding: 40px 0 100px;
    }
    
    .app-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s, box-shadow 0.2s;
      display: block;
    }
    
    .app-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    
    .app-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #f0f0f0;
    }
    
    .app-card img[src*="logo.png"] {
      height: 120px;
      object-fit: contain;
      padding: 24px;
      background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    }
    
    .app-card-content {
      padding: 24px;
    }
    
    .app-card h2 {
      font-family: 'Instrument Serif', serif;
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 8px;
    }
    
    .app-card p {
      font-size: 14px;
      color: var(--text-light);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .app-card .app-link {
      display: inline-block;
      margin-top: 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      text-decoration: underline;
    }
    
    footer {
      padding: 40px 0;
      text-align: center;
      border-top: 1px solid #eee;
    }
    
    footer p {
      font-size: 14px;
      color: var(--text-light);
    }
    
    @media (max-width: 768px) {
      .apps-grid {
        grid-template-columns: 1fr;
      }
    }
