/* Early 2000s style simple CSS */
body {
    background-color: #069e45;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    background-image: url('/content/background.jpg');
    background-repeat: repeat;
    background-position: top center;
    background-attachment: fixed;
}

a {
    color: #FF0000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#container {
    width: 980px;
    margin: 0 auto;
    background-color: #111111;
    border-left: 1px solid #333333;
    border-right: 1px solid #333333;
}

#header {
    text-align: center;
    padding: 20px;
    background-color: #222222;
    border-bottom: 2px solid #FF0000;
}

#header img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#header h1 {
    margin: 0;
    color: #FF0000;
    font-size: 36px;
    font-style: italic;
}

#nav {
    background-color: #333333;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #555555;
}

#nav a {
    color: #FFFFFF;
    font-weight: bold;
    margin: 0 15px;
    font-size: 14px;
}

#main-content {
    padding: 15px;
}

.section-title {
    background-color: #222222;
    color: #FF0000;
    padding: 5px 10px;
    border-left: 5px solid #FF0000;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Mixtape Grid */
.mixtape-grid {
    display: table;
    width: 100%;
    border-spacing: 10px;
}

.mixtape-row {
    display: table-row;
}

.mixtape-item {
    display: table-cell;
    width: 25%;
    background-color: #1a1a1a;
    border: 1px solid #444444;
    padding: 10px;
    text-align: center;
    vertical-align: top;
}

.mixtape-cover {
    width: 150px;
    height: 150px;
    background-color: #333333;
    border: 1px solid #666666;
    margin: 0 auto 10px auto;
    color: #888888;
    line-height: 150px;
    /* Vertically center placeholder text */
    overflow: hidden;
}

.mixtape-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mixtape-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.mixtape-title a {
    color: #FFFFFF;
}

.mixtape-artist {
    color: #AAAAAA;
    font-size: 11px;
    margin-bottom: 5px;
}

.mixtape-stats {
    color: #777777;
    font-size: 10px;
    border-top: 1px dashed #444444;
    padding-top: 5px;
    margin-top: 5px;
}

#footer {
    text-align: center;
    padding: 20px;
    background-color: #222222;
    border-top: 1px solid #444444;
    color: #888888;
    font-size: 11px;
}