* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  background:
    radial-gradient(
      circle at top left,
      rgba(120,20,20,0.35),
      transparent 35%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(80,10,10,0.28),
      transparent 40%
    ),

    linear-gradient(
      135deg,
      #050505,
      #0b0707,
      #120909
    );

  background-attachment: fixed;

  color: white;

  font-family: Arial;
}
.container {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
}

.search-box {
  margin-bottom: 30px;
}

.search-box input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 20px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.library {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.folder {
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 25px;
}

.folder-header {
  margin-bottom: 20px;
}

.songs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.song {
  background: rgba(255,255,255,0.06);
  padding: 20px;
  border-radius: 18px;
}

.song h3 {
  margin-bottom: 18px;
}

.song-actions {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  background: rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  text-align: center;
}

.upload-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.upload-form input,
.upload-form select,
.upload-form button {
  padding: 16px;
  border-radius: 14px;
  border: none;
}

.upload-form button {
  background: white;
  cursor: pointer;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.admin-song {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 18px;
  border-radius: 16px;
}

.delete-btn {
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 12px;
}

.drop-zone {
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 60px 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  background: rgba(255,255,255,0.03);
}

.drop-zone:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.4);
}

.drop-zone.dragover {
  transform: scale(1.01);
  border-color: white;
}

#uploadPreview {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-item {
  background: rgba(255,255,255,0.05);
  padding: 14px 18px;
  border-radius: 14px;
}

.progress-wrapper {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  margin-top: 25px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: white;
  transition: 0.3s ease;
}

/* =========================
   EDIT PAGE
========================= */

.edit-page{
  min-height:100vh;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  position:relative;
  overflow:hidden;
}

.edit-page::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:radial-gradient(
    circle,
    rgba(255,255,255,0.06),
    transparent 70%
  );
  top:-300px;
  right:-250px;
  filter:blur(90px);
  pointer-events:none;
}

.edit-page::after{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(
    circle,
    rgba(255,255,255,0.03),
    transparent 70%
  );
  bottom:-250px;
  left:-200px;
  filter:blur(100px);
  pointer-events:none;
}

.edit-container{
  width:100%;
  max-width:620px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:34px;
  padding:38px;
  backdrop-filter:blur(25px);
  box-shadow:
    0 25px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position:relative;
  overflow:hidden;
  z-index:2;
}

.edit-container::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      transparent 40%
    );
  pointer-events:none;
}

/* =========================
   HEADER
========================= */

.edit-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:35px;
  gap:20px;
}

.edit-title{
  display:flex;
  align-items:center;
  gap:16px;
}

.edit-icon{
  width:64px;
  height:64px;
  border-radius:22px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.edit-title h1{
  font-size:30px;
  font-weight:700;
  letter-spacing:-1px;
  margin-bottom:4px;
}

.edit-title p{
  color:rgba(255,255,255,0.45);
  font-size:14px;
}

.back-button{
  text-decoration:none;
  color:white;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:14px 18px;
  border-radius:18px;
  transition:.25s ease;
  font-size:14px;
  white-space:nowrap;
}

.back-button:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-2px);
}

/* =========================
   SONG PREVIEW
========================= */

.song-preview-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:28px;
  padding:22px;
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:32px;
}

.song-preview-icon{
  width:72px;
  height:72px;
  border-radius:24px;
  background:rgba(255,255,255,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  flex-shrink:0;
}

.song-preview-info h2{
  font-size:22px;
  line-height:1.4;
  margin-bottom:6px;
}

.song-preview-info span{
  color:rgba(255,255,255,0.45);
  font-size:14px;
}

/* =========================
   FORM
========================= */

.edit-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.form-group label{
  font-size:14px;
  font-weight:500;
  color:rgba(255,255,255,0.6);
}

.form-input,
.form-select{
  width:100%;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
  padding:18px 20px;
  border-radius:20px;
  outline:none;
  transition:.25s ease;
  font-size:15px;
}

.form-input:focus,
.form-select:focus{
  background:rgba(255,255,255,0.07);
  border-color:rgba(255,255,255,0.2);
  transform:translateY(-1px);
}

.form-select option{
  background:#111;
  color:white;
}

/* =========================
   BUTTONS
========================= */

.edit-actions{
  display:flex;
  gap:14px;
  margin-top:8px;
}

.save-button{
  flex:1;
  border:none;
  outline:none;
  padding:18px;
  border-radius:20px;
  background:white;
  color:black;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:.25s ease;
}

.save-button:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 35px rgba(255,255,255,0.12);
}

