@font-face {
    font-family: 'Neue Haas Grotesk';
    font-weight: 400;
    font-style: normal;
    src: url('/fonts/Roman.ttf') format('truetype');
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    font-weight: 700;
    font-style: normal;
    src: url('/fonts/Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    font-weight: 900;
    font-style: normal;
    src: url('/fonts/Black.ttf') format('truetype');
}

body {
    background-color: #f4f4f9;
    font-family: 'Neue Haas Grotesk', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;

}

::-webkit-scrollbar {
    width: 8px;
    opacity: 1;
}

::-webkit-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3;
    opacity: 0.5;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Neue Haas Grotesk', sans-serif;
}

button, .menu button {
    font-family: 'Neue Haas Grotesk', sans-serif;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 40px;
    max-width: 90%;
    margin: 0 auto;
}

.main-content {
    width: 100%;
    border-radius: 12px;
    padding: 30px;
}

h3 {
    font-size: 24px;
    color: #333;
    margin: 10px 0;
}

.top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ts {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    align-items: center;
    gap: 80px;
    padding: 10px;
}

.menu {
    width: 220px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.menu button {
    background-color: #f4f4f9;
    color: black;
    border: 1px solid transparent;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}

.menu button:hover {
    border: 1px solid rgba(0, 123, 255, 1);
}

.tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tabs > div {
    display: none;
}

.tabs .active {
    display: block;
}

.album-artist-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.album-artist-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.album-info, .artist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cont {
    padding: 30px;
    background-color: white;
    border-radius: 40px;
    margin-right: 60px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.cont:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.img:hover {
    box-shadow: 0 0 5px rgba(0, 123, 255, 1);
}

.album-name, .artist-name {
    font-size: 20px;
    color: #222;
}

.release-date {
    font-size: 16px;
    color: #888;
}

.spotify-url-btn {
    border: none;
    display: inline-block;
    padding: 12px 25px;
    margin-bottom: 30px;
    background-color: #1db954;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.spotify-url-btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.info-table {
    width: 60%;
    border-collapse: collapse;
}

.info-table td {
    padding: 12px 20px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 16px;
}

.info-table td strong {
    font-weight: 700;
    color: #444;
}

.tracklist {
    margin-top: 20px;
}

.releases-container {
    margin-top: 40px;
    padding: 20px 0;
}

.albums-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 15px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.album-item {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    text-align: center;
    transition: all 0.3s ease;
}

.album-item:hover {
    transform: translateY(-10px);
}

.album-item img {
    width: 80%;
    height: 80%;
    border-radius: 5px;
    object-fit: cover;
}

.album-item p {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.album-item a {
    text-decoration: none;
}

.albums-wrapper::-webkit-scrollbar {
    height: 10px;
    border-radius: 5px;
}

.albums-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.albums-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.track-item {
    display: flex;
    gap: 15px;
    align-items: center;

    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.track-item:hover {
    background-color: #e0e0e0;
}

.track-name {
    font-size: 18px;
    font-weight: bold;
}

.artist-name {
    font-size: 14px;
    color: #666;
}

.track-duration {
    font-size: 14px;
    color: #333;
}

#embed-preview {
    margin-top: 30px;
    width: 700px;
    height: 400px;
}

.embed-code-preview-bg {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    height: 12px;
    text-align: left;
    overflow: none;
    display: flex;
    align-items: center;
}

body.dark-mode .embed-code-preview-bg {
    background-color: #1a1a1a;
}

.button {
    background-color: #555;
    color: white;
    border: 1px solid transparent;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}

.button-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.button-row button, .lalabutton {
    background-color: #f4f4f9;
    color: black;
    border: 1px solid transparent;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}

.lalabutton:hover {
    border: 1px solid black;
}

.button-row button:hover, body.dark-mode .lalabutton:hover {
    border: 1px solid white;
}

.button-row button:focus, .lalabutton:focus {
    outline: none;
}

.size-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.size-row label {
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
}

.size-row input {
    font-family: 'Neue haas Grotesk';
    padding: 8px;
    font-size: 14px;
    width: 60px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.size-row input:focus {
    outline: none;
    border-color: #1DB954;
}

.lower-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lower-row input {
    padding: 12px;
    font-size: 14px;
    width: 60%;
    height: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 80px;
    font-family: 'Neue haas Grotesk';
}

.lower-row input:focus {
    outline: none;
    border-color: #1DB954;
}

#embed-preview {
    text-align: center;
}

#embed-preview iframe {
    max-width: 100%;
    max-height: 500px;
    border-radius: 8px;
}

input {
    border-radius: 20px;
}

@media (max-width: 768px) {
    .size-row {
        flex-direction: column;
        gap: 10px;
    }

    .size-row input {
        width: 100%;
    }

    .lower-row {
        gap: 15px;
    }

    .follow-banner {
        width: 100%;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
}

.modal img {
    max-width: 80%;
    max-height: 80vh;
}

.modal-actions {
    margin-top: 10px;
}

.modal-actions button {
    margin: 5px;
}

.album-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.artist-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.artist-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 15px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.artist-container {
    flex-shrink: 0;
    width: 150px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.artist-container:hover {
    transform: translateY(-10px);
}

.artist-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.artist-img:hover {
    box-shadow: 0 0 5px rgba(0, 123, 255, 1);
}

.album-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.album-img:hover {
    box-shadow: 0 0 5px rgba(0, 123, 255, 1);
}

.artist-container h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
}

.artist-wrapper::-webkit-scrollbar {
    height: 10px;
    border-radius: 5px;
}

.artist-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.artist-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.album-row {
    display: flex;
    align-items: center;
    gap: 20px; 
    margin-bottom: 20px;
}

.album-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
}

.album-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-details h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.album-details p {
    margin: 0;
    color: #555;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button-row button {
    background-color: #555;
    color: white;
    border: 1px solid transparent;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20px;
}

.button-row button:hover {
    background-color: #666;
}

.button-row .openinspotify {
    background-color: #1db954;
}

.button-row .openinspotify:hover {
    background-color: #4caf50;
}

.button-row button:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 1);
}

