@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Archivo+Black&family=Libre+Franklin:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fef9e7;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,140,0,0.03) 35px, rgba(255,140,0,0.03) 70px);
    max-width: 750px;
    margin: 0 auto;
    padding: 50px 25px;
}

header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 6px solid #1a1a1a;
    margin-bottom: 60px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 12px 12px 0 rgba(0,0,0,0.15);
    transform: rotate(-0.5deg);
}

header::before {
    content: "⬤";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: #c41e3a;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

header::after {
    content: "45 RPM";
    position: absolute;
    bottom: 15px;
    right: 25px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
    background: #ffeb3b;
    padding: 5px 12px;
    border: 3px solid #1a1a1a;
    transform: rotate(2deg);
}

header h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5em;
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 
        4px 4px 0 #1a1a1a,
        -1px -1px 0 #1a1a1a,
        1px -1px 0 #1a1a1a,
        -1px 1px 0 #1a1a1a,
        1px 1px 0 #1a1a1a;
}

header h1 a {
    color: #fff;
    text-decoration: none;
}

.header-tags {
    margin: 14px 0 10px;
    line-height: 2;
}

.header-tags span {
    display: inline-block;
    font-size: 0.9em;
    font-weight: 700;
    background: rgba(255,255,255,0.92);
    color: #1a1a1a;
    padding: 5px 13px;
    border: 2px solid #1a1a1a;
    margin-right: 6px;
    margin-bottom: 6px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-sub {
    font-size: 1em;
    font-weight: 700;
    font-style: italic;
    background: #c41e3a;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    border: 2px solid #1a1a1a;
    margin-top: 6px;
    transform: rotate(1deg);
}

main {
    margin-bottom: 80px;
}

.post-preview {
    margin-bottom: 50px;
    padding: 35px;
    background: #fff;
    border: 5px solid #1a1a1a;
    box-shadow: 10px 10px 0 #ff6b35;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.post-preview:first-child::before {
    content: "NEW";
    position: absolute;
    top: -15px;
    right: 30px;
    background: #ffeb3b;
    color: #1a1a1a;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    padding: 8px 20px;
    border: 3px solid #1a1a1a;
    font-size: 0.85em;
    letter-spacing: 2px;
    transform: rotate(-3deg);
}

.post-preview:hover {
    transform: translate(-3px, -3px);
    box-shadow: 13px 13px 0 #ff6b35;
}

.post-preview h2 {
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.post-preview h2 a {
    color: #1a1a1a;
    text-decoration: none;
    background: linear-gradient(to bottom, transparent 60%, #ffeb3b 60%);
    padding: 0 4px;
}

.post-preview h2 a:hover {
    background: #ff6b35;
    color: #fff;
    padding: 2px 6px;
}

.post-preview time {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.85em;
    color: #666;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-preview p {
    margin-top: 15px;
    color: #333;
    line-height: 1.6;
}

/* =====================
   POST — shared styles
   ===================== */

.post h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(to bottom, transparent 70%, #ff6b35 70%);
    display: inline;
}

.post time {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post h2 {
    font-size: 1.8em;
    margin-top: 55px;
    margin-bottom: 10px;
    font-weight: 800;
    background: linear-gradient(to right, #ff6b35 0%, #ff6b35 8px, transparent 8px);
    padding-left: 20px;
}

.post h3 {
    font-size: 1.2em;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.post p {
    margin-bottom: 18px;
}

.post em {
    font-style: italic;
    color: #666;
    font-family: 'Space Mono', monospace;
    font-size: 0.9em;
}

.post a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #ff6b35;
    font-weight: 600;
    transition: all 0.2s;
}

.post a:hover {
    background: #ffeb3b;
    border-bottom-color: #ffeb3b;
    padding: 2px 5px;
    margin: -2px -5px;
}

.post hr {
    border: none;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #ff6b35 0px,
        #ff6b35 20px,
        transparent 20px,
        transparent 40px
    );
    margin: 45px 0;
}

/* Playlist link — used in all posts */
.playlist-link {
    font-size: 1.15em;
    padding: 25px 30px;
    background: linear-gradient(135deg, #c41e3a 0%, #a01628 100%);
    color: #fff;
    border: 4px solid #1a1a1a;
    margin: 30px 0 40px;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
    font-weight: 600;
}

.playlist-link a {
    color: #ffeb3b !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 3px solid #ffeb3b !important;
}

.playlist-link a:hover {
    background: #ffeb3b !important;
    color: #1a1a1a !important;
    border-bottom-color: #1a1a1a !important;
}

/* Post header meta (genre label above title) */
.post-meta {
    font-family: 'Space Mono', monospace;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff6b35;
    margin-bottom: 10px;
}

/* Intro paragraph on posts */
.post-intro {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Tracklist — numbered post format */
.tracklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track {
    display: flex;
    gap: 25px;
    margin-bottom: 55px;
    padding-bottom: 55px;
    border-bottom: 4px repeating-linear-gradient(
        90deg,
        #ff6b35 0px, #ff6b35 20px,
        transparent 20px, transparent 40px
    );
}

.track:last-child {
    border-bottom: none;
}

.track-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3em;
    font-weight: 900;
    color: #ff6b35;
    opacity: 0.35;
    line-height: 1;
    min-width: 55px;
    padding-top: 4px;
}

.track-info {
    flex: 1;
}

.track-title {
    font-size: 1.5em !important;
    margin-top: 0 !important;
    margin-bottom: 6px !important;
    padding-left: 0 !important;
    background: none !important;
    font-weight: 800;
}

.track-meta {
    font-family: 'Space Mono', monospace;
    font-size: 0.8em;
    color: #888;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.track-desc {
    color: #333;
    line-height: 1.7;
    margin-bottom: 16px;
}

.yt-link {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.85em;
    font-weight: 700;
    color: #1a1a1a !important;
    background: #ffeb3b;
    border: 2px solid #1a1a1a !important;
    border-bottom: 2px solid #1a1a1a !important;
    padding: 6px 14px !important;
    margin: 0 !important;
    text-decoration: none;
    transition: all 0.2s;
}

.yt-link:hover {
    background: #ff6b35 !important;
    color: #fff !important;
    border-color: #1a1a1a !important;
    padding: 6px 14px !important;
    margin: 0 !important;
}

/* Post footer back link */
.post-footer {
    margin-top: 60px;
}

.post-footer a {
    color: #1a1a1a !important;
    text-decoration: none;
    background: #ffeb3b;
    padding: 12px 25px !important;
    border: 4px solid #1a1a1a !important;
    display: inline-block;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.2s;
    margin: 0 !important;
}

.post-footer a:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(0,0,0,0.2);
    background: #ff6b35 !important;
    color: #fff !important;
}



footer {
    border-top: 6px solid #1a1a1a;
    padding-top: 35px;
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 2em;
}

@media (max-width: 700px) {
    body {
        padding: 30px 18px;
    }
    
    header {
        padding: 30px 25px;
    }
    
    header h1 {
        font-size: 2.5em;
    }
    
    .post-preview {
        padding: 25px;
        box-shadow: 7px 7px 0 #ff6b35;
    }
    
    .post-preview:hover {
        transform: translate(-2px, -2px);
        box-shadow: 9px 9px 0 #ff6b35;
    }
    
    .post h1 {
        font-size: 2.2em;
    }
}