.delete-button{
  text-decoration:none;
  padding:18px 24px;
  border-radius:20px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s ease;
  font-weight:500;
}

.delete-button:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.08);
}

/* =========================
   MOBILE
========================= */

@media(max-width:700px){

  .edit-container{
    padding:28px;
    border-radius:28px;
  }

  .edit-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .song-preview-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .edit-actions{
    flex-direction:column;
  }

  .edit-title h1{
    font-size:25px;
  }

}

/* =========================
   ADMIN PAGE
========================= */

.admin-page{
  min-height:100vh;
  background:transparent;
  padding:40px 25px;
  position:relative;
  overflow:hidden;
}

.admin-page::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.05),
      transparent 70%
    );
  top:-300px;
  right:-250px;
  filter:blur(100px);
  pointer-events:none;
}

.admin-page::after{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.03),
      transparent 70%
    );
  bottom:-250px;
  left:-200px;
  filter:blur(120px);
  pointer-events:none;
}

.admin-container{
  width:100%;
  max-width:1400px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* =========================
   HEADER
========================= */

.admin-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:35px;
}

.admin-title{
  display:flex;
  align-items:center;
  gap:18px;
}

.admin-icon{
  width:72px;
  height:72px;
  border-radius:24px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  backdrop-filter:blur(10px);
}

.admin-title h1{
  font-size:36px;
  font-weight:700;
  letter-spacing:-1px;
  margin-bottom:5px;
}

.admin-title p{
  color:rgba(255,255,255,0.45);
  font-size:14px;
}

.admin-home-btn{
  text-decoration:none;
  color:white;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:15px 20px;
  border-radius:18px;
  transition:.25s ease;
  font-size:14px;
  white-space:nowrap;
}

.admin-home-btn:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-2px);
}

/* =========================
   UPLOAD CARD
========================= */

.upload-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:34px;
  padding:35px;
  backdrop-filter:blur(25px);
  margin-bottom:35px;
  position:relative;
  overflow:hidden;
}

.upload-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.04),
      transparent 40%
    );
  pointer-events:none;
}

.upload-form{
  display:flex;
  flex-direction:column;
  gap:24px;
  position:relative;
  z-index:2;
}

/* =========================
   FORM
========================= */

.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.form-group label{
  color:rgba(255,255,255,0.6);
  font-size:14px;
  font-weight:500;
}

.form-select{
  width:100%;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
  padding:18px 20px;
  border-radius:20px;
  outline:none;
  transition:.25s ease;
  font-size:15px;
}

.form-select:focus{
  border-color:rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.07);
}

.form-select option{
  background:#111;
  color:white;
}

/* =========================
   DROPZONE
========================= */

.drop-zone{
  width:100%;
  min-height:260px;
  border-radius:30px;
  border:2px dashed rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.03);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s ease;
  position:relative;
  overflow:hidden;
}

.drop-zone::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.04),
      transparent 40%
    );
  opacity:0;
  transition:.3s ease;
}

.drop-zone:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,0.25);
  background:rgba(255,255,255,0.04);
}

.drop-zone:hover::before{
  opacity:1;
}

.drop-zone.dragover{
  border-color:white;
  transform:scale(1.01);
  background:rgba(255,255,255,0.05);
}

.drop-content{
  text-align:center;
  position:relative;
  z-index:2;
}

.drop-icon{
  font-size:60px;
  margin-bottom:18px;
}

.drop-content h2{
  font-size:28px;
  margin-bottom:10px;
  letter-spacing:-1px;
}

.drop-content p{
  color:rgba(255,255,255,0.5);
}

/* =========================
   FILE PREVIEW
========================= */

