body {
    margin: 0;
    background: black;
    color: white;
    font-family: system-ui, sans-serif;
	font-size: 0.9em;
	line-height: 1.45;
	
}

.header, .footer {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 20px;
    background: #000000;
	font-size: 1.2em;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    align-self: stretch;
    position: relative;
}

.side-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}

.footer-center {
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto 40px auto;
    object-fit: contain;
}

.lyric {
    margin: 0;
    font-size: 0.85em;
    font-family: 'Georgia', 'Garamond', serif;
    font-style: italic;
    color: #999;
    letter-spacing: 0.5px;
    font-weight: 300;
}

#top-lyric {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
}

#bot-lyric {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #111;
    border-radius: 8px;
}

.twitter-tweet {
    margin: 0 auto !important;
}

/* Footer styles */
.social-row, .legacy-row {
    margin: 8px 0;
    font-size: 1.00em;
    white-space: nowrap;
}

.social-label, .legacy-label {
    color: #888;
    margin-right: 8px;
}

.social-x {
    color: #1DA1F2;
    font-weight: bold;
    text-decoration: none;
}

.social-insta {
    color: #E1306C;
    font-style: italic;
    text-decoration: none;
}

.social-linkedin {
    color: #0A66C2;
}

.legacy-radiskull {
    color: #FF3366;
    font-weight: italic;
}

.legacy-original {
    color: #00FF9F;
    font-weight: 500;
    text-decoration: none;
}

.legacy-blog {
    color: #FF9900;
    font-style: lighter;
    text-decoration: none;
}

.separator {
    color: #444;
    margin: 0 6px;
}

/* Mobile */
@media (max-width: 768px) {
    .header, .footer {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    .side-img {
        margin-bottom: 15px;
    }
    .social-row a, .legacy-row a {
        display: block;
        margin: 8px 0;
    }
    .separator {
        display: none;
    }
}