/* ROCKERS.IM ALBUM PAGE THEME */

/* ============================================================================
   REM-BASED VIEWPORT SYSTEM
   ============================================================================
   
   Mobile:  32rem canvas  = 320-639px viewport (10px base at 320px)
   Tablet:  64rem canvas  = 640-1279px viewport (10px base at 640px)
   Desktop: 128rem canvas = 1280px+ viewport (10px base at 1280px)
   
   Everything automatically scales proportionally to viewport!
   Write once (e.g., width: 10rem), works perfectly everywhere.
   
   ============================================================================ */

/* Mobile: 32rem canvas - Perfect for 320-639px screens */
@media (max-width: 639px) {
    html {
        font-size: 3.125vw;
        /* 10px at 320px, scales to 20px at 640px */
    }
}

/* Tablet: 64rem canvas - Perfect for 640-1279px screens */
@media (min-width: 640px) and (max-width: 1279px) {
    html {
        font-size: 1.5625vw;
        /* 10px at 640px, scales to 20px at 1280px */
    }
}

/* Desktop: 128rem canvas - Perfect for 1280px+ screens */
@media (min-width: 1280px) {
    html {
        font-size: 0.78125vw;
        /* 10px at 1280px, scales to 30px at 3840px */
    }
}

/* Optional: Cap max size for ultra-wide displays */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
        /* 2x scale at 2K */
    }
}

@media (min-width: 3840px) {
    html {
        font-size: 30px;
        /* 3x scale at 4K */
    }
}

:root {
    --rockers-primary: #FFA500;
    --rockers-accent: #FF1744;
    --rockers-dark: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--rockers-dark) 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.expo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 165, 0, 0.3);
    transition: all 0.2s ease;
}

.expo-link:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
}

.expo-logo {
    height: 2rem;
    width: auto;
}

