@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.5;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.bandcamp-section {
    margin-bottom: 40px;
}

.bandcamp-embed {
    margin-bottom: 20px;
}

.link-button {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 8px;
    min-width: 200px;
}

.link-button:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.link-button:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.divider {
    height: 1px;
    background: #333333;
    margin: 30px 0;
}

.back-link {
    margin-top: 40px;
}

.back-link a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link a:hover {
    color: #ffffff;
}

.chapters-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .link-button {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }
}