/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Press+Start+2P&display=swap');

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #f58ca6, #d0d7e2);
  color: #eaeaf2;
  font-family: 'Cedarville Cursive', cursive;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: url('https://cdn-icons-png.flaticon.com/512/2983/2983596.png'), auto;
  user-select: none;
}

.welcome-message {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #bfc8db;
  text-shadow: 0 0 8px #f9c5d5;
  text-align: center;
}

.app-container {
  display: flex;
  gap: 2.5rem;
}

.app {
  text-decoration: none;
  background: #f9c5d5cc;
  border: 3px solid #bfc8db;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  width: 100px;
  text-align: center;
  color: #4a344b;
  font-family: 'Press Start 2P', cursive;
  box-shadow: 0 0 15px #d6a6b8cc;
  transition: all 0.3s ease;
  user-select: none;
}

.app:hover {
  background: #d77294;
  color: #eaeaf2;
  box-shadow: 0 0 25px #f3a1b4;
  transform: scale(1.1);
}

.icon {
  font-size: 3rem;
  margin-bottom: 0.7rem;
}

.label {
  font-size: 0.9rem;
}

.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.music-player button {
  background: #d77294;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px #f9c5d5;
  transition: background 0.3s ease;
  user-select: none;
}

.music-player button:hover {
  background: #f58ca6;
}