.expo-cta {
    color: #FFA500;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 0.2rem solid #FFA500;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.8);
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-icon {
    height: 4rem;
    width: auto;
    filter: drop-shadow(0 0.2rem 1rem rgba(255, 165, 0, 0.5));
}

.logo-text {
    display: block;
    width: 15rem;
    height: 4.5rem;
    background: url('img/rockers-logo.png') center/contain no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    filter: drop-shadow(0 0.2rem 1rem rgba(255, 23, 68, 0.5));
}

.header-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.tagline {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.player-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 4px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    flex-shrink: 0;
    min-width: 300px;
}

.player-icon {
    font-size: 1.5rem;
    color: #FFA500;
}

.player-info {
    flex: 1;
    min-width: 0;
}

.player-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-subtitle {
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.container {
    flex: 1;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
    pointer-events: none;
}

.back-link {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid var(--rockers-primary);
    border-radius: 8px;
    color: var(--rockers-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    z-index: 3;
}

.back-link:hover {
    background: rgba(255, 165, 0, 0.2);
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.album-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.album-hero {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    padding: 3rem;
    background: rgba(15, 15, 15, 0.98);
    border-radius: 12px;
    border: 2px solid rgba(255, 165, 0, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(255, 165, 0, 0.2);
    max-width: 1000px;
    width: calc(100% - 4rem);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 23, 68, 0.2);
    border: 2px solid rgba(255, 23, 68, 0.4);
    color: #FF1744;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    z-index: 3;
}

.close-button:hover {
    background: rgba(255, 23, 68, 0.4);
    border-color: #FF1744;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.6);
}

.album-cover {
    width: 350px;
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.5),
        0 0 20px rgba(255, 23, 68, 0.3);
    object-fit: cover;
    border: 3px solid rgba(255, 165, 0, 0.4);
    flex-shrink: 0;
}

.album-info {
    flex: 1;
}

.album-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rockers-primary), var(--rockers-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.album-artist {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.album-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
}

.meta-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Editorial Section */
.album-editorial {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 165, 0, 0.05);
    border-left: 4px solid var(--rockers-primary);
    border-radius: 4px;
}

.editorial-one-liner {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    font-style: italic;
}

.editorial-summary {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
}

.editorial-matters {
    line-height: 1.6;
    color: #ddd;
    margin-top: 1rem;
}

/* Genres */
.album-genres {
    margin-bottom: 2rem;
}

.album-genres h3 {
    font-size: 1.2rem;
    color: var(--rockers-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.genre-tag {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.genre-tag.primary {
    background: linear-gradient(135deg, var(--rockers-primary), var(--rockers-accent));
    color: #000;
}

.genre-tag.secondary {
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid var(--rockers-primary);
    color: var(--rockers-primary);
}

/* Moods & Tags */
.album-moods,
.album-tags {
    margin-bottom: 2rem;
}

.album-moods h3,
.album-tags h3 {
    font-size: 1.2rem;
    color: var(--rockers-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mood-tags,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mood-tag,
.tag {
    padding: 0.4rem 0.9rem;
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.3);
    border-radius: 15px;
    font-size: 0.8rem;
    color: #fff;
}

/* Sounds Like */
.sounds-like {
    margin-bottom: 2rem;
}

.sounds-like h3 {
    font-size: 1.2rem;
    color: var(--rockers-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sounds-like-list {
    list-style: none;
    padding-left: 0;
}

.sounds-like-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #ddd;
}

.sounds-like-list li:before {
    content: "♪";
    position: absolute;
    left: 0;
    color: var(--rockers-accent);
    font-weight: bold;
}

/* Track Listing */
.track-listing {
    margin-bottom: 2rem;
}

.track-listing h3 {
    font-size: 1.2rem;
    color: var(--rockers-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tracks {
    list-style-position: inside;
    padding-left: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

.tracks li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
    color: #ddd;
    font-size: 0.95rem;
}

.tracks li:last-child {
    border-bottom: none;
}

/* Production Details */
.production-details {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.production-details h3 {
    font-size: 1.2rem;
    color: var(--rockers-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.production-info p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #ccc;
}

.production-info strong {
    color: var(--rockers-primary);
    font-weight: 600;
}

.personnel ul {
    list-style: disc inside;
    margin-left: 0.5rem;
}

.mastering-notes {
    font-style: italic;
    color: #bbb;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 165, 0, 0.3);
}

/* Links Section */
.album-links {
    margin-bottom: 2rem;
}

.album-links h3 {
    font-size: 1.3rem;
    color: var(--rockers-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 1.25rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.link-button.spotify {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: white;
    border-color: rgba(29, 185, 84, 0.3);
}

.link-button.spotify:hover {
    background: linear-gradient(135deg, #1ed760 0%, #21e065 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 185, 84, 0.5);
    border-color: rgba(29, 185, 84, 0.6);
}

.link-button.bandcamp {
    background: linear-gradient(135deg, #629aa9 0%, #77aeb8 100%);
    color: white;
    border-color: rgba(98, 154, 169, 0.3);
}

.link-button.bandcamp:hover {
    background: linear-gradient(135deg, #77aeb8 0%, #8bc2cc 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(98, 154, 169, 0.5);
    border-color: rgba(98, 154, 169, 0.6);
}

.link-button.apple {
    background: linear-gradient(135deg, #fc3c44 0%, #ff5257 100%);
    color: white;
    border-color: rgba(252, 60, 68, 0.3);
}

.link-button.apple:hover {
    background: linear-gradient(135deg, #ff5257 0%, #ff666b 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(252, 60, 68, 0.5);
    border-color: rgba(252, 60, 68, 0.6);
}

.link-button.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #ff3333 100%);
    color: white;
    border-color: rgba(255, 0, 0, 0.3);
}

.link-button.youtube:hover {
    background: linear-gradient(135deg, #ff3333 0%, #ff4d4d 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 0, 0, 0.6);
}

.link-button.website {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15) 0%, rgba(255, 165, 0, 0.25) 100%);
    border-color: var(--rockers-primary);
    color: var(--rockers-primary);
}

.link-button.website:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.25) 0%, rgba(255, 165, 0, 0.35) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.8);
}

.link-button.soundcloud {
    background: linear-gradient(135deg, #ff5500 0%, #ff6600 100%);
    color: white;
    border-color: rgba(255, 85, 0, 0.3);
}

.link-button.soundcloud:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ff7700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.5);
    border-color: rgba(255, 85, 0, 0.6);
}

.youtube-section {
    margin-top: 2rem;
}

.youtube-section h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.video-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
}

.video-card:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.video-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.video-title {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-badge {
    font-size: 0.7rem;
    color: #888;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.socials-section {
    margin-top: 2rem;
}

.socials-section h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.social-button:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

/* Sources for Audit */
.sources-audit {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.sources-audit h3 {
    font-size: 1.2rem;
    color: var(--rockers-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.sources-list {
    list-style: none;
    padding-left: 0;
}

.sources-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #999;
}

.sources-list li strong {
    color: #ccc;
}

.sources-list li a {
    color: var(--rockers-primary);
    text-decoration: none;
    word-break: break-word;
}

.sources-list li a:hover {
    text-decoration: underline;
    color: var(--rockers-accent);
}



.album-footer {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 165, 0, 0.05);
    border-radius: 8px;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
}

.album-footer small {
    color: #666;
}

.expo-link {
    color: var(--rockers-accent);
    text-decoration: none;
}

.expo-link:hover {
    text-decoration: underline;
}

.not-found {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(15, 15, 15, 0.98);
    border-radius: 12px;
    border: 2px solid rgba(255, 165, 0, 0.4);
    max-width: 600px;
    width: calc(100% - 4rem);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.not-found h2 {
    color: var(--rockers-primary);
    margin-bottom: 1rem;
}

.not-found p {
    color: #999;
    margin: 1rem 0 2rem;
}