/* RedFlame Linktree – supremechaos.com/link/ */

html, body { height: 100%; margin: 0; padding: 0; }
* { box-sizing: border-box; }

body {
    background: #000;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-size: 1rem;
    text-align: center;
}

/* ─── Single Page ────────────────────────────────────── */

.back-link,
.back-link:link,
.back-link:visited,
.back-link:active {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.back-link:hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

.bg-image {
    filter: blur(15px);
    -webkit-filter: blur(15px);
    opacity: 0.5;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    z-index: -1;
}

.container {
    margin: 0 auto;
    max-width: 400px;
    border-radius: 10px;
    background: var(--bg-color, #fff);
    color: var(--font-color, #000);
    box-shadow: black 0 0 5px 0;
}

.cover-image {
    border-radius: 8px 8px 0 0;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

h1, h2 {
    font-weight: 400;
    margin: 0 1rem;
}

h1 { font-size: 1.5rem; }
h2 { font-size: 1.25rem; }

h3 {
    font-weight: 400;
    background: #000;
    color: #fff;
    margin: 0.5rem 0;
    padding: 0.25rem 0;
}

p.description {
    font-size: 0.8rem;
    margin: 0 1rem;
    padding-bottom: 0.5rem;
}

.buttons {
    margin-top: 0.5rem;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    padding: 0 1rem;
    background: var(--buttons-bg, #eee);
}

.btn {
    display: block;
    width: 100%;
    min-height: 40px;
    margin: 1rem auto;
    padding: 0.5rem 50px;
    text-decoration: none;
    color: var(--btn-font, #000);
    background: var(--btn-bg, #fff);
    border: 1px solid var(--btn-border, #0004);
    border-radius: 5px;
    transition: 0.3s;
    position: relative;
}

.btn:hover {
    background: var(--btn-hover-bg, #000);
    color: var(--btn-hover-font, #fff);
}

.btn.bold {
    font-weight: 600;
}

.btn img {
    float: left;
    max-height: 28px;
    margin: -3px 5px 0 -43px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.shake {
    animation: shake-animation 3s ease infinite;
    transform-origin: 50% 50%;
}

@keyframes shake-animation {
    0% { transform: translate(0, 0); }
    2% { transform: translate(5px, 0); }
    4% { transform: translate(0, 0); }
    8% { transform: translate(5px, 0); }
    10% { transform: translate(0, 0); }
    12% { transform: translate(5px, 0); }
    14% { transform: translate(0, 0); }
}

.imprint-link {
    display: block;
    color: #aaa;
    padding: 1rem 0;
    text-decoration: none;
}

.imprint-link:hover {
    color: #fff;
}

/* ─── Overview Page ──────────────────────────────────── */

.page-overview {
    background: #222;
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    color: #ccc;
    min-height: 100vh;
}

.site-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.site-logo {
    display: block;
    margin: 0 auto 1rem;
    border-radius: 12px;
}

.site-header h1 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.site-header p {
    color: #888;
    font-size: 0.95rem;
}

.section-title {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.release-card {
    text-decoration: none;
    color: inherit;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.2s ease;
}

.release-card:hover {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    border-color: #444;
}

.release-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.release-card .info {
    padding: 0.75rem 1rem;
    text-align: center;
}

.release-card h3 {
    font-size: 0.9rem;
    margin: 0;
    background: none;
    color: #ddd;
    font-weight: 600;
    text-align: center;
    padding: 0;
}

.release-card .artist {
    display: block;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.release-card .title {
    display: block;
    color: #ddd;
    font-weight: 400;
}



.release-card .meta {
    font-size: 0.75rem;
    color: #777;
    margin: 0.25rem 0 0;
}

.release-card .desc {
    font-size: 0.75rem;
    color: #888;
    margin: 0.5rem 0 0;
    text-align: center;
    line-height: 1.4;
}

.shop-link,
.shop-link:link,
.shop-link:visited {
    display: inline-block;
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    background: #111;
    transition: all 0.2s ease;
    margin-bottom: 3rem;
}

.shop-link:hover {
    color: #fff;
    text-decoration: none;
    background: #000;
    border-color: #444;
}

.release-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.release-list li {
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    border: 1px solid #2a2a2a;
    transition: all 0.2s ease;
}

.release-list li:hover {
    background: #000;
    border-color: #444;
}

.release-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 1rem;
    text-decoration: none;
    color: #ccc;
}

.release-list img {
    border-radius: 6px;
    flex-shrink: 0;
    aspect-ratio: 1;
    object-fit: cover;
}

.release-list .info {
    flex: 1;
    text-align: left;
}

.release-list .artist {
    display: block;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.release-list .title {
    display: block;
    font-size: 0.85rem;
}

.release-list .date {
    color: #777;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.overview-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    font-size: 0.85rem;
}

.overview-footer a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s ease;
}

.overview-footer a:hover {
    color: #fff;
}

/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 600px) {
    .page-overview {
        padding: 1rem;
    }

    .site-header h1 {
        font-size: 1.35rem;
    }

    .release-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .release-card .desc {
        display: none;
    }


}
