body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace, sans-serif;
    background: #080806;
    color: #eee;
}

header {
    text-align: center;
    padding: 20px;
}

header img {
    max-width: 100%;
    height: auto;
}

.info {
    text-align: justify;
    padding-bottom: 20px;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.2em;
    margin-left: 2%;
    margin-right: 2%;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 10%;
    padding-right: 10%;

}

.links,
.photo {
    flex: 1 1 45%;
    margin: 10px;
}

.links a {
    display: block;
    margin: 10px 0;
    color: #4da6ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.2s ease, text-decoration 0.2s ease;

}

.links a:hover {
    color: white;
}

.links a:hover .label {
    text-decoration: underline;
}


.photo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* Full viewport height */
}

.photo img {
    height: 97vh;
    /* Slightly smaller to avoid overflow */
    width: auto;
    max-width: 100%;
    border-radius: 4px;
    object-fit: cover;
}

@media (max-width: 600px) {
    .content {
        flex-direction: column;
        align-items: center;
        padding-left: 5px;
        padding-right: 5px;
    }

    .links,
    .photo {
        flex: 1 1 100%;
        text-align: center;
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 700px;
}


.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


@media (max-width: 600px) {
    .photo {
        height: auto;
    }

    .photo img {
        height: auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .video-container {
        padding-bottom: 65%;
        /* Taller aspect ratio for mobile */
    }
}


.news-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 10px;
    text-align: justify;
    background-color: #080806;
    border: 2px solid #ffffff;
    border-radius: 4px;
}

.news-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .news-section {
        max-width: 80%;
        margin: 20px auto;
        text-align: left;
        /* Optional: reduce vertical spacing */
    }
}

.site-footer {
    text-align: center;
    padding: 2px;
    background-color: #080806;
    color: #ffffff;
    font-size: 0.9em;
    margin-top: 40px;
    border-top: 1px solid #ffffff;
}

.email-actions {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.copy-button {
    display: block;
    margin: 10px 0;
    background: none;
    border: none;
    color: #4da6ff;
    font-size: 1.2em;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace, sans-serif;
    cursor: pointer;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    text-align: left;
    /* Optional: aligns like a link */
}

.copy-button:hover {
    color: white;
}

.copy-button:hover .label {
    text-decoration: underline;
}

.copy-button .icon {
    text-decoration: none;
}

#copy-confirmation {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    color: #ffffff;
    font-size: 0.9em;
    font-family: 'Courier New', Courier, monospace, sans-serif;
    font-weight: bold;
    margin-left: 10px;
}


@media (max-width: 600px) {
    #copy-confirmation {
        margin: 10px auto;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .info {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    .email-actions {
        justify-content: center;
        text-align: center;
    }

    .copy-button {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

#free {
    text-align: center;
}

.bandcamp {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
    margin-bottom: 4px;
}