 #ts-cards {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: 100%;
      max-width: 1400px;
      min-height: 600px; /* Full viewport height control here */
      margin: 0 auto;
      padding: 60px 20px;
      background: #ffffff; /* Optional: you can change this */
    }

    .ts-header {
      margin-bottom: 50px;
    }

    .ts-title {
      font-size: 3rem;
      font-weight: 700;
      color: #0a0a0a;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    .ts-subtitle {
      color: #64748b;
      font-size: 1.15rem;
      max-width: 700px;
      margin: 0 auto;
    }

    .ts-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      max-width: 1000px;
    }

    .ts-card {
      background: linear-gradient(145deg, #fff, #f8fafc);
      border-radius: 28px;
      width: 160px;
      height: 160px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      border: 2px solid transparent;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      cursor: pointer;
    }

    .ts-card::before {
      content: '';
      position: absolute;
      inset: -100%;
      background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent 60%);
      animation: ts-rotate 6s linear infinite;
      opacity: 0;
      transition: opacity 0.5s;
    }

    @keyframes ts-rotate {
      100% { transform: rotate(360deg); }
    }

    .ts-card::after {
      content: '';
      position: absolute;
      inset: 2px;
      background: #fff;
      border-radius: 26px;
      z-index: 0;
    }

    .ts-card:hover {
      transform: translateY(-15px) scale(1.08) rotate(2deg);
      box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25);
      border-color: rgba(102, 126, 234, 0.3);
    }

    .ts-card:hover::before { opacity: 1; }

    .ts-card:hover .ts-icon {
      transform: scale(1.25) rotateY(360deg);
    }

    .ts-card:hover .ts-name {
      color: #667eea;
    }

    .ts-card:hover .ts-glow {
      opacity: 1;
      transform: scale(1.5);
    }

    .ts-icon-wrap {
      position: relative;
      z-index: 1;
      margin-bottom: 15px;
    }

    .ts-glow {
      position: absolute;
      inset: -25px;
      border-radius: 50%;
      opacity: 0;
      transition: all 0.6s;
      z-index: -1;
    }

    .ts-icon {
      font-size: 3.5rem;
      transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: inline-block;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }

    .ts-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: #1e293b;
      transition: all 0.4s;
      position: relative;
      z-index: 1;
      margin-bottom: 4px;
    }

    .ts-badge {
      font-size: 0.65rem;
      color: #94a3b8;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }

    .ts-react .ts-icon { color: #61dafb; }
    .ts-react .ts-glow { background: radial-gradient(circle, rgba(97, 218, 251, 0.3), transparent 70%); }

    .ts-vue .ts-icon { color: #42b883; }
    .ts-vue .ts-glow { background: radial-gradient(circle, rgba(66, 184, 131, 0.3), transparent 70%); }

    .ts-js .ts-icon { color: #f7df1e; }
    .ts-js .ts-glow { background: radial-gradient(circle, rgba(247, 223, 30, 0.3), transparent 70%); }

    .ts-html .ts-icon { color: #e34f26; }
    .ts-html .ts-glow { background: radial-gradient(circle, rgba(227, 79, 38, 0.3), transparent 70%); }

    .ts-css .ts-icon { color: #1572b6; }
    .ts-css .ts-glow { background: radial-gradient(circle, rgba(21, 114, 182, 0.3), transparent 70%); }

    .ts-sass .ts-icon { color: #cc6699; }
    .ts-sass .ts-glow { background: radial-gradient(circle, rgba(204, 102, 153, 0.3), transparent 70%); }

    .ts-git .ts-icon { color: #f05032; }
    .ts-git .ts-glow { background: radial-gradient(circle, rgba(240, 80, 50, 0.3), transparent 70%); }

    .ts-npm .ts-icon { color: #cb3837; }
    .ts-npm .ts-glow { background: radial-gradient(circle, rgba(203, 56, 55, 0.3), transparent 70%); }

    @media (max-width: 992px) {
      .ts-title { font-size: 3rem; }
      .ts-card { width: 140px; height: 140px; }
    }

    @media (max-width: 768px) {
      .ts-title { font-size: 2.5rem; }
      .ts-subtitle { font-size: 1.05rem; }
      .ts-grid { gap: 20px; }
    }

    @media (max-width: 576px) {
      .ts-title { font-size: 2rem; }
      .ts-grid { gap: 18px; }
      .ts-card { width: 115px; height: 115px; }
    }

    @media (max-width: 400px) {
      .ts-card { width: 105px; height: 105px; }
      .ts-icon { font-size: 2.2rem; }
    }