/* Hide mobile section by default */
#about-me-m {
  display: none;
}

@media (max-width: 20px) {
  #about-me { display: none; }  /* Hide desktop */
  #about-me-m { 
    display: block;
    padding: 2rem 1rem;
    background: #fff; /* White background */
    color: #222;
    text-align: center;
    overflow: hidden;
  }

  .zoom-wrapper-m h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ff512f, #dd2476, #b983ff, #6a0572);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
  }

  .zoom-wrapper-m p {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 2rem;
  }

  #cards-container-m {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .card-m {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff512f, #dd2476, #b983ff, #6a0572);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    opacity: 0; /* hidden for GSAP animation */
    transform: scale(0.8);
  }

  .card-m:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 30px rgba(185, 131, 255, 0.6), 0 0 20px rgba(255, 81, 47, 0.6);
  }

  .card-m p {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
  }

  .card-m a {
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffd700;
  }
}
