@font-face {
    font-family: 'tommy';
    src: url('/MADE TOMMY Bold_PERSONAL USE.otf') format('opentype');
    font-weight: bold;
}

.hidden {
    display: none !important;
}

:root {
    --bg-light: #e5e6e7;
    --bg-dark: #111;
    --text-light: #333;
    --text-dark: #ddd;
    --accent: #545a56;
    --container-light: rgba(230, 228, 228, 0.9);
    --container-dark: rgba(0, 0, 0, 0.8);
    --transition-duration: 0.5s;
}

body {
    font-family: 'tommy', sans-serif;
    background: linear-gradient(135deg, var(--bg-light), #c3cfe2);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: background var(--transition-duration) ease-in-out, color var(--transition-duration) ease-in-out;
}

body.dark-mode {
    background: linear-gradient(135deg, var(--bg-dark), #1c1c1c);
    color: var(--text-dark);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--container-light);
    padding: 2em;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transition: all var(--transition-duration) ease-in-out;
}

.dark-mode .container {
    background: var(--container-dark);
}

.album-art {
    margin: 0 auto 1.5em;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.5s ease-in-out;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.5s ease, box-shadow 0.5s ease;
}

.album-art img.loaded {
    opacity: 1;
}

.album-art:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.song-details {
    text-align: center;
    opacity: 1;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.song-details h2, .song-details h3, .song-details p {
    margin: 0.5em 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.song-details h2 {
    font-size: 1.8em;
    line-height: 1.2;
    color: var(--text-light);
    transition: color 0.5s ease-in-out;
    max-height: none;
}

.dark-mode .song-details h2 {
    color: var(--text-dark);
}

.song-details h3 {
    font-size: 1.2em;
    line-height: 1.2;
    color: var(--accent);
    transition: color 0.5s ease-in-out;
}

.song-details p {
    font-size: 1em;
    line-height: 1.2;
    color: #999;
    transition: color 0.5s ease-in-out;
}

.dark-mode .song-details p {
    color: #888;
}

.login-btn {
    display: inline-block;
    margin-top: 2em;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    background-color: var(--accent);
    padding: 0.8em 1.5em;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.login-btn:hover {
    background-color: #17a74b;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(29, 185, 84, 0.3);
}

.hidden {
    display: none;
}

.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#theme-toggle-btn {
    background: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
  
#theme-toggle-btn:hover {
    transform: scale(1.1);
    transition: ease-in-out;
}
  
  .note-head, .note-stem, .note-flag {
    stroke: var(--text-light);
    stroke-width: 2;
    transition: all 0.5s ease;
    position: absolute;
  }
  
  .note-head {
    fill: var(--text-light);
  }
  
  body.dark-mode .note-head,
  body.dark-mode .note-stem,
  body.dark-mode .note-flag {
    stroke: var(--text-dark);
  }
  
  body.dark-mode .note-head {
    fill: var(--text-dark);
  }
  
  .note-flag {
    transition: d 0.5s ease;
  }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Animated background */
body::before,
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

body::before {
    opacity: 0.1; /* Reduced opacity */
    background: linear-gradient(45deg, rgba(133, 180, 184, 0.3), rgba(120, 191, 179, 0.3), rgba(150, 150, 150, 0.3), rgba(140, 140, 140, 0.3));
    z-index: -3;
}

body::after {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    background-size: 200% 200%;
    animation: gradientAnimation2 20s ease infinite;
    z-index: -2;
}

@keyframes gradientAnimation2 {
    0% { background-position: 50% 0%; }
    50% { background-position: 50% 100%; }
    100% { background-position: 50% 0%; }
}

/* Dark mode background */
body.dark-mode::before {
    background: linear-gradient(45deg, rgba(17,17,17,0.3), rgba(25,25,25,0.3), rgba(17,17,17,0.3), rgba(25,25,25,0.3));
}

body.dark-mode::after {
    background: linear-gradient(135deg, rgba(34,34,34,0.05), rgba(51,51,51,0.1), rgba(34,34,34,0.05), rgba(51,51,51,0.1));
}

.status-indicator {
    position: absolute;
    top: 70px;
    right: 12px;
    transition: transform 0.3s;
  }
  
  #status-indicator {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  #status-indicator:hover {
    transform: scale(1.1);
  }
  
  .indicator-note, .indicator-bar {
    fill: var(--text-light);
    transition: all 0.5s ease;
  }
  
  body.dark-mode .indicator-note,
  body.dark-mode .indicator-bar {
    fill: var(--text-dark);
  }

#one {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 0.8em;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5em;
        width: 95%;
    }

    .album-art {
        max-width: 250px;
    }

    .song-details h2 {
        font-size: 1.6em;
    }

    .song-details h3 {
        font-size: 1.1em;
    }

    .song-details p {
        font-size: 0.9em;
    }
}

#dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.2; /* Reduced opacity */
    filter: blur(100px);
    transition: background-color 2s ease;
}
  
  @keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Noise overlay */
  #noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05; /* Adjust this value to increase/decrease noise visibility */
    z-index: -2;
    pointer-events: none;
    background-image: url('noise.png'); /* We'll create this image */
    background-repeat: repeat;
}

/* Add this to your existing keyframes */
@keyframes noiseAnimation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}

#dynamic-background,
#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#dynamic-background {
    z-index: -3;
}

#noise-overlay {
    z-index: -2;
    opacity: 0.05; /* Adjust this value to increase/decrease noise visibility */
}

.seek-bar-container {
    width: 100%;
    margin: 20px 0;
    position: relative;
}

.seek-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(var(--text-light), 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.seek-bar-background {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(var(--text-light), 0.2);
}

.seek-bar-progress {
    width: 0;
    height: 100%;
    position: absolute;
    background-color: var(--text-light);
    transition: width 0.1s linear;
}

.seek-bar-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-light);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.1s linear;
}

.seek-bar-time {
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 12px;
    color: var(--text-light);
}

body.dark-mode .seek-bar-background {
    background-color: rgba(var(--text-dark), 0.2);
}

body.dark-mode .seek-bar-progress,
body.dark-mode .seek-bar-indicator {
    background-color: var(--text-dark);
}

body.dark-mode .seek-bar-time {
    color: var(--text-dark);
}

.playback-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.control-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0 15px; /* Adjust this value to increase/decrease spacing between buttons */
    transition: transform 0.2s ease;
}

.control-btn:first-child {
    margin-left: 0;
}

.control-btn:last-child {
    margin-right: 0;
}

.control-btn:hover {
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    transition: fill 0.3s ease;
}

.control-btn path, .control-btn rect {
    fill: var(--text-light);
    transition: fill 0.3s ease;
}

body.dark-mode .control-btn path, 
body.dark-mode .control-btn rect {
    fill: var(--text-dark);
}

body.dark-mode .control-btn svg {
    fill: var(--text-dark);
}

#play-pause-btn {
    transform: scale(1.2);
}

#play-pause-btn:hover {
    transform: scale(1.3);
}

body.minimalist {
    background: #fff;
    color: #000;
    transition: all var(--transition-duration) ease-in-out;
}

body.minimalist.dark-mode {
    background: #000;
    color: #fff;
}

.minimalist .container {
    background: #fff;
    border: 2px solid #000;
    border-radius: 0;
    box-shadow: none;
    transition: all var(--transition-duration) ease-in-out;
}

.minimalist.dark-mode .container {
    background: #000;
    border-color: #fff;
}

.minimalist .album-art,
.minimalist .album-art img {
    border-radius: 0;
    transition: all var(--transition-duration) ease-in-out;
}

.minimalist .login-btn {
    background-color: #000;
    color: #fff;
    border-radius: 0;
    transition: all var(--transition-duration) ease-in-out;
}

.minimalist.dark-mode .login-btn {
    background-color: #fff;
    color: #000;
}

.minimalist .seek-bar {
    background-color: #ccc;
    transition: all var(--transition-duration) ease-in-out;
}

.minimalist .seek-bar-progress,
.minimalist .seek-bar-indicator {
    background-color: #000;
    transition: all var(--transition-duration) ease-in-out;
}

.minimalist.dark-mode .seek-bar {
    background-color: #333;
}

.minimalist.dark-mode .seek-bar-progress,
.minimalist.dark-mode .seek-bar-indicator {
    background-color: #fff;
}

.minimalist .control-btn path,
.minimalist .control-btn rect {
    fill: #000;
    transition: all var(--transition-duration) ease-in-out;
}

.minimalist.dark-mode .control-btn path,
.minimalist.dark-mode .control-btn rect {
    fill: #fff;
}

/* Add noise overlay to minimalist design */
.minimalist::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,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');
    opacity: 0.05;
    z-index: 1000;
    pointer-events: none;
}

/* Adjust font color for light mode in minimalist theme */
/* Base styles for minimalist design */
.minimalist {
    color: #000;
}

.minimalist .song-details h2,
.minimalist .song-details h3,
.minimalist .song-details p,
.minimalist .seek-bar-time {
    color: #000;
}

/* Styles for dark mode in minimalist design */
.minimalist.dark-mode {
    color: #fff;
}

