:root{
    --bg:#050505d9;
    --bg-soft:#0b0b0b90;
    --text:#e6e6e6;
    --muted:#9c9c9c;
    --fire:#b11212;
    --fire-soft:rgba(177,18,18,0.25);
    --ice:#7fa9c9;
    --ice-soft:rgba(127,169,201,0.18);
}

@font-face {
    font-family: 'Empire'; /*a name to be used later*/
    src: url('/public_html/fonts/AbsoluteEmpire.ttf'); /*URL to font*/
}

*{
    box-sizing:border-box
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    position: relative; /* ważne dla warstw */
    background: #000;   /* fallback zanim wczyta się obraz */
    margin:0;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    color:var(--text);
    line-height:1.75;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;          /* wypełnia ekran */
    background-position: center;     /* środek kadru */
    transform: translateZ(0);        /* mniej glitchy na mobile */
    z-index: -1;
}


a{
    color:var(--text);
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:.3s;
}
a:hover{
    color:var(--fire);
    border-bottom:1px solid var(--fire);
}

header{
    position:relative;
    min-height:85vh;
    padding:90px 10%;

    display:flex;
    align-items:center;
    overflow:hidden;
    flex-wrap: wrap;
    gap: 4rem;
    background: radial-gradient(circle at bottom left,var(--fire-soft),transparent 55%), radial-gradient(circle at top right,var(--ice-soft),transparent 55%),  linear-gradient(to bottom,#02020272,#08080872);
}
header::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(120deg,transparent 40%,rgba(255,255,255,0.03) 50%,transparent 60%);

    animation:frostMove 18s linear infinite;
    pointer-events:none;
}
header::after{
    content:"";
    position:absolute;
    inset:0;

    background:radial-gradient(circle at center,rgba(177,18,18,0.12),transparent 65%);

    animation:firePulse 8s ease-in-out infinite;
    pointer-events:none;

}
@keyframes frostMove{
    from{
        transform:translateX(-30%);
    }
    to{
        transform:translateX(30%);
    }
}

@keyframes firePulse{
    0%,100%{
        opacity:.6;
    }
    50%{
        opacity:1;
    }
}

.hero{
    position:relative;
    max-width:980px;
    z-index:2;
}
.hero h1{
    font-size:clamp(2.6rem,5vw,4.2rem);
    letter-spacing:5px;
    margin:0 0 12px;
    text-transform:uppercase;
    font-family: "empire";
    -webkit-text-stroke: 1px #111;
}
.hero .lead{
    font-size:1.1rem;
    color:var(--muted);
    max-width:760px;
    margin:0;
}
.status{
    margin-top:28px;
    padding:18px 26px;
    border-left:3px solid var(--fire);

    background:rgba(255,255,255,0.02);
    color:var(--muted);
    font-size:.98rem;
    max-width:820px;
}

section{
    padding:110px 10%;
    background:linear-gradient(to right,rgba(127,169,201,0.03),transparent 40%),var(--bg-soft);
}
section:nth-of-type(even){
    background:linear-gradient(to left,rgba(177,18,18,0.04),transparent 40%),var(--bg);
}
/* .content{} */
h2{
    font-size:1.45rem;
    letter-spacing:3px;
    text-transform:uppercase;
    margin:0 0 26px;
}
.release{
    display:grid;
    grid-template-columns: 300px 1fr;
    gap:22px;

    border:1px solid rgba(255,255,255,0.10);

    background:rgba(0, 0, 0, 0.62);

    border-radius:14px;
    padding:22px;

    align-items:start;

}
.cover{
    width:300px;
    height:300px;
    border-radius:12px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,0.10);

    background:rgba(255,255,255,0.02);

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--muted);
    font-size:.9rem;
    text-align:center;
    padding:10px;

}
.cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.artist_image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 1000px;
    margin: auto;
    border-radius: 32px;
    -webkit-box-shadow: 8px 8px 24px 0px rgb(58, 0, 5);;
    -moz-box-shadow: 8px 8px 24px 0px rgb(58, 0, 5);;
    box-shadow: 8px 8px 24px 0px rgb(58, 0, 5);
    border: 2px solid rgb(61, 0, 0);
}
.content a
{
    color: rgb(255, 0, 0);
    font-weight: bolder;
    
}
.meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:10px 0 14px;
    color:var(--muted);
    font-size:.95rem;
}
.pill{
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.03);
    border-radius:999px;
    padding:6px 10px;
}
.listen{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:14px;

}
.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 14px;
    border:1px solid rgba(255,255,255,0.10);

    background:rgba(255,255,255,0.03);
    border-radius:10px;

    transition:.25s;
    color:var(--text);

}
.btn:hover{
    transform:translateY(-1px);
    border-color:rgba(177,18,18,0.35);
    background:rgba(177,18,18,0.08);
}
.credits{
    margin-top:14px;
    color:var(--muted);
    font-size:.95rem;
}

