:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --accent-color: #cccccc;
    --font-body: 'Inter', sans-serif;
}

html {
    font-size: 12px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
}

a {
    color: var(--text-secondary);
    text-decoration: underline;
}

a:hover {
    color: var(--text-primary);
}

/* Banner */
.banner {
    width: 100%;
    height: 350px;
    background-image: url('logo/banner.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #333;
}

/* Main Content */
.content-wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.album-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.bandcamp-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Left Column */
.player-col {
    display: flex;
    flex-direction: column;
}

.now-playing-compact {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

#current-track-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.time-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.player-controls-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: #111;
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.progress-wrapper {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--text-primary);
    width: 0%;
}

.controls-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.control-btn:hover {
    color: var(--accent-color);
}

.track-list {
    list-style: none;
}

.track-item {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #222;
    cursor: pointer;
}

.track-item:hover .track-name {
    text-decoration: underline;
}

.track-item.active .track-name {
    font-weight: 600;
}

.track-num {
    color: var(--text-secondary);
    width: 30px;
}

.track-name {
    flex: 1;
}

/* Right Column */
.image-col {
    width: 100%;
}

.album-art {
    width: 100%;
    height: auto;
    border: 1px solid #333;
    display: block;
}

/* Credits Section */
.credits-section {
    border-top: 1px solid #333;
    padding-top: 2rem;
    max-width: 600px;
}

.credits-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.credits-content p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.copyright {
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .bandcamp-grid {
        grid-template-columns: 1fr;
    }
}