.upload-preview{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.preview-item{
  display:flex;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  padding:16px 18px;
  border-radius:18px;
  animation:fadeUp .35s ease;
}

.preview-item span{
  font-size:22px;
}

.preview-item p{
  color:rgba(255,255,255,0.8);
  word-break:break-all;
}

/* =========================
   PROGRESS BAR
========================= */

.progress-wrapper{
  width:100%;
  height:12px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
}

.progress-bar{
  width:0%;
  height:100%;
  background:white;
  transition:.3s ease;
}

/* =========================
   UPLOAD BUTTON
========================= */

.upload-button{
  border:none;
  outline:none;
  background:white;
  color:black;
  padding:18px;
  border-radius:20px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
}

.upload-button:hover{
  transform:translateY(-2px);
  box-shadow:
    0 15px 35px rgba(255,255,255,0.12);
}

/* =========================
   SONG LIST
========================= */

.admin-song-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.admin-song-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:26px;
  padding:22px;
  backdrop-filter:blur(20px);
  transition:.25s ease;
}

.admin-song-card:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.05);
}

.admin-song-info{
  display:flex;
  align-items:center;
  gap:18px;
}

.song-thumbnail{
  width:68px;
  height:68px;
  border-radius:22px;
  background:rgba(255,255,255,0.05);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  flex-shrink:0;
}

.admin-song-info h3{
  font-size:20px;
  margin-bottom:6px;
}

.admin-song-info p{
  color:rgba(255,255,255,0.45);
  font-size:14px;
  text-transform:capitalize;
}

/* =========================
   ACTION BUTTONS
========================= */

.admin-song-actions{
  display:flex;
  gap:12px;
}

.edit-button,
.delete-button{
  text-decoration:none;
  padding:14px 20px;
  border-radius:18px;
  font-size:14px;
  font-weight:500;
  transition:.25s ease;
}

.edit-button{
  background:white;
  color:black;
}

.edit-button:hover{
  transform:translateY(-2px);
  box-shadow:
    0 10px 25px rgba(255,255,255,0.12);
}

.delete-button{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
}

.delete-button:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.08);
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(12px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

  .admin-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .admin-song-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .admin-song-actions{
    width:100%;
  }

  .edit-button,
  .delete-button{
    flex:1;
    text-align:center;
  }

}

@media(max-width:700px){

  .admin-page{
    padding:25px 15px;
  }

  .upload-card{
    padding:24px;
    border-radius:28px;
  }

  .drop-zone{
    min-height:220px;
    border-radius:24px;
  }

  .drop-content h2{
    font-size:22px;
  }

  .admin-title h1{
    font-size:28px;
  }

  .admin-icon{
    width:62px;
    height:62px;
    font-size:28px;
  }

  .song-thumbnail{
    width:58px;
    height:58px;
    font-size:24px;
  }

}

/* =========================
   LIBRARY PAGE
========================= */

.library-page{
  min-height:100vh;
  background:transparent;
  padding:40px 25px;
  position:relative;
  overflow:hidden;
}

.library-page::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.05),
      transparent 70%
    );
  top:-300px;
  right:-250px;
  filter:blur(100px);
  pointer-events:none;
}

.library-page::after{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.03),
      transparent 70%
    );
  bottom:-250px;
  left:-200px;
  filter:blur(120px);
  pointer-events:none;
}

.library-container{
  width:100%;
  max-width:1450px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* =========================
   HERO
========================= */

.hero-section{
  margin-bottom:35px;
}

.hero-content{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:36px;
  padding:50px;
  text-align:center;
  backdrop-filter:blur(25px);
  position:relative;
  overflow:hidden;
}

.hero-content::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      transparent 40%
    );
  pointer-events:none;
}

.hero-icon{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  z-index:0;
}

.hero-icon img{
  width:100%;
  height:auto;

  filter:invert(1);
  opacity:0.15;
}

.hero-content h1{
  font-size:52px;
  font-weight:700;
  letter-spacing:-2px;
  margin-bottom:14px;
  line-height:1.1;
}

.hero-content p{
  color:rgba(255,255,255,0.5);
  font-size:16px;
}

/* =========================
   SEARCH
========================= */

.search-wrapper{
  margin-bottom:35px;
}

.search-input-wrapper{
  position:relative;
}