.image-item img {
    cursor: pointer;
}

.image-item img:hover {
    box-shadow: 0 0 5px rgba(0, 123, 255, 1);
}

.sici {
    border: 1px solid transparent;
    transition: all 0s;
}

.sici:hover {
    border: 1px solid white;
}

* {
    font-family: 'Neue Haas Grotesk';
}

        

body.dark-mode {
    background-color: #2a2a2a;
    color: #f4f4f4;
}

body.dark-mode * {
    color: #f4f4f4
}

body.dark-mode a {
    color: #1E90FF;
}

body.dark-mode .button-row .button, body.dark-mode .lalabutton {
    background-color: #2a2a2a;
}

body.dark-mode .button-row .openinspotify {
    background-color: #1db954;
}

body.dark-mode .menu button {
    background-color: #2a2a2a;
}

body.dark-mode .menu button {
    background-color: transparent;
}

body .menu button {
    background-color: transparent;
}

body.dark-mode .track-item, body.dark-mode .album-item, body.dark-mode .artist-item, body.dark-mode input, body.dark-mode .embedbr, body.dark-mode .sici {
    background-color: #1a1a1a;
}

body.dark-mode .track-item:hover, body.dark-mode .album-item:hover, body.dark-mode .artist-item:hover {
    background-color: #2a2a2a;
}

body.dark-mode .search-bar input {
    background-color: #282828;
}

body.dark-mode .modal-content {
    background-color: #1a1a1a;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    filter: blur(40px) brightness(0.7);
    opacity: 0.8;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 40px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid transparent;
}

.header-image:hover {
    border: 1px solid rgba(0, 123, 255, 1);
}

.header-title {
    font-size: 24px;
    font-weight: bold;
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.full-table-btn {
    background-color: #555;
    color: white;
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    height: 34px;
}

body.dark-mode .full-table-btn {
    background-color: rgba(255, 255, 255, 0.1);
}

.full-table-btn:hover {
    border: 1px solid white;
}

.full-table-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.full-table-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    max-width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.full-info-table {
    width: 100%;
}

.full-info-table td:first-child, .region-table td:first-child {
    width: 200px;
    background: #f5f5f5;
}

.close-full-table {
    background-color: #2a2a2a;
    color: white;
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 20px;
}

.close-full-table:hover {
    border: 1px solid white;
}

body.dark-mode .full-table-content {
    background: #1a1a1a;
    color: #fff;
}

body.dark-mode .full-info-table td {
    border-color: #333;
}

body.dark-mode .full-info-table td:first-child, body.dark-mode .region-table td:first-child {
    background: #2a2a2a;
}

body.dark-mode .full-info-table a {
    color: #1db954;
}

.info-table {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-table td {
    width: 50%;
}

.release-details {
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.tar {
    display: flex;
    width: 60vw;
    gap: 20px;
}

.release-images {
    display: flex;
    gap: 15px;
}

.release-image {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid transparent;
    cursor: pointer;
}

.release-image:hover {
    border: 1px solid rgba(0, 123, 255, 1);
}

.release-artist-info {
    margin-top: 10px;
}

.release-artist-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.release-meta {
    display: flex;
    margin-top: 10px;
    gap: 15px;
    cursor: help;
}

.meta-item {
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    color: #666;
}

body.dark-mode .info-table {
    background: rgba(0, 0, 0, 0.3);
}

body.dark-mode .meta-item {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.pl-track {
    display: block;
}

@media screen and (max-width: 585px) {
    #visit-spotify {
        display: none;
    }
}

@media (max-width: 875px) {
    .tar {
        display: contents;
        width: 100vw;
    }

    .info-table {
        width: 90vw;
    }
}
.follow-banner {
    width: 30%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 20px;
    padding: 15px 20px;
}

.follow-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.follow-banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-banner-left img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.follow-button {
    background-color: #1db954;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.follow-button:hover {
    background-color: #1ed760;
    transform: scale(1.05);
}

.follow-button.following {
    background-color: #333;
}

.follow-button.following:hover {
    background-color: #dc3545;
}

body.dark-mode .follow-banner {
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .follow-banner {
        width: 80%;
    }

    .follow-banner-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .follow-button {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .tar {
        width: 90vw;
    }
    .follow-banner {
        width: 70%;
    }
}

.special-entry {
    background: linear-gradient(45deg, #1DB954, #1ed760);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: bold;
}

.special-entry:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.special-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.special-tag::before {
    content: '★';
    color: #ffffff;
}

.statistics-listeners {
    width: 50%;
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

body.dark-mode .statistics-listeners {
    background-color: #1a1a1a;
}

body.dark-mode .statistics-listeners:hover {
    background-color: #2a2a2a;
}