html {
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

@font-face {
  font-family: 'basiic';
  src: url(basiic.ttf) format('truetype');
}

.albums {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.album {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(27, 0, 19, 0.6);
    padding: 15px;
    border: 3px solid rgba(240, 207, 234, 0.3);
    transition: all 0.3s ease;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.album:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 207, 234, 0.6);
    box-shadow: 0 8px 16px rgba(154, 100, 255, 0.3);
}

.albums img {
    width: 200px;
    height: 200px;
    margin: 5px;
}
.albums span {
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f0cfea;
    position: relative;
    text-shadow: 2px 2px 0px rgba(154, 100, 255, 0.5);
}
.albums span::after {
    content: '...';
    position: absolute;
    right: 0;
    top: 0;
    color: white;
    background-color: #1B0013;
    padding-left: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.albums span.truncated::after {
    opacity: 1;
}
.title-tooltip {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(27, 0, 19, 0.95);
    color: #f0cfea;
    padding: 10px 14px;
    border: 2px solid rgba(154, 100, 255, 0.5);
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.title-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(154, 100, 255, 0.5);
}
body {
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f0cfea;
  font-family: basiic;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 40px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
.bandcamp-logo {
    text-align: center;
    margin: 20px 0;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(27, 0, 19, 0.5);
    border: 2px solid rgba(240, 207, 234, 0.3);
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.social-links a {
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

.social-links a:hover {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(3px 3px 5px rgba(154, 100, 255, 0.6));
}

h1 {
  font-size: 7em;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 20px;
  text-shadow: 
    4px 4px 0px rgba(154, 100, 255, 0.4),
    6px 6px 0px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

a{
  color: white;
}

#hub-button {
    position: fixed;
    top: 0;
    left: 80px;
    transform: none;
    z-index: 1000;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

#hub-button:hover {
    transform: translateY(-3px);
}

#hub-button img {
    display: block;
    width: 144px;
    height: 144px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
    transition: filter 0.3s ease;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

#hub-button:hover img {
    filter: drop-shadow(0 6px 12px rgba(154, 100, 255, 0.5));
}

@media (max-width: 1024px) {
    #hub-button img {
        width: 110px;
        height: 110px;
    }
}