footer{
    padding:60px 10%;
    background:#030303;
    font-size:.9rem;
    color:var(--muted);
    border-top: 2px solid var(--fire);
}
footer h3{
    margin:0 0 14px;
    font-size:.95rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--text);
}
.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:12px 0 22px;
      justify-content: space-evenly;
}
.social-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    border:1px solid rgba(255,255,255,0.10);
    background:rgba(255,255,255,0.03);
    border-radius:10px;
    transition:.25s;
    color:var(--text);
}
.social-btn:hover
{
    transform:translateY(-1px);
    border-color:rgba(177,18,18,0.35);
    background:rgba(177,18,18,0.08);
}


.new-single
{
    margin: auto;
    text-align: center;
}
.new-single img
{
    max-width: 25vw;
    min-width: 200px;
    border: 2px solid black;
    border-radius: 20px;
}
.single-fin
{
    font-size: larger;
}
.fin-red
{
    color: #e61e1f;
}
.fin-blue
{
    color: #3ea2b6;
}

.section-intro{
    color: var(--muted);
    max-width: 780px;
    margin: 0 0 28px;
}

.singles-grid{
    /* display:grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
    gap: 24px;
    display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.single-card{
    display:flex;
    flex-direction:column;
    border:1px solid rgba(255,255,255,0.10);
    background:rgba(0, 0, 0, 0.62);
    border-radius:18px;
    overflow:hidden;
    transition:transform .25s, border-color .25s, background .25s;
    color:var(--text);
    text-decoration:none;
    max-width: 600px;
    box-shadow: 5px 5px 10px 6px rgba(58, 0, 5, 0.25);
}

.single-card:hover{
    transform:translateY(-4px);
    border-color:rgba(177,18,18,0.35);
    background:rgba(177,18,18,0.05);
}

.single-card:hover h3{
    color: var(--fire);
}

.single-card-cover{
    aspect-ratio: 1 / 1;
    overflow:hidden;
    background:rgba(255,255,255,0.03);
}

.single-card-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.single-card-body{
    padding:18px;
}

.single-card-body h3{
    margin:0 0 10px;
    font-size:1.1rem;
    letter-spacing:1px;
    transition:color .25s;
}

.single-card-body p{
    margin:0 0 14px;
    color:var(--muted);
    line-height:1.6;
}

.single-card-meta{
    display:inline-block;
    font-size:.9rem;
    color:var(--muted);
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:10px;
    width:100%;
}

h1>a:hover
{
    border: 0;
}

#album_table tr, td, table, th
{
    border-collapse: collapse;
    /* border: 2px solid gray; */
    padding: 5px 15px;
}

.single-list
{
    /* border: 2px solid gray; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 20px;    
    border-bottom: 1px solid red;
    color: white !important;
    margin: 0 10px;
}

a.single-list:hover
{
    color: red !important;
}

@media (max-width:768px)
{
    header,section,footer
    {
        padding-left:7%;
        padding-right:7%;
    }
    body::before {
        background-position: 50% 50%; /* środek */
    }
    header {
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
    }
    .release
    {
        grid-template-columns:1fr;
    }
    .cover
    {
        width:240px;
        height:240px;
        margin: auto;
    }
}
