body {
  background: #f5f5f5;
  color: #222;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
}

h1 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #333;
}

.bio {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

/* Grid for app icons */
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 400px;
  margin: 0 auto;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.app-icon i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.app-icon span {
  font-size: 0.9rem;
  font-weight: bold;
}

.app-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
/* Brand colors */
.app-icon .fa-whatsapp { color: #25D366; }
.app-icon .fa-instagram { color: #E4405F; }
.app-icon .fa-tiktok { color: #010101; }
.app-icon .fa-youtube { color: #FF0000; }
.app-icon .fa-telegram { color: #0088cc; }
.app-icon .fa-spotify { color: #1DB954; }
.app-icon .fa-x-twitter { color: #000000; }
.app-icon .fa-envelope { color: #D44638; }  
.app-icon .fa-linkedin { color: #0A66C2; }  