:root {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #b300b3;
    --card-bg: #222;
    --header-bg: #1a1a1a;
    --card-size: 300px;
    --base-font-size: 1.2rem;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: url('../images/background.jpeg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    padding-top: 40px;
    font-family: 'Helvetica', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: var(--base-font-size);
    line-height: 1.6;
}

header {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-content h1 {
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.release-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--card-size));
    gap: 2rem;
    padding: 2rem;
    justify-content: center;
}

.release-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.catalog-number {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: var(--text-color);
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    margin: 0;
    line-height: 1;
    z-index: 1;
    background: #000000;
    padding: 5px 10px;
    border-radius: 4px;
}

.release-card {
    position: relative;
    width: var(--card-size);
    height: var(--card-size);
    background: rgba(34, 34, 34, 0.7);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.release-card:hover {
    transform: translateY(-5px);
}

.artist-name {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1;
    text-align: right;
    font-weight: 700;
}

.release-title {
    color: var(--text-color);
    font-size: 1rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1;
    text-align: right;
}

/* Release detail page styles */
.release-header {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.release-header .release-title {
    font-size: 3rem;
    margin: 0;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    text-align: center;
}

.release-header .artist-name {
    font-size: 2rem;
    margin: 0.5rem 0 0;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: normal;
    text-align: center;
}

.release-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.release-description p {
    margin: 0 0 1rem 0;
}

.release-description p:last-child {
    margin-bottom: 0;
}

.stream-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.stream-section h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.embeds-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.embeds-container iframe {
    width: 100%;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
}

.contact-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.contact-section h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.social-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.back-button {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .releases-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .release-header .release-title {
        font-size: 2rem;
    }

    .release-header .artist-name {
        font-size: 1.5rem;
    }

    .release-description,
    .stream-section,
    .contact-section {
        padding: 1rem;
    }
} 