.search-icon{
  position:absolute;
  top:50%;
  left:22px;
  transform:translateY(-50%);
  font-size:20px;
  color:rgba(255,255,255,0.45);
}

.search-input-wrapper input{
  width:100%;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:22px 22px 22px 60px;
  color:white;
  font-size:16px;
  outline:none;
  backdrop-filter:blur(20px);
  transition:.25s ease;
}

.search-input-wrapper input:focus{
  border-color:rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.06);
}

.search-input-wrapper input::placeholder{
  color:rgba(255,255,255,0.35);
}

/* =========================
   SEARCH RESULT
========================= */

.search-results{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:35px;
}

/* =========================
   LIBRARY GRID
========================= */
/*
.library-grid{
  display:grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap:28px;
}
*/
/* =========================
   FOLDER CARD
========================= */

.folder-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:32px;
  padding:28px;
  backdrop-filter:blur(25px);
  position:relative;
  overflow:hidden;
  z-index:2;
  margin-bottom:60px;
}

.folder-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      transparent 40%
    );
  pointer-events:none;
}

.folder-header{
  margin-bottom:24px;
}

.folder-title{
  display:flex;
  align-items:center;
  gap:16px;
}

.folder-icon{
  width:68px;
  height:68px;
  border-radius:22px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  flex-shrink:0;
}

.folder-title h2{
  font-size:28px;
  margin-bottom:5px;
  text-transform:capitalize;
}

.folder-title span{
  color:rgba(255,255,255,0.45);
  font-size:14px;
}

/* =========================
   SONG LIST
========================= */
/*
.song-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}
*/
/* =========================
   SONG CARD
========================= */

.song-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:24px;
  padding:18px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  transition:.25s ease;

  overflow:hidden;
}

.song-card:hover{
  background:rgba(255,255,255,0.05);
}

.song-info{
  display:flex;
  flex:1;
  min-width:0;
  align-items:center;
  gap:16px;
}

.song-cover{
  width:60px;
  height:60px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  flex-shrink:0;
}

.song-info h3{
  font-size:18px;
  margin-bottom:6px;
  line-height:1.3;
}

.song-info p{
  color:rgba(255,255,255,0.45);
  font-size:13px;
}

/* =========================
   ACTIONS
========================= */

.song-actions{
  display:flex;
  gap:10px;
  flex-shrink:0;
}

.preview-btn,
.download-btn{
  text-decoration:none;
  padding:13px 18px;
  border-radius:16px;
  font-size:14px;
  font-weight:500;
  transition:.25s ease;
  white-space:nowrap;
}

.preview-btn{
  background:white;
  color:black;
}

.preview-btn:hover{
  transform:translateY(-2px);
  box-shadow:
    0 10px 25px rgba(255,255,255,0.12);
}

.download-btn{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
}

.download-btn:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.08);
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

/*  .library-grid{
    grid-template-columns:1fr;
  }
*/
  .song-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .song-actions{
    width:100%;
  }

  .preview-btn,
  .download-btn{
    flex:1;
    text-align:center;
  }

}

@media(max-width:700px){

  .library-page{
    padding:25px 15px;
  }

  .hero-content{
    padding:35px 25px;
    border-radius:28px;
  }

  .hero-content h1{
    font-size:36px;
  }

  .hero-icon{
    width:74px;
    height:74px;
    font-size:34px;
  }

  .folder-card{
    padding:22px;
    border-radius:26px;
  }

  .folder-title h2{
    font-size:22px;
  }

  .folder-icon{
    width:58px;
    height:58px;
    font-size:26px;
  }

  .song-cover{
    width:52px;
    height:52px;
    font-size:22px;
  }

}


/* =========================
   SHEET THUMBNAIL
========================= */

.sheet-thumbnail{
  width:84px;
  height:112px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  flex-shrink:0;
  background:white;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35);

  transition:.25s ease;
}

.sheet-thumbnail img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.3s ease;
}

.sheet-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to bottom,
      transparent 45%,
      rgba(0,0,0,0.7)
    );
}

.sheet-label{
  position:absolute;
  bottom:8px;
  left:8px;

  background:rgba(255,255,255,0.9);
  color:black;

  font-size:11px;
  font-weight:700;

  padding:4px 8px;
  border-radius:999px;

  backdrop-filter:blur(10px);
}

