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

/* Base Styles */
body {
    font-family: Arial, sans-serif;
    background: white;
    color: #333;
    line-height: 1.5;
    font-size: 13px;
    margin: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    position: relative;
}

h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 5px;
}

.tagline {
    font-size: 12px;
    color: #666;
}

.ascii-dj {
    position: absolute;
    right: 20px;
    top: -5px;
    font-family: monospace;
    font-size: 10px;
    line-height: 1.2;
    color: #ccc;
    white-space: pre;
}

/* Layout */
.main-layout {
    display: flex;
    gap: 40px;
}

/* Sidebar */
.sidebar {
    width: 200px;
    flex-shrink: 0;
}

.sidebar h3 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: lowercase;
}

.sidebar ul {
    list-style: none;
    margin-bottom: 25px;
}

.sidebar li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.sidebar li:before {
    content: "·";
    position: absolute;
    left: 5px;
}

.sidebar a {
    color: #0066cc;
    text-decoration: none;
    font-size: 12px;
}

.sidebar a:hover {
    text-decoration: none;
    background: linear-gradient(to right, #ffeeee, #fff0f0);
    color: #cc0000;
    padding: 0 2px;
    margin: 0 -2px;
}

.ascii-synth {
    margin: 20px 0;
    font-family: monospace;
    font-size: 10px;
    line-height: 1;
    color: #ddd;
    white-space: pre;
}

/* Main Content Area */
.main-content {
    flex: 1;
}

.section {
    margin-bottom: 40px;
}

.section-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px dotted #999;
}

/* Featured Box */
.featured-box {
    background: #f9f9f9;
    border: 1px dotted #ccc;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.featured-box:before {
    content: "░▒▓";
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    color: #eee;
}

.featured-box h2 {
    font-size: 14px;
    margin-bottom: 10px;
}

.featured-box p {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.6;
}

/* Download Button */
.download-button {
    display: inline-block;
    background: #ffffcc;
    color: #333;
    padding: 5px 15px;
    text-decoration: none;
    border: 1px solid #ccc;
    font-size: 12px;
    position: relative;
}

.download-button:hover {
    background: #ffff99;
}

.download-button:hover:before {
    content: "▼ ";
}

/* Album Display */
.album-box {
    border: 1px dotted #ccc;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.album-cover {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    border: 1px dotted #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #666;
    flex-shrink: 0;
}

.album-details h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: normal;
}

.album-details p {
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.album-meta {
    font-size: 11px;
    color: #666;
}

/* Tracks Grid */
.tracks-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.track {
    border: 1px dotted #ccc;
    padding: 12px;
    background: #fcfcfc;
    position: relative;
}

.track:hover {
    background: #f9f9f9;
}

.track-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.track-title {
    font-weight: normal;
    font-size: 13px;
}

.track-num {
    font-size: 11px;
    color: #999;
}

.track-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 8px;
}

.track-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

/* Download Links */
.dl-links {
    display: flex;
    gap: 8px;
}

.dl-links a {
    color: #0066cc;
    text-decoration: none;
}

.dl-links a:hover {
    background: #e6f2ff;
    padding: 0 3px;
    margin: 0 -3px;
    color: #0044aa;
}

/* Stream Links */
.stream-links {
    display: flex;
    gap: 8px;
}

.stream-links a {
    color: #666;
    text-decoration: none;
    font-size: 10px;
}

