* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.3) 0%, rgba(22, 33, 62, 0.2) 50%, #0f0f0f 100%);
    color: #fff;
    display: flex;
    min-height: 100vh;
  }
  
  /* Sidebar */
  aside {
    width: 220px;
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.4) 0%, rgba(15, 15, 15, 0.8) 100%);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
  }
  
  .logo img {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    color: #bbb;
    transition: 0.2s;
  }
  
  .option:hover,
  .option.active {
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.15) 0%, rgba(75, 0, 130, 0.1) 100%);
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.2);
  }
  
  /* Main container */
  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgba(26, 10, 46, 0.3) 0%, rgba(15, 15, 15, 0.7) 100%);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
  }
  
  .title-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .search-bar {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(75, 0, 130, 0.05) 100%);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(5px);
  }
  
  .search-bar input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    width: 250px;
    font-size: 14px;
  }
  
  .inner-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .song-card {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.2) 0%, rgba(15, 15, 15, 0.6) 100%);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.2s;
    border: 1px solid rgba(138, 43, 226, 0.15);
    backdrop-filter: blur(5px);
  }
  
  .song-card:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(75, 0, 130, 0.15) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.15);
  }
  
  .song-card img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .song-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .song-info p {
    font-size: 12px;
    color: #aaa;
  }
  
  .download-btn {
    margin-top: auto;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8) 0%, rgba(75, 0, 130, 0.8) 100%);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(138, 43, 226, 0.3);
  }
  
  .download-btn:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.9) 0%, rgba(90, 10, 138, 0.9) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
  }
  