  body {
      background: linear-gradient(135deg, #ff9a9e, #fad0c4);
      color: #fff;
      font-family: 'Digital 7', monospace;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
    header {
      background: #ff6f91;
      padding: 20px;
      text-align: center;
      border-bottom: 5px dashed #ff9a9e;
      position: relative;
      z-index: 10;
    }
    header h1 {
      font-size: 48px;
      text-transform: uppercase;
      color: #fff;
      text-shadow: 3px 3px 0 #ff9a9e, -3px -3px 0 #ff9a9e;
      margin: 0;
      animation: glitch 1s infinite;
    }
    @keyframes glitch {
      0% { transform: translateX(0); }
      25% { transform: translateX(-5px); }
      50% { transform: translateX(5px); }
      75% { transform: translateX(-5px); }
      100% { transform: translateX(0); }
    }
    .container {
      max-width: 1200px;
      margin: 20px auto;
      padding: 20px;
      background-color: #222;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      border: 3px dotted #ff6f91;
      border-radius: 20px;
      position: relative;
      z-index: 1;
    }
    .about {
      margin-bottom: 40px;
    }
    .about h2 {
      font-size: 36px;
      color: #ff6f91;
      text-shadow: 2px 2px 0 #fad0c4;
    }
    .about p {
      font-size: 18px;
      line-height: 1.6;
      color: #e0e0e0;
    }
    .about .age-info {
      margin: 20px 0; /* Adds space around the age info */
    }
    .track-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .track {
      width: calc(33.333% - 20px);
      background: #fff;
      border: 3px solid #ff6f91;
      border-radius: 12px;
      padding: 15px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      position: relative;
      overflow: hidden;
      color: #333;
    }
    .track::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100px;
      height: 100px;
      background: rgba(255, 105, 180, 0.1);
      transform: rotate(-30deg);
      z-index: 0;
    }
    .track:hover {
      transform: scale(1.05);
      border-color: #fad0c4;
    }
    .track img {
      width: 100%;
      border-radius: 10px;
    }
    .track h3 {
      font-size: 24px;
      margin: 10px 0;
      color: #ff6f91;
      position: relative;
      z-index: 1;
    }
    footer {
      background-color: #222;
      color: #ff6f91;
      text-align: center;
      padding: 20px;
      font-size: 14px;
      border-top: 3px dotted #ff9a9e;
    }
    footer a {
      color: #ff6f91;
      text-decoration: none;
      font-weight: bold;
    }
  
