/* ================================================================
   THE REMIX BLOG
   MixMason - House of Leon (Super Tight Woody Remix)
   Out June 24, 2026

   Written in the visual style of a 2010 music / mp3 blog.
   Inspired by: Blogger Minima Dark, WordPress Twenty Ten,
   early Tumblr music themes, Hype Machine circa 2009-2011.

   Key era markers:
   - Dark page background, WHITE content boxes (not dark-on-dark)
   - Georgia serif for all body copy
   - Verdana/Arial for small UI text and metadata
   - Blue-teal links (not cyan glow)
   - Simple borders, no glowing shadows
   - Float-based two-column layout, 960px wrapper
   - Full vendor-prefix CSS3 stack
   ================================================================ */


/* ================================================================
   MEYER CSS RESET v2.0
   http://meyerweb.com/eric/tools/css/reset/
   ================================================================ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ================================================================
   CLEARFIX (the 2010 method)
   ================================================================ */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
/* Hack for IE (hasLayout) */
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}


/* ================================================================
   BASE / BODY
   The dark page background with a very subtle diagonal stripe -
   a common 2010 Tumblr/Blogger dark theme texture technique.
   White content boxes float on top of this dark canvas.
   ================================================================ */

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333333;
    background-color: #1c1c1c;
    /* Subtle repeating diagonal pattern - approximates the noise.png
       textures that were standard on dark 2010 blog themes */
    background-image:
        -webkit-repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.015) 0,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 50%
        ),
        -webkit-repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.015) 0,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 50%
        );
    background-image:
        -moz-repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.015) 0,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 50%
        ),
        -moz-repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.015) 0,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 50%
        );
    background-size: 4px 4px;
}

a {
    color: #1a80a2;
    text-decoration: underline;
}
a:hover {
    color: #0d5a73;
    text-decoration: underline;
}
a:visited {
    color: #7a5597;
}

strong, b {
    font-weight: bold;
}
em, i {
    font-style: italic;
}

img {
    border: 0;
    display: block;
}

/* Fixed 960px centered wrapper - the standard in 2010 */
.wrapper {
    width: 960px;
    margin: 0 auto;
    padding: 0 10px;
    zoom: 1;
}


/* ================================================================
   ACCENT BAR
   A thin colored stripe at the very top of the page.
   Extremely common on Tumblr themes and customized Blogger layouts.
   ================================================================ */

#accent-bar {
    height: 4px;
    background: #1a9bba;
    background: -webkit-gradient(linear, left top, right top, from(#1a9bba), color-stop(50%, #c8a020), to(#c04040));
    background: -moz-linear-gradient(left, #1a9bba 0%, #c8a020 50%, #c04040 100%);
    background: -ms-linear-gradient(left, #1a9bba 0%, #c8a020 50%, #c04040 100%);
    background: -o-linear-gradient(left, #1a9bba 0%, #c8a020 50%, #c04040 100%);
    background: linear-gradient(to right, #1a9bba 0%, #c8a020 50%, #c04040 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1a9bba', endColorstr='#c04040', GradientType=1);
}


/* ================================================================
   SITE HEADER
   Modeled after the classic WP/Blogger "dark masthead" style.
   Blog name large, tagline beneath, navigation to the right.
   ================================================================ */

#site-header {
    background: #0f0f0f;
    border-bottom: 3px solid #1a9bba;
    padding: 20px 0 16px;
    zoom: 1;
}

#site-title {
    float: left;
}

/* Blog name - Georgia was common for WP/Blogger blog titles */
#site-title h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

#site-title h1 a {
    color: #ffffff;
    text-decoration: none;
}

#site-title h1 a:hover {
    color: #1a9bba;
    text-decoration: none;
}
#site-title h1 a:visited {
    color: #ffffff;
}

#site-tagline {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #666666;
    margin-top: 5px;
    font-style: italic;
}

/* Navigation - horizontal tab-style, the standard 2010 blog nav */
#site-nav {
    float: right;
    padding-top: 4px;
}

#site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#site-nav ul li {
    display: inline;
}

#site-nav ul li.nav-sep {
    color: #333333;
    font-size: 10px;
    font-family: Verdana, Arial, sans-serif;
}

#site-nav ul li a {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    padding: 4px 10px;
}