.song-card:hover .sheet-thumbnail{
  transform:
    translateY(-3px)
    rotate(-1deg);
}

.song-card:hover .sheet-thumbnail img{
  transform:scale(1.05);
}

.badge.ordinarium{ background:#ff4d4d; color:white; }
.badge.komuni{ background:#4da6ff; color:white; }
.badge.natal{ background:#2ecc71; color:white; }
.badge.paskah{ background:#f1c40f; color:black; }

/* =========================
   CATEGORY CONFIG
========================= */

.category-row{
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
}

/* SELECT */

.category-row .form-select{

  flex:1;

  height:54px;

  padding:0 50px 0 18px;

  border-radius:18px;

  border:1px solid rgba(255,255,255,0.12);

  background:
    rgba(255,255,255,0.08);

  color:white;

  outline:none;

  font-size:15px;

  backdrop-filter:blur(18px);

  transition:.25s ease;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  cursor:pointer;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");

  background-repeat:no-repeat;

  background-position:right 18px center;

  background-size:18px;
}

.category-row .form-select:focus{

  border-color:rgba(255,255,255,0.22);

  background:rgba(255,255,255,0.12);

}

.category-row .form-select option{
  background:#111;
  color:white;
}

.form-select::-ms-expand{
  display:none;
}

/* CONFIG BUTTON */

.add-category-btn{

  width:54px;
  height:54px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0;

  line-height:1;

  font-size:22px;

  border:none;
  border-radius:18px;

  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);

  color:black;

  cursor:pointer;

  backdrop-filter:blur(18px);

  transition:.25s ease;
}

.add-category-btn:hover{

  transform:translateY(-2px);

  background:rgba(255,255,255,0.14);
 color:white;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.25);

}

/* =========================
   MODAL
========================= */

.modal{

  position:fixed;
  inset:0;

  display:none;

  justify-content:center;
  align-items:center;

  padding:20px;

  background:rgba(0,0,0,0.45);

  backdrop-filter:blur(12px);

  z-index:9999;
}

.modal.active{
  display:flex;
}

/* =========================
   MODAL BOX
========================= */

.modal-box{

  width:100%;
  max-width:480px;

  border-radius:32px;

  padding:28px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  backdrop-filter:blur(30px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);

  animation:modalShow .25s ease;
}

@keyframes modalShow{

  from{
    opacity:0;
    transform:translateY(12px) scale(.98);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }

}

.modal-box h3{

  font-size:26px;

  margin-bottom:22px;

  font-weight:700;

  letter-spacing:-0.5px;
}

/* =========================
   ADD CATEGORY FORM
========================= */

.category-form{

  display:flex;

  gap:12px;

  margin-bottom:24px;
}

.category-form input{

  flex:1;

  height:52px;

  border:none;
  outline:none;

  padding:0 18px;

  border-radius:18px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.12);

  color:white;

  font-size:15px;

  backdrop-filter:blur(12px);
}

.category-form input::placeholder{
  color:rgba(255,255,255,0.45);
}

/* =========================
   BUTTONS
========================= */

.save-btn,
.cancel-btn,
.delete-cat-btn{

  border:none;

  cursor:pointer;

  transition:.2s ease;
}

/* SAVE */

.save-btn{

  width:52px;
  height:52px;

  border-radius:18px;

  background:white;

  color:black;

  font-size:18px;

  font-weight:700;
}

.save-btn:hover{

  transform:translateY(-2px);

  box-shadow:
    0 10px 30px rgba(255,255,255,0.18);
}

/* CATEGORY LIST */

.category-list{

  display:flex;
  flex-direction:column;

  gap:12px;

  max-height:260px;

  overflow:auto;

  padding-right:4px;
}

.category-list::-webkit-scrollbar{
  width:6px;
}

.category-list::-webkit-scrollbar-thumb{

  background:rgba(255,255,255,0.2);

  border-radius:999px;
}

/* ITEM */

.category-item{

  display:flex;

  justify-content:space-between;

  align-items:center;

  padding:14px 16px;

  border-radius:20px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  transition:.2s ease;
}

.category-item:hover{

  background:rgba(255,255,255,0.1);

  transform:translateY(-1px);
}

.category-item span{

  font-size:15px;

  font-weight:500;
}

/* DELETE */

.delete-cat-btn{

  width:40px;
  height:40px;

  border-radius:14px;

  background:rgba(255,80,80,0.16);

  border:1px solid rgba(255,120,120,0.14);

  color:white;

  font-size:16px;
}

.delete-cat-btn:hover{

  transform:scale(1.05);

  background:rgba(255,80,80,0.28);
}

/* CLOSE */

.cancel-btn{

  width:100%;

  margin-top:22px;

  height:50px;

  border-radius:18px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.1);

  color:white;

  font-size:14px;

  font-weight:500;
}

