/* ===========================
   PAPER CONTAINERS & HEADERS
=========================== */
.tab-paper {
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.tab-paper.active {
    filter: brightness(1.05);
    transform: scale(1.03);
}

.paper-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    z-index: 1;
    cursor: pointer;
}

.paper-container::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(3vw);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.paper-container:hover::before {
    opacity: 1;
}

.paper-image {
    display: block;
    width: 100%;
    height: auto;
}

.header-title {
    position: absolute;
    pointer-events: none;
    width: 60%;
    display: inline-block;
    z-index: 2;
    top: 18%;
    left: 20%;
    transform: rotate(4deg);
}

.header-title img {
    width: 100%;
    height: auto;
}

.sparkle-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/backgrounds/glitter.gif') repeat;
    filter: grayscale(100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    z-index: 3;
    -webkit-mask: var(--mask-img) no-repeat center / contain;
    mask: var(--mask-img) no-repeat center / contain;
}

.paper-container:hover .sparkle-overlay {
    mix-blend-mode: soft-light;
    opacity: 1;
}

.paper-container.discography-paper:hover {
    animation: wobble 0.6s ease-in-out forwards;
}

@keyframes wobble {
    0%   { transform: rotate(0deg) scale(1); }
    30%  { transform: rotate(-1.5deg) scale(1.03); }
    100% { transform: rotate(3deg) scale(1.03); }
}

.papers-row {
    display: flex;
    justify-content: center;
     gap: -2vw; /* small negative value to overlap slightly */
}

.papers-row .paper-container {
    position: relative;
    transition: transform 0.4s ease, z-index 0.3s ease;
    cursor: pointer;
    transform: rotate(0deg);
}

/* Active rotation with variation using a custom property */
.papers-row .paper-container.active {
    z-index: 2;
    transform: rotate(var(--active-rotation, 2deg)) scale(1.05);
}

/* Inactive stays flat */
.papers-row .paper-container:not(.active) {
    z-index: 1;
    transform: rotate(0deg) scale(0.98);
}


.papers-row .paper-container:hover {
    transform: scale(1.02); /* Optional: tilt slightly on hover */
}

/* Show sparkle overlay when the paper is active */
.paper-container.active .sparkle-overlay {
    mix-blend-mode: soft-light; /* optional, same as hover */
    opacity: 1;
}



/* Albums & Singles */
.paper-container.albums-paper,
.paper-container.singles-paper {
    width: 50%;
    max-width: 500px;
    min-width: 300px;
    margin-top: 1vw;
    position: relative;
    transition: transform 0.4s ease, z-index 0.3s ease;
}

.paper-container.albums-paper { left: 0; z-index: 2;  }
.paper-container.singles-paper { left: -2%; z-index: 1; }




.paper-container.albums-paper:hover .header-title,
.paper-container.singles-paper:hover .header-title {
    transform: scale(1.05);
}

.paper-container .paper-image {
    filter: drop-shadow(0 1vh 2vh rgba(0,0,0,0.05));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.paper-container:hover .paper-image {
    transform: scale(1.02);
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

.paper-container.singles-paper .header-title {
    top: 24%;
    left: 15%;
    width: 40%;
    transform: rotate(3deg);
}

.paper-container.albums-paper .header-title {
    top: 24%;
    left: 15%;
    width: 70%;
}

#singlesGrid {
    display: none;      /* hide initially */
    opacity: 0;         /* optional: fade effect */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    justify-items: center;
    transition: opacity 0.3s ease;
}

#singlesGrid.active {
    display: grid;      /* show when active */
    opacity: 1;
}

.single-card {
    width: 150px;
    aspect-ratio: 1 / 1;
    background: #fff8b0; /* sticky note color */
    border: 2px solid #f0e68c;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.single-cover-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-title {
    margin-bottom: 4px;
    font-size: 1em;
}


.single-overlay {
    position: fixed;      /* stay on top of everything */
    inset: 0;             /* top/right/bottom/left 0 */
    background: rgba(0,0,0,0.8);  /* dim the background */
    display: none;        /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;        /* high enough to be above everything */
    overflow-y: auto;     /* allow scrolling inside overlay */
}
.single-overlay.active {
    display: flex;        /* show overlay when active */
}

.overlay-content {
    background: #fff;           /* white background */
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 8px;
    padding: 1rem;
    overflow-y: auto;
    box-sizing: border-box;
    position: relative;
}