#site-nav ul li a:hover {
    color: #ffffff;
    text-decoration: none;
    background: #1c1c1c;
}
#site-nav ul li a:visited {
    color: #999999;
}


/* ================================================================
   MAIN CONTENT AREA
   Dark page background shows through here.
   The white post box and sidebar widgets are the visual focus.
   ================================================================ */

#main-content {
    padding: 24px 0 40px;
    zoom: 1;
}


/* ================================================================
   POST COLUMN (left column)
   ================================================================ */

#post-column {
    float: left;
    width: 620px;
}

/* THE critical 2010 change: white box on dark page */
.post-wrap {
    background: #ffffff;
    border: 1px solid #cccccc;
    /* Subtle drop shadow - classic early CSS3 look */
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    padding: 24px 26px 20px;
    zoom: 1;
}

/* Post dateline - small Verdana, gray - quintessential 2010 blog meta */
.post-dateline {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #999999;
    margin-bottom: 8px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 8px;
}

.post-dateline .post-date {
    color: #1a80a2;
}

.post-dateline .post-cats a {
    color: #999999;
    text-decoration: none;
}
.post-dateline .post-cats a:hover {
    color: #1a80a2;
    text-decoration: underline;
}

/* Post title - large bold Georgia, classic blog heading */
.post-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
    font-weight: bold;
    color: #111111;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-shadow: none;
}

.post-credits {
    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
    color: #888888;
    margin-bottom: 16px;
}

.post-credits strong {
    color: #444444;
}

/* Decorative diamond divider */
.divider {
    text-align: center;
    margin: 14px 0;
    color: #cccccc;
    font-size: 9px;
    letter-spacing: 5px;
    /* IE opacity */
    filter: alpha(opacity=80);
}


/* ================================================================
   ARTWORK
   In 2010, blog post images had a thin border - very common.
   ================================================================ */

.artwork-wrap {
    margin-bottom: 20px;
}

.artwork {
    width: 100%;
    max-width: 568px;
    height: auto;
    display: block;
    border: 1px solid #cccccc;
    /* Light inset shadow on images was very "2010 WP theme" */
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    background-color: #eeeeee;
    min-height: 200px;
}


/* ================================================================
   LISTEN / STREAM / DOWNLOAD BLOCK
   A light gray callout box - exactly how 2010 blogs styled
   "download" or "stream" sections (like a Blogger widget block).
   ================================================================ */

.listen-block {
    background: #f8f8f8;
    border: 1px solid #dddddd;
    border-left: 4px solid #1a9bba;
    padding: 14px 16px 12px;
    margin-bottom: 22px;
    zoom: 1;
}

.listen-header {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a9bba;
    margin-bottom: 11px;
}

.stream-btns {
    margin-bottom: 10px;
    zoom: 1;
}

/* Base button */
.btn {
    display: inline-block;
    padding: 7px 14px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-right: 7px;
}

.btn:hover {
    text-decoration: none;
}

