.top-section {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .top-section {
        margin-bottom: 2rem;
    }
}

.ascii-art {
    font-family: monospace;
    font-size: 0.6rem;
    font-weight: normal;
    line-height: 1;
    white-space: pre;
    color: white;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .ascii-art {
        font-size: 0.8rem;
        overflow: visible;
    }
}

.social-links {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: normal;
    color: white;
    word-break: break-all;
}

@media (min-width: 768px) {
    .social-links {
        font-size: 0.8rem;
        word-break: normal;
    }
}

.social-links a {
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

.content-section {
    margin-bottom: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .content-section {
        margin-bottom: 1rem;
    }
}

.content-section h2 {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: normal;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .content-section h2 {
        font-size: 0.8rem;
    }
}

.content-section p {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .content-section p {
        font-size: 0.8rem;
    }
}

.banner {
    width: calc(100% + 2rem);
    height: auto;
    max-height: 40px;
    margin: 1rem -1rem;
    display: block;
    object-fit: cover;
}

@media (min-width: 768px) {
    .banner {
        width: calc(100% + 4rem);
        max-height: 50px;
        margin: 1rem -2rem;
    }
}

.content-section:has(+ .banner) {
    margin-bottom: 0;
}

.banner + .content-section {
    margin-top: 0;
}

.bottom-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

@media (min-width: 768px) {
    .bottom-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 0;
    }
}

.spotify-status {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

@media (min-width: 768px) {
    .spotify-status {
        font-size: 0.8rem;
    }
}

.spotify-status a {
    color: white;
    text-decoration: none;
    word-break: break-word;
}

.spotify-status a:hover {
    text-decoration: underline;
}

.contact-links {
    font-family: monospace;
    font-size: 0.7rem;
    font-weight: normal;
    color: white;
    text-align: left;
}

@media (min-width: 768px) {
    .contact-links {
        font-size: 0.8rem;
        text-align: right;
    }
}

.contact-links a {
    color: white;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}