.stream-links a:hover {
    background: linear-gradient(to bottom, #ff0000, #cc0000);
    color: white;
    padding: 1px 4px;
    margin: -1px -4px;
}

/* More Tracks */
.more-tracks {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border: 1px dotted #ccc;
    color: #666;
    font-size: 12px;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px dotted #ccc;
    text-align: center;
    font-size: 11px;
    color: #666;
    position: relative;
}

.footer-creature {
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    font-family: monospace;
    font-size: 12px;
    color: #ddd;
}

/* Animations */
.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Content Page Specific Styles */
.page-title {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 5px;
}

.date {
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
    display: block;
}

/* Content Area Typography */
.content h2 {
    font-size: 16px;
    margin: 30px 0 15px 0;
    padding-bottom: 5px;
    border-bottom: 1px dotted #ccc;
}

.content h3 {
    font-size: 14px;
    margin: 20px 0 10px 0;
    font-weight: bold;
}

.content p {
    margin-bottom: 15px;
}

.content a {
    color: #0066cc;
    text-decoration: none;
}

.content a:hover {
    text-decoration: none;
    background: linear-gradient(to right, #ffeeee, #fff0f0);
    color: #cc0000;
    padding: 0 2px;
    margin: 0 -2px;
}

/* Content Lists */
.content ul, .content ol {
    margin: 15px 0 15px 30px;
}

.content ul li, .content ol li {
    margin-bottom: 8px;
}

.simple-list {
    list-style: none;
    margin-left: 0;
    counter-reset: item;
}

.simple-list li {
    counter-increment: item;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.simple-list li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #666;
}

/* Content Layouts */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.box {
    background: #f9f9f9;
    border: 1px dotted #ccc;
    padding: 15px;
    margin: 20px 0;
}

/* Content Tables */
.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 12px;
}

.content th, .content td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px dotted #ddd;
}

.content th {
    font-weight: bold;
    background: #f5f5f5;
}

/* Content Code */
.content pre, .content code {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    background: #f5f5f5;
}

.content code {
    padding: 2px 4px;
}

.content pre {
    padding: 10px;
    margin: 15px 0;
    overflow-x: auto;
    border: 1px dotted #ccc;
}

/* Content Blockquote */
.content blockquote {
    border-left: 3px solid #ddd;
    padding-left: 15px;
    margin: 20px 0;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .tracks-container {
        grid-template-columns: 1fr;
    }
    
    .album-box {
        flex-direction: column;
    }
    
    .album-cover {
        margin: 0 auto;
    }
    
    .ascii-dj, .ascii-synth {
        display: none;
    }
    
    .two-col {
        grid-template-columns: 1fr;
    }
}


  
/* Fun fact boxes */
.fact-box {
    background: #f9f9f9;
    border: 1px dotted #ccc;
    padding: 15px;
    margin: 25px 0;
    font-size: 12px;
    position: relative;
}

.fact-box:before {
    content: "※";
    position: absolute;
    left: 5px;
    top: 15px;
    color: #999;
}
        
        /* Track listing styles */
        .track-item {
            margin-bottom: 20px;
            padding-left: 20px;
            position: relative;
        }
        
        .track-item:before {
            content: "▸";
            position: absolute;
            left: 5px;
            color: #666;
        }
        
        .track-main {
            display: flex;
            align-items: baseline;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 3px;
        }
        
        .track-number {
            font-family: monospace;
            color: #999;
            font-size: 11px;
            min-width: 30px;
        }
        
        .track-name {
            font-weight: normal;
            font-size: 13px;
            flex-shrink: 0;
        }
        
        .track-featuring {
            font-size: 11px;
            color: #666;
            font-style: italic;
        }
        
        .track-links {
            font-size: 11px;
            margin-left: auto;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .track-links a {
            color: #0066cc;
            text-decoration: none;
        }
        
        .track-links a:hover {
            text-decoration: underline;
        }
        
        .track-links .divider {
            color: #ccc;
        }
        
        /* Mini Player Styles */
        .mini-player {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-family: monospace;
            font-size: 11px;
            color: #666;
        }
        
        .play-button {
            cursor: pointer;
            user-select: none;
        }
        
        .play-button:hover {
            color: #333;
        }
        
        .play-button.playing {
            color: #cc0000;
        }
        
        .time-display {
            font-size: 10px;
            color: #999;
            display: none;
        }
        
        .time-display.active {
            display: inline;
        }
        
        /* Currently playing indicator */
        .track-item.now-playing:before {
            content: "♪";
            color: #cc0000;
        }