/* ===========================
   ALBUM GRID & CARDS
=========================== */
.albums-grid {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 7vw;
    justify-content: flex-start;
    margin-top: -3vh;
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.album-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: visible;
    transform: rotate(var(--album-rotate, 0deg));
    transform-origin: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.album-card {
    position: relative;
    flex: 1 1 clamp(140px, 20vw, 25%);
    max-width: clamp(140px, 25vw, 25%);
    min-width: 140px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-cover {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.cover-static,
.cover-animated {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    inset: 0;
    margin: auto;
}

.cover-animated {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.album-card:hover .cover-animated { opacity: 1; }
.album-card:hover .cover-static { opacity: 0; }

.album-frame {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 145%;
    height: 145%;
    z-index: 2;
    pointer-events: none;
}

.album-frame img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.album-frame.teal-bow-frame {
    top: -13%;
    left: -46%;
    width: 153%;
    height: 142%;
}

.album-card:hover .album-frame img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.album-title-box {
    opacity: 0;
    position: relative;
    z-index: 3;
    font-size: clamp(0.7rem, 0.85vw, 1rem);
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    background: linear-gradient(145deg, #fdfcfb, #e0dedb);
    border: 1px solid #bfb8aa;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);
    color: #333;
    font-weight: 500;
    font-family: 'Georgia', serif;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    display: inline-block;
    text-align: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.album-card:hover .album-title-box {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   ALBUM MODAL / OVERLAY
=========================== */
.album-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.album-overlay.active { display: flex; }

.album-modal {
    background: #fff;
    width: 90%;
    max-width: 900px;
    height: 80%;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    overflow: hidden;
}

#overlayTitleContainer {
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    background: #000;
}

#overlayTitleContainer img {
    width: 100%;
    max-height: 10vh;
    object-fit: contain;
}

.album-modal-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.album-modal-left {
    flex: 0 0 40%;
    max-width: 40%;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: #f0f0f0;
    box-sizing: border-box;
}

.album-modal-right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 1rem 3rem 1rem 1rem; /* notebook red margin space */
    overflow-y: auto;
    background: repeating-linear-gradient(
        to bottom,
        #ffffff,
        #ffffff 1.2rem,
        #cce5ff 1.25rem
    );
    position: relative;
    box-sizing: border-box;
}

.album-modal-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    height: 100%;
    width: 1px;
    background-color: #ff7575af;
}

.album-modal-right ul {
    margin: 0.75rem auto 0;
    padding-left: 0;
    list-style-position: inside;
    text-align: left;
}

.album-modal-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.album-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    z-index: 2000;
}

/* ===========================
   TRACK LIST
=========================== */
.track-number    { color: var(--number-color, #000); font-family: var(--number-font, inherit); }
.track-dots      { color: var(--dots-color, #000); font-family: var(--dots-font, inherit); }
.track-title     { color: var(--title-color, #000); font-family: var(--title-font, inherit); }
.track-featured  { color: var(--featured-color, #000); font-family: var(--featured-font, inherit); }
.track-prod      { color: var(--prod-color, #000); font-family: var(--prod-font, inherit); }
.track-length    { color: var(--length-color, #000); font-family: var(--length-font, inherit); }


#overlayTracks {
    width: 100%;                /* make it span the full width of the right panel */
    flex: 1 1 auto;             /* grow to fill available height */
    max-height: 60vh;           /* limit height on desktop */
    overflow-y: auto;           /* scroll if too tall */
    margin-top: 0.5rem;         
    padding-right: 0.25rem;     
    box-sizing: border-box;     /* include padding in width */
}

.track-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    gap: 0.5ch;
}

.track-left {
    display: flex;
    align-items: center;
    gap: 0.15ch;
}

.track-middle {
    flex: 1 1 auto;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}

.track-middle .scroll-wrapper {
    display: inline-block;
    white-space: nowrap;
    padding-right: 2rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

/* Scroll only if .scrollable and hovered */
.track-middle.scrollable:hover .scroll-wrapper {
    animation: scroll-text 8s linear infinite;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--scroll-distance)));
    }
}
.track-right {
    text-align: right;
    white-space: nowrap;
    flex: 0 0 auto;
}


.track-number { flex: 0 0 auto; text-align: left; min-width: 1.5em; }
.track-dots   { flex: 0 0 auto; text-align: left; }

.track-middle::-webkit-scrollbar { display: none; }


.track-caption {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0.1rem;
    box-sizing: border-box;
}
/* Track caption when open */
.track-caption.open {
    overflow: visible;
    padding: 0.3rem 1rem; /* bottom padding included */
}

.track-caption .button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.platform-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.track-caption .buttons-left button,
.track-caption .buttons-right button {
    margin: 0 0.25rem;
}
.lyrics-text {
  display: none;
  width: 100%;
  margin-top: 0.375rem;
  font-size: 0.85rem;
  color: #333;
  font-family: 'Annie Use Your Telescope', monospace; /* Custom font */
   font-weight: 800; /* normal */
  line-height: 1; /* Makes lines closer together */
}

.lyrics-text br {
  line-height: 0;      /* reduces the extra space <br> creates */
  margin: 0;           /* remove default margin if any */
  content: "";          /* ensures it doesn’t add extra space */
}

.lyrics-text.active { 
  display: block; 
}
/* Album overlay caption container */
#overlayCaption {
    font-family: 'schoolbell', sans-serif;        /* clean, modern font */
    font-size: clamp(1.2rem, 1.2vw, 2.4rem);     /* responsive font size */
    color: #000000;                               /* text color */
    text-align: center;                           /* center under album title */
    max-width: 90%;                               /* prevent overflow */
    margin: 0.5rem auto 1rem auto;
    line-height: 1.4;
    text-shadow: 0 0 6px rgba(176, 255, 255, 0.7); /* subtle glow for readability */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;                                   /* fade in when overlay opens */
    transform: translateY(10px);                  /* slight slide-up effect */
}

/* Make caption visible when overlay is active */
#albumOverlay.active #overlayCaption {
    opacity: 1;
    transform: translateY(0);
}

/* Caption text spacing */
.album-caption-text {
    margin-bottom: 0.5rem;
}

/* Container for album caption buttons */
.album-caption-buttons {
    margin-top: 0.3rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lyrics-btn {
    padding: 0.2rem 1rem 0.2rem 0.8rem; /* space for arrow */
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    color: #000;
    border: 1px solid #999;
    border-radius: 4px;
    font-family: 'vt323', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}

/* Arrow symbol */
.lyrics-btn::after {
    content: '▼';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg); /* start pointing down */
    font-size: 0.8rem;
    color: #000;
}

/* Rotate arrow when open */
.lyrics-btn.open::after {
    transform: translateY(-50%) rotate(180deg); /* points up */
}

.lyrics-btn:hover {
    background: linear-gradient(to bottom, #e0e0e0, #c0c0c0);
    border-color: #666;
}

.lyrics-btn:active {
    background: linear-gradient(to bottom, #d0d0d0, #b0b0b0);
    border-color: #444;
}

/* Hover / press effect */
.caption-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.25),
        0 8px 8px rgba(0, 0, 0, 0.25);
}

.caption-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 0 rgba(0, 0, 0, 0.2),
        0 3px 3px rgba(0, 0, 0, 0.2);
}

/* SoundCloud gradient */
.sc-btn {
    background: linear-gradient(145deg, #ff7700, #ff9a33, #ff6600);
    border-top: 2px solid #ffaa55;
    border-bottom: 2px solid #cc5500;
}

/* Spotify gradient */
.sp-btn {
    background: linear-gradient(145deg, #1db954, #1ee678, #14a13c);
    border-top: 2px solid #2efb8d;
    border-bottom: 2px solid #139944;
}

/* iTunes gradient */
.itunes-btn {
    background: linear-gradient(145deg, #fa57c1, #ff7fd9, #e038a8);
    border-top: 2px solid #ff8fcf;
    border-bottom: 2px solid #c33797;
}

/* YouTube gradient */
.yt-btn {
    background: linear-gradient(145deg, #ff0000, #ff4d4d, #cc0000);
    border-top: 2px solid #ff5555;
    border-bottom: 2px solid #990000;
}

/* Caption buttons */
.caption-btn {
    padding: 0.1rem 0.3rem;
    border-radius: 8px;
    font-family: 'vt323', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 0 rgba(0,0,0,0.2), 0 6px 6px rgba(0,0,0,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    display: inline-block;
}
.caption-btn:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 6px 0 rgba(0,0,0,0.25), 0 8px 8px rgba(0,0,0,0.25); }
.caption-btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,0.2), 0 3px 3px rgba(0,0,0,0.2); }

/* Tiny 3D buttons for all services */
.track-caption button,
.track-caption .soundcloud-btn,
.track-caption .spotify-btn,
.track-caption .itune-btn,
.track-caption .mv-btn {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #000;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000, 4px 4px 0 rgba(0,0,0,0.2);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* Press effect */
.track-caption button:active,
.track-caption .soundcloud-btn:active,
.track-caption .spotify-btn:active,
.track-caption .itune-btn:active,
.track-caption .mv-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 #000, 2px 2px 0 rgba(0,0,0,0.2);
}

/* Service-specific colors */
.soundcloud-btn { background-color: #FF5500; color: #fff; }
.spotify-btn    { background-color: #1DB954; color: #fff; }
.itune-btn {
  background: linear-gradient(
    135deg,
    #ff3eaf,
    #67cfff
  );
  color: #fff;
}
.mv-btn         { background-color: #FF0000; color: #fff; }


.soundcloud-btn::after {
    content: 'play on soundcloud';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.1875rem 0.375rem;
    border-radius: 0.1875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 10;
}
.soundcloud-btn:hover::after { opacity: 1; transition-delay: 0.5s; }

/* Remove default bullets */
.overlay-track::marker { content: ''; }

/* ===========================
   RESPONSIVE (MOBILE)
=========================== */
@media (max-width: 767px) {
    /* Stack albums vertically */
    .albums-grid { flex-direction: column; align-items: center; gap: 10vw; margin-top: 0; margin-bottom: 10vw; }

    .album-card { flex: 0 0 80%; max-width: 80%; margin: 0; transform: rotate(var(--album-rotate, 0deg)) scale(0.9); position: relative; }
    .album-card:nth-child(odd) { transform: rotate(var(--album-rotate, 0deg)) scale(1) translateX(35%); }
    .album-card:nth-child(even) { transform: rotate(var(--album-rotate, 0deg)) scale(1) translateX(-35%); }

    .album-frame { top: -20%; left: -20%; width: 140%; height: 140%; z-index: 2; }
    .album-title-box { opacity: 1 !important; position: absolute; top: 20%; transform: rotate(0deg); font-size: clamp(0.65rem, 0.75vw, 0.9rem); padding: 0.2rem 0.5rem; z-index: 10; }
    .album-card:nth-child(odd) .album-title-box { left: -100%; top: 0%; text-align: right; }
    .album-card:nth-child(even) .album-title-box { right: -60%; text-align: left; }

    .cover-animated { opacity: 1 !important; }
    .cover-static { opacity: 0 !important; }

    .album-overlay { padding: 1rem; align-items: flex-start; overflow-y: auto; }
  .album-modal {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin-top: 5vh;
        height: 90vh;          /* almost full screen */
        border-radius: 0.5rem;
    }

    .album-modal-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        flex: 1 1 auto;        /* allow content to grow */
    }

    /* Track list scrolls */
    .album-modal-right {
        order: 0;
        width: 100%;
        max-height: 45vh; 
        padding: 0.5rem 1rem;
        box-sizing: border-box;
        overflow-y: auto;
        flex: 1 1 auto;        /* takes remaining height */
    }

    /* Album art stays at bottom */
.album-modal-left {
    order: 1;
    width: 100%;
    min-width: 360px;     /* optional lower limit */
    flex: 0 0 auto;           /* don’t grow beyond natural height */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    padding: 3vw;
}

/* Scale image to fill width and expand height if needed */
.album-modal-left img {
    width: 100%;               /* full width */
    max-width: 100%;
    max-height: 50vh;          /* or 60vh if you want it taller */
    height: auto;              /* maintain aspect ratio */
    object-fit: contain;
    display: block;
}


@media (max-width: 767px) {
    .paper-container.albums-paper,
    .paper-container.singles-paper {
        width: 100%;
        left: 7%;
        z-index: 1;
    }
}

    #overlayTracks { max-height: 60vh; width: 100%; overflow-y: auto; overflow-x: hidden; }
    .album-close { top: 1rem; right: 0.25rem; width: 2rem; height: 2rem; position: fixed;}

    /* Tracks responsive */
    .track-row { flex-wrap: nowrap; overflow: visible; }
    .track-left { display: inline-flex; flex: 0 0 auto; align-items: center; min-width: 0; }
    .track-number { min-width: 0; flex: 0 0 auto; text-align: left; }
    .track-dots { flex: 0 0 auto; margin-left: -0.15em; text-align: left; }
    .track-middle { flex: 1 1 auto; min-width: 0; overflow-x: auto; gap: 0.5ch; }
    .track-middle::-webkit-scrollbar { display: none; }
    .track-right { width: max-content; flex: 0 0 auto; white-space: nowrap; margin-left: auto; text-align: right; padding-left: 0.25rem; display: inline-flex; }
}

.albums-grid.hidden,
.albums-grid.hidden .album-card {
    display: none !important;   /* Force hide even absolutely positioned children */
    pointer-events: none;       /* Prevent clicks */
    opacity: 0 !important;      /* Just in case something overrides display */}


@media (max-width: 480px) {
    .paper-container.singles-paper .header-title {
    top: 24%;
    left: 5%;
    width: 40%;
    transform: rotate(3deg);
}

    .paper-container.albums-paper .header-title {
    top: 24%;
    left: 32%;
    width: 65%;
    transform: rotate(3deg);
}

}