/* Spotify - green gradient (CSS3 gradients were the hot new thing in 2010) */
.btn-spotify {
    color: #ffffff;
    border: 1px solid #158a3e;
    background: #1db954;
    background: -webkit-gradient(linear, left top, left bottom, from(#22d160), to(#1aaa4e));
    background: -moz-linear-gradient(top, #22d160 0%, #1aaa4e 100%);
    background: -ms-linear-gradient(top, #22d160 0%, #1aaa4e 100%);
    background: -o-linear-gradient(top, #22d160 0%, #1aaa4e 100%);
    background: linear-gradient(to bottom, #22d160 0%, #1aaa4e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#22d160', endColorstr='#1aaa4e', GradientType=0);
}

.btn-spotify:hover {
    color: #ffffff;
    background: #22d160;
    filter: none;
}

/* Apple Music - red gradient */
.btn-apple {
    color: #ffffff;
    border: 1px solid #b02030;
    background: #e03040;
    background: -webkit-gradient(linear, left top, left bottom, from(#f04858), to(#cc2030));
    background: -moz-linear-gradient(top, #f04858 0%, #cc2030 100%);
    background: -ms-linear-gradient(top, #f04858 0%, #cc2030 100%);
    background: -o-linear-gradient(top, #f04858 0%, #cc2030 100%);
    background: linear-gradient(to bottom, #f04858 0%, #cc2030 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f04858', endColorstr='#cc2030', GradientType=0);
}

.btn-apple:hover {
    color: #ffffff;
    background: #f04858;
    filter: none;
}

/* Free Download - the classic bright yellow MP3 blog download button */
.btn-download {
    color: #333333;
    border: 1px solid #b08010;
    background: #e8a820;
    background: -webkit-gradient(linear, left top, left bottom, from(#f8c040), to(#d09010));
    background: -moz-linear-gradient(top, #f8c040 0%, #d09010 100%);
    background: -ms-linear-gradient(top, #f8c040 0%, #d09010 100%);
    background: -o-linear-gradient(top, #f8c040 0%, #d09010 100%);
    background: linear-gradient(to bottom, #f8c040 0%, #d09010 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8c040', endColorstr='#d09010', GradientType=0);
    font-size: 12px;
    font-weight: bold;
    padding: 9px 18px;
    letter-spacing: 1px;
}

.btn-download:hover {
    color: #111111;
    background: #ffd060;
    filter: none;
}


/* ================================================================
   POST BODY TEXT
   Georgia 14px at 1.75 line-height - this WAS 2010 blog body text.
   ================================================================ */

.post-body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    line-height: 1.78;
    color: #333333;
    margin-bottom: 20px;
}

.post-body p {
    margin-bottom: 14px;
}

.post-body p:last-child {
    margin-bottom: 0;
}

.post-body strong {
    font-weight: bold;
    color: #111111;
}

.post-body em {
    font-style: italic;
    color: #555555;
}

/* Stream logo image buttons */
.stream-logos {
    margin-bottom: 12px;
    zoom: 1;
}

.stream-logo {
    height: 80px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    border: 0;
    /* Subtle hover-ready shadow */
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Apple logo is portrait (tall), needs slightly more width room */
.stream-logo-apple {
    height: 90px;
}

.stream-logos a:hover .stream-logo {
    opacity: 0.85;
    filter: alpha(opacity=85);
}

/* RIYL / File Under metadata block */
.post-meta-extra {
    background: #f8f8f8;
    border: 1px solid #e4e4e4;
    border-left: 3px solid #aaaaaa;
    padding: 10px 14px;
    margin: 16px 0;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #666666;
    line-height: 1.8;
}

.post-meta-extra p {
    margin-bottom: 4px;
}

.post-meta-extra p:last-child {
    margin-bottom: 0;
}

.post-meta-extra strong {
    color: #444444;
    font-weight: bold;
}

/* [embed] [reblog] [you found it here first] */
.blog-actions {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #aaaaaa;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px dashed #dddddd;
    font-style: italic;
}

.blog-actions a {
    color: #888888;
    text-decoration: none;
}

.blog-actions a:hover {
    color: #1a80a2;
    text-decoration: underline;
}

/* "Hear the original" callout */
.post-body p.original-link {
    margin-top: 16px;
    padding: 9px 12px;
    background: #f5f5f5;
    border-left: 3px solid #1a9bba;
    font-size: 12px;
    font-family: Verdana, Arial, sans-serif;
    color: #666666;
    font-style: normal;
}

.post-body p.original-link a {
    color: #1a80a2;
    text-decoration: underline;
}

.post-body p.original-link a:hover {
    color: #0d5a73;
}


/* ================================================================
   POST TAGS
   Styled as simple gray pill tags - standard on Blogger and WP.
   ================================================================ */

.post-tags {
    margin-bottom: 14px;
    padding-top: 12px;
    border-top: 1px solid #eeeeee;
    font-size: 11px;
    line-height: 2.2;
    font-family: Verdana, Arial, sans-serif;
}

.tags-label {
    color: #aaaaaa;
    margin-right: 5px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    color: #777777;
    font-size: 11px;
    font-family: Verdana, Arial, sans-serif;
    padding: 2px 7px 1px;
    margin: 2px 2px;
    border: 1px solid #dddddd;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-decoration: none;
    text-transform: lowercase;
}

.tag:hover,
.tag.tag-hover {
    background: #1a9bba;
    color: #ffffff;
    border-color: #1a9bba;
    text-decoration: none;
}

.tag:visited {
    color: #777777;
}


/* ================================================================
   POST STATS (Hype Machine flavor - small, gray, compact)
   ================================================================ */

.post-stats {
    padding-top: 10px;
    border-top: 1px solid #eeeeee;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #bbbbbb;
}

.stat {
    color: #bbbbbb;
}

.stat strong {
    color: #888888;
    font-weight: bold;
}

.stat-sep {
    color: #dddddd;
}


/* ================================================================
   SIDEBAR (right column)
   ================================================================ */

#sidebar {
    float: right;
    width: 300px;
}


/* ================================================================
   WIDGETS
   White boxes with a light gray header bar.
   Exact visual style of WordPress Twenty Ten and Blogger Simple.
   ================================================================ */

.widget {
    background: #ffffff;
    border: 1px solid #cccccc;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
    overflow: hidden;
    zoom: 1;
}

/* Widget title bar - light gray, small caps Verdana - very WP/Blogger */
.widget-title {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555555;
    padding: 8px 12px;
    background: #efefef;
    border-bottom: 1px solid #dddddd;
}


/* ================================================================
   ARTIST CARDS
   ================================================================ */

.artist-card {
    padding: 12px 12px 10px;
    zoom: 1;
}

.artist-avatar {
    float: left;
    margin-right: 10px;
}

/* Real Instagram profile photo */
.artist-photo {
    width: 52px;
    height: 52px;
    display: block;
    border: 1px solid #cccccc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/* CSS initials placeholder - light gray, simple */
.avatar-box {
    width: 48px;
    height: 48px;
    background: #e8e8e8;
    border: 1px solid #cccccc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #888888;
    text-align: center;
    line-height: 48px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.artist-meta {
    overflow: hidden;
}

.artist-name {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 3px;
}

.artist-bio {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #777777;
    line-height: 1.5;
    margin-bottom: 5px;
}

.artist-links {
    font-family: Verdana, Arial, sans-serif;
    font-size: 10px;
    color: #aaaaaa;
}

.artist-links a {
    color: #1a80a2;
    text-decoration: none;
    font-size: 10px;
}

.artist-links a:hover {
    color: #0d5a73;
    text-decoration: underline;
}

.artist-divider {
    height: 1px;
    background: #eeeeee;
    margin: 0 12px;
}


/* ================================================================
   STREAM LIST WIDGET
   ================================================================ */

.stream-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.stream-list li {
    border-bottom: 1px solid #eeeeee;
}

.stream-list li:last-child {
    border-bottom: 0;
}

.stream-link {
    display: block;
    padding: 10px 12px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #555555;
}

.stream-link:hover {
    text-decoration: none;
}

.stream-spotify {
    color: #1a9a40;
}

.stream-spotify:hover {
    background: #1db954;
    color: #ffffff;
}

.stream-apple {
    color: #b02030;
}

.stream-apple:hover {
    background: #e03040;
    color: #ffffff;
}


/* ================================================================
   RELEASE DATE WIDGET
   ================================================================ */

.widget-release {
    border-color: #aaaaaa;
}

.release-date {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: bold;
    color: #222222;
    padding: 12px 12px 3px;
    line-height: 1.2;
}

.release-sub {
    font-family: Verdana, Arial, sans-serif;
    font-size: 10px;
    color: #aaaaaa;
    text-transform: lowercase;
    padding: 0 12px 12px;
    font-style: italic;
}


/* ================================================================
   TAG CLOUD WIDGET
   ================================================================ */

.tag-cloud {
    padding: 10px 10px 12px;
    line-height: 2.2;
}


/* ================================================================
   SITE FOOTER
   Dark, matching the header - classic WP/Blogger footer style.
   ================================================================ */

#site-footer {
    background: #0f0f0f;
    border-top: 3px solid #1a9bba;
    padding: 18px 0;
    text-align: center;
    zoom: 1;
}

.footer-copy {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    color: #555555;
    margin-bottom: 5px;
}

.footer-copy em {
    font-style: italic;
}

.footer-sub {
    font-family: Verdana, Arial, sans-serif;
    font-size: 10px;
    color: #3a3a3a;
    font-style: italic;
}

.footer-copy a {
    color: #666666;
    text-decoration: none;
}
.footer-copy a:hover {
    color: #1a9bba;
    text-decoration: underline;
}
