@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Calistoga&display=swap');

body {
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    background-color: #000000;
    padding: 15px 0;
    z-index: 10;
}

.toggle-button {
    background-color: #111111;
    color: #ccc;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 50%;
    text-align: center;
    font-family: "Calistoga", system-ui;
}

.toggle-button:first-child {
    border-radius: 5px 0 0 5px;
}

.toggle-button:last-child {
    border-radius: 0 5px 5px 0;
}

.toggle-button.active {
    background-color: #2b2b2b;
    color: white;
}

.releases-container {
    display: none;
}

.releases-container.active {
    display: block;
}

.release-item {
    display: flex;
    margin-bottom: 25px;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cover-art {
    width: 130px;
    height: 130px;
    object-fit: cover;
}

.release-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.release-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    font-family: "Calistoga", system-ui;
}

.release-date {
    color: #b3b3b3;
    font-size: 14px;
    margin-bottom: 5px;
}

.streaming-links {
    display: flex;
    gap: 10px;
}

.streaming-link {
    border-radius: 2px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s;
}

.streaming-link:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {
    .cover-art {
        width: 100px;
        height: 100px;
    }
    
    .release-title {
        font-size: 16px;
    }
    
    .streaming-links {
        gap: 8px;
    }
    
    .streaming-link {
        padding: 4px 8px;
        font-size: 11px;
    }
}