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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.album-art {
    width: 100%;
    max-width: 500px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-image: url('images/cover.jpg');
    background-size: cover;
    background-position: center;
}

.album-art::before {
    content: 'SOMEHOW STILL';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    display: flex;
    align-items: flex-end;
    padding: 22px 22px 20px;
    font-size: 17px;
    font-weight: 200;
    letter-spacing: 11px;
    color: #ffffff;
    text-transform: uppercase;
}

.streaming-list {
    width: 100%;
    list-style: none;
}

.streaming-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #000000;
    transition: background-color 0.2s;
}

.streaming-item:last-child {
    border-bottom: 1px solid #e0e0e0;
}

.streaming-item:hover {
    background-color: #f5f5f5;
}

.streaming-item-icon {
    width: 28px;
    height: 28px;
    margin-right: 16px;
    flex-shrink: 0;
}

.streaming-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.streaming-item-name {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.streaming-item-arrow {
    width: 20px;
    height: 20px;
    color: #999999;
    flex-shrink: 0;
}

.footer-text {
    text-align: center;
    font-size: 12px;
    color: #999999;
    line-height: 1.5;
    max-width: 300px;
    letter-spacing: 1px;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.social-title {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.social-description {
    font-size: 12px;
    color: #999999;
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    text-decoration: none;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 600px) {
    body {
        justify-content: flex-start;
    }

    .container {
        gap: 30px;
    }

    .streaming-item-icon {
        width: 28px;
        height: 28px;
        margin-right: 12px;
    }

    .streaming-item-name {
        font-size: 15px;
    }
}

