: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);
      color-scheme: dark;
}
.social-btn option
{
    background:#030303;
}
.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: min(600px, 25vw);
    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;
}

.social-dropdown {
    position: relative;
    width: 200px;
}

.social-btn {
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    border:1px solid rgba(255,255,255,0.10);
    background:#1a1a1a;
    border-radius:10px;
    transition:.25s;
    color:#fff;
    cursor:pointer;
}

.social-btn:hover {
    transform:translateY(-1px);
    border-color:rgba(177,18,18,0.35);
    background:rgba(177,18,18,0.08);
}

.dropdown-menu {
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    width:100%;
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,0.10);
    border-radius:10px;
    display:none;
    overflow:hidden;
    z-index:999;
}

.dropdown-item {
    padding:10px 14px;
    cursor:pointer;
    color:#fff;
    transition:.2s;
}

.dropdown-item:hover {
    background:rgba(177,18,18,0.15);
}


/* =========================
   LYRICS
========================= */

#lyric {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(177, 18, 18, 0.16),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 85%,
            rgba(127, 169, 201, 0.12),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            rgba(3, 3, 3, 0.92),
            rgba(8, 8, 8, 0.84)
        );
}

/* Delikatny napis w tle */
#lyric::before {
    position: absolute;
    top: 40px;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;
    text-align: center;

    font-family: "Empire", sans-serif;
    font-size: clamp(3.5rem, 10vw, 9rem);
    letter-spacing: clamp(5px, 1vw, 15px);
    white-space: nowrap;

    color: rgba(255, 255, 255, 0.1);

    pointer-events: none;
    user-select: none;
}

.lyric-content {
    position: relative;
    z-index: 1;

    width: min(100%, 850px);
    margin: 0 auto;
}

.lyric-heading {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

/* Nagłówek Lyric */
.lyric-heading .lyric-label {
    display: inline-block;
    position: relative;

    margin: 0;
    padding: 0 30px 14px;

    font-family: "Empire", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: 7px;
    text-transform: uppercase;

    color: var(--text);
}

/* Czerwono-niebieska linia pod nagłówkiem */
.lyric-heading .lyric-label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;

    width: 130px;
    height: 2px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        var(--fire),
        rgba(255, 255, 255, 0.35),
        var(--ice)
    );

    box-shadow:
        -25px 0 18px rgba(177, 18, 18, 0.35),
        25px 0 18px rgba(127, 169, 201, 0.25);
}

.lyric-box {
    position: relative;
    overflow: hidden;

    padding: clamp(35px, 6vw, 70px);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(177, 18, 18, 0.07),
            transparent 35%
        ),
        linear-gradient(
            315deg,
            rgba(127, 169, 201, 0.06),
            transparent 35%
        ),
        rgba(0, 0, 0, 0.68);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        8px 8px 30px rgba(58, 0, 5, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Linie ognia i lodu po bokach */
.lyric-box::before,
.lyric-box::after {
    content: "";
    position: absolute;
    top: 45px;
    bottom: 45px;

    width: 2px;

    border-radius: 999px;
}

.lyric-box::before {
    left: 0;

    background: linear-gradient(
        to bottom,
        transparent,
        var(--fire),
        transparent
    );

    box-shadow: 0 0 18px rgba(177, 18, 18, 0.65);
}

.lyric-box::after {
    right: 0;

    background: linear-gradient(
        to bottom,
        transparent,
        var(--ice),
        transparent
    );

    box-shadow: 0 0 18px rgba(127, 169, 201, 0.45);
}

.lyric-text {
    position: relative;
    z-index: 1;

    margin: 0;

    text-align: center;
    color: #d0d0d0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    line-height: 1.95;
    letter-spacing: 0.35px;
}

.monster
{
    font-style: italic;
    font-weight: bold;
}


@media (max-width: 768px) {
    #lyric {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    #lyric::before {
        top: 35px;
        font-size: 3.2rem;
        letter-spacing: 4px;
    }

    .lyric-heading {
        margin-bottom: 24px;
    }

    .lyric-heading .lyric-label {
        padding-right: 15px;
        padding-left: 15px;
        letter-spacing: 5px;
    }

    .lyric-box {
        padding: 34px 22px;
        border-radius: 14px;
    }

    .lyric-box::before,
    .lyric-box::after {
        top: 25px;
        bottom: 25px;
    }

    .lyric-text {
        font-size: 1rem;
        line-height: 1.85;
    }

    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;
    }
    .single-card
    {
        max-width: 80vw;
    }
}