.minimalist.dark-mode .song-details h2,
.minimalist.dark-mode .song-details h3,
.minimalist.dark-mode .song-details p,
.minimalist.dark-mode .seek-bar-time {
    color: #fff;
}

/* Improve transitions */
.container,
.album-art,
.album-art img,
.song-details,
.login-btn,
.seek-bar,
.seek-bar-progress,
.seek-bar-indicator,
.control-btn,
.control-btn path,
.control-btn rect {
    transition: all var(--transition-duration) cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add subtle animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.container {
    animation: fadeIn 0.5s ease-out;
}

.album-art {
    animation: slideIn 0.5s ease-out;
}

.song-details h2,
.song-details h3,
.song-details p {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.song-details h2 { animation-delay: 0.1s; }
.song-details h3 { animation-delay: 0.2s; }
.song-details p { animation-delay: 0.3s; }

/* Style for the minimalist toggle button */
.minimalist-toggle {
    position: absolute;
    top: 120px;
    right: 20px;
    z-index: 1000;
}

#minimalist-toggle-btn {
    background: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: all var(--transition-duration) ease-in-out;
    border: none; /* Explicitly set border to none */
    outline: none; /* Remove outline as well */
}

#minimalist-toggle-btn:focus {
    outline: none; /* Ensure no outline appears on focus */
}

.minimalist-icon {
    stroke: var(--text-light);
    transition: all var(--transition-duration) ease-in-out;
}

body.dark-mode .minimalist-icon {
    stroke: var(--text-dark);
}

body.minimalist #minimalist-toggle-btn .minimalist-icon {
    stroke: #000;
}

body.minimalist.dark-mode #minimalist-toggle-btn .minimalist-icon {
    stroke: #fff;
}

#minimalist-toggle-btn:hover {
    transform: scale(1.1);
}

#minimalist-toggle-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    transition: all var(--transition-duration) ease-in-out;
}

body.dark-mode #minimalist-toggle-btn svg {
    fill: var(--text-dark);
}

#minimalist-toggle-btn .minimalist-icon {
    stroke: var(--text-light);
    stroke-width: 2;
    fill: none;
    transition: all 0.5s ease;
}

body.dark-mode #minimalist-toggle-btn .minimalist-icon {
    stroke: var(--text-dark);
}

/* Search Toggle Button */
.search-toggle {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}

.search-toggle:hover {
    transform: scale(1.1);
}

.search-icon {
    stroke: var(--text-light);
    transition: stroke 0.5s ease;
}

body.dark-mode .search-icon {
    stroke: var(--text-dark);
}

body.minimalist .search-icon {
    stroke: #000;
}

body.minimalist.dark-mode .search-icon {
    stroke: #fff;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
    animation: fadeIn 0.2s ease;
}

.search-overlay.hidden {
    display: none;
}

.search-container {
    width: 90%;
    max-width: 550px;
    background: var(--container-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.2s ease;
}

body.dark-mode .search-container {
    background: var(--container-dark);
}

/* Search Input */
.search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    gap: 10px;
}

body.dark-mode .search-input-wrapper {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'tommy', sans-serif;
    font-size: 1.1em;
    color: var(--text-light);
}

body.dark-mode #search-input {
    color: var(--text-dark);
}

#search-input::placeholder {
    color: #999;
}

#search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    color: #999;
    padding: 4px 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

#search-close-btn:hover {
    color: var(--text-light);
    background: rgba(0,0,0,0.1);
}

body.dark-mode #search-close-btn:hover {
    color: var(--text-dark);
    background: rgba(255,255,255,0.1);
}

/* Search Results */
.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-loading {
    text-align: center;
    padding: 24px;
    color: #999;
    font-size: 0.95em;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: rgba(0,0,0,0.05);
}

body.dark-mode .search-result-item:hover {
    background: rgba(255,255,255,0.05);
}

.search-result-art {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}

.search-result-name {
    font-size: 0.95em;
    font-weight: bold;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.dark-mode .search-result-name {
    color: var(--text-dark);
}

.search-result-artist {
    font-size: 0.8em;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Open Album Button */
.open-album-btn {
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: 'tommy', sans-serif;
    font-size: 0.75em;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.open-album-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* Album View */
.album-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

body.dark-mode .album-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.album-header-art {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.album-header-name {
    font-size: 0.95em;
    font-weight: bold;
    color: var(--text-light);
    flex: 1;
}

body.dark-mode .album-header-name {
    color: var(--text-dark);
}

.back-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'tommy', sans-serif;
    font-size: 0.85em;
    color: var(--accent);
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-btn:hover {
    background: rgba(0,0,0,0.05);
}

.track-number {
    font-size: 0.85em;
    color: #999;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}