.cancel-btn:hover{

  background:rgba(255,255,255,0.14);
}

/* =========================
   INFINITY SLIDER
========================= */

.slider-wrap{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  padding-bottom:10px;
  scrollbar-width:none;
  position:relative;
}

.slider-wrap::-webkit-scrollbar{
  display:none; /* chrome */
}

.slider-track{
  display:flex;
  gap:20px;
  width:100%;
  padding:5px 0;
}

/* =========================
   SONG CARD
========================= */

.song-card{
  width:280px;
  min-width:280px;
  max-width:280px;

  display:flex;
  flex-direction:column;
  align-items:flex-start;

  gap:14px;
  padding:18px;

  overflow:hidden;
}

.song-card:hover{

  transform:
    translateY(-4px)
    scale(1.01);

  background:rgba(255,255,255,0.06);

}

/* =========================
   SONG INFO
========================= */

.song-info{
  width:100%;
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.song-info h3{
  max-width:150px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.song-info p{

  color:rgba(255,255,255,0.45);

  font-size:13px;
}

/* =========================
   ACTIONS
========================= */

.song-actions{
  width:100%;
  display:flex;
  gap:10px;
}

.preview-btn,
.download-btn{
  flex:1;
  text-align:center;
  padding:12px 0;
  font-size:13px;
}

.preview-btn{

  background:white;
  color:black;
}

.download-btn{

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  color:white;
}

.preview-btn:hover,
.download-btn:hover{

  transform:translateY(-2px);
}

/* =========================
   MOBILE
========================= */

@media(max-width:700px){

  .song-card{

    min-width:320px;
    max-width:320px;

    flex-direction:column;
    align-items:flex-start;
  }

  .song-actions{

    width:100%;
  }

  .preview-btn,
  .download-btn{

    flex:1;
    text-align:center;
  }

}

/* =========================
   FOOTER
========================= */

.tm3-footer{

  margin-top:80px;

  background:
    rgba(255,255,255,0.04);

  border-top:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(20px);

  padding:
    40px 25px 25px;

  position:relative;
  overflow:hidden;
}

.tm3-footer::before{

  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.04),
      transparent 40%
    );

  pointer-events:none;
}

.footer-content{

  max-width:1400px;

  margin:auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:30px;

  position:relative;
  z-index:2;
}

.footer-logo{

  display:flex;
  align-items:center;
  gap:18px;
}

.footer-logo img{

  width:58px;
  height:58px;

  object-fit:contain;

  filter:invert(1);
  opacity:.8;
}

.footer-logo h3{

  font-size:20px;
  margin-bottom:6px;
}

.footer-logo p{

  color:
    rgba(255,255,255,0.45);

  font-size:14px;
}

.footer-links{

  display:flex;
  gap:18px;
}

.footer-links a{

  text-decoration:none;

  color:white;

  padding:
    12px 18px;

  border-radius:16px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  transition:.25s ease;
}

.footer-links a:hover{

  transform:translateY(-2px);

  background:
    rgba(255,255,255,0.08);
}

.footer-bottom{

  margin-top:30px;

  padding-top:22px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  text-align:center;

  color:
    rgba(255,255,255,0.4);

  font-size:13px;

  position:relative;
  z-index:2;
}

/* MOBILE */

@media(max-width:700px){

  .footer-content{

    flex-direction:column;
    align-items:flex-start;
  }

  .footer-links{

    width:100%;
  }

  .footer-links a{

    flex:1;
    text-align:center;
  }

}