/* body.css */

/* Imaginea de album din player (dacă o vei folosi în alte pagini) */
.player-cover {
    background-image: url("/assets/img/infinitylovefm-cover.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Player embed AzuraCast */
.azuracast-embed {
    width: 100%;
    min-height: 150px;
    border: 0;
}

/* ====== HERO TEXT ====== */

.hero-copy {
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.65);
}

.hero-title {
    font-family: "Russo One", system-ui, sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;

    background: linear-gradient(120deg, #ffffff, #ffe0ec, #ff8db6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow:
        0 0 18px rgba(0, 0, 0, 0.75),
        0 0 26px rgba(238, 43, 91, 0.65);
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.hero-description {
    margin: 0.35rem auto 0;
    max-width: 32rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 241, 245, 0.9);
}

/* ====== HERO PLAYER / NOW PLAYING ====== */

.hero-player {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.now-playing-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.65);
}

.now-playing-frame {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 14px 28px rgba(0, 0, 0, 0.7);
}

.now-playing-footnote {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* ====== LISTENER ENGAGEMENT ====== */

.listener-heading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

/* carduri */
.engagement-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: 1.5rem;
    text-align: center;

    background: radial-gradient(circle at top,
        rgba(255, 255, 255, 0.05),
        rgba(5, 0, 8, 0.85)
    );
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.02);

    transition:
        transform 0.2s ease-out,
        box-shadow 0.2s ease-out,
        border-color 0.2s ease-out,
        background 0.2s ease-out;
}

.engagement-card:hover {
    transform: translateY(-4px);
    border-color: rgba(238, 43, 91, 0.55);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(238, 43, 91, 0.5);
    background: radial-gradient(circle at top,
        rgba(238, 43, 91, 0.15),
        rgba(5, 0, 8, 0.9)
    );
}

/* icon rotund */
.engagement-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 3rem;
    height: 3rem;
    border-radius: 999px;

    background: radial-gradient(circle,
        rgba(238, 43, 91, 0.3),
        rgba(34, 16, 21, 0.9)
    );
    color: #ee2b5b;

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 16px rgba(238, 43, 91, 0.8);
}

/* titlu & text */
.engagement-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.engagement-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 240, 244, 0.88);
}

/* butoane din carduri */
.engagement-button {
    margin-top: 0.25rem;
    min-width: 8rem;
    max-width: 14rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 2.4rem;
    padding: 0 1.1rem;
    border-radius: 999px;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    background: linear-gradient(135deg, #ee2b5b, #ff8bb8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 14px 36px rgba(238, 43, 91, 0.8);

    cursor: pointer;
    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        background 0.18s ease-out,
        border-color 0.18s ease-out;
}

.engagement-button:hover {
    background: linear-gradient(135deg, #ff9ccb, #ff5b98);
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.45),
        0 18px 42px rgba(238, 43, 91, 0.95);
}

.engagement-button:active {
    transform: translateY(1px) scale(0.97);
    box-shadow:
        0 0 0 1px rgba(238, 43, 91, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.9);
}

/* variantă mai soft (dedicație) */
.engagement-button--soft {
    background: linear-gradient(135deg,
        rgba(238, 43, 91, 0.25),
        rgba(255, 255, 255, 0.08)
    );
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 14px 30px rgba(0, 0, 0, 0.85);
}

/* social icons */
.social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;

    transition:
        transform 0.18s ease-out,
        background 0.18s ease-out,
        box-shadow 0.18s ease-out;
}

.social-pill:hover {
    background: #ee2b5b;
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.4),
        0 10px 26px rgba(238, 43, 91, 0.9);
}

/* ====== DEDICATION WALL & FORM ====== */

.dedication-form-card {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* container general pentru wall (opțional, doar semantic) */
.dedication-wall {
    /* poți ajusta dacă vrei spacing special */
}

/* card de dedicație */
.dedication-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.4rem 1.3rem 1.2rem;

    background: radial-gradient(circle at top left,
        rgba(255, 255, 255, 0.08),
        rgba(5, 0, 12, 0.95)
    );
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.03);

    color: #ffffff;
    font-size: 0.85rem;

    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        border-color 0.18s ease-out,
        background 0.18s ease-out;
}

.dedication-card:hover {
    transform: translateY(-3px);
    border-color: rgba(238, 43, 91, 0.7);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(238, 43, 91, 0.5);
    background: radial-gradient(circle at top left,
        rgba(238, 43, 91, 0.2),
        rgba(5, 0, 12, 0.98)
    );
}

.dedication-card__header {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.dedication-card__to {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(255, 230, 240, 0.95);
}

.dedication-card__from {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.dedication-card__message {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 245, 248, 0.95);
}

.dedication-card__song {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    color: rgba(255, 235, 245, 0.9);
}

.dedication-card__song-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    opacity: 0.85;
    margin-right: 0.3rem;
}

.dedication-card__footer {
    margin-top: 0.4rem;
    display: flex;
    justify-content: flex-end;
}

.dedication-card__timestamp {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ====== DEDICATION STATUS BADGES ====== */

.dedication-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.15rem 0.6rem;
    border-radius: 999px;

    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.55);
    color: rgba(255, 255, 255, 0.88);

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.85);
}

/* badge când dedicația a trecut */
.dedication-badge--played {
    border-color: rgba(148, 163, 184, 0.9); /* slate-ish */
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.9),
        rgba(51, 65, 85, 0.85)
    );
    color: rgba(226, 232, 240, 0.96);
}

/* badge pentru cele de azi – highlight romantic */
.dedication-badge--today {
    border-color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg,
        #ee2b5b,
        #ff8bb8
    );
    color: #ffffff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 12px 30px rgba(238, 43, 91, 0.9);
}

/* Card special pentru dedicațiile de azi */
.dedication-card--today {
    border-color: rgba(238, 43, 91, 0.85);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.98),
        0 0 0 1px rgba(238, 43, 91, 0.8);
    background: radial-gradient(circle at top left,
        rgba(238, 43, 91, 0.25),
        rgba(5, 0, 12, 0.98)
    );
}

.dedication-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: flex-end;
    align-items: center;
}

/* badge general tier */
.badge-tier {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

/* culori tieruri */
.badge-tier--t1 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(238, 43, 91, 0.25));
    color: #ffe9f3;
}
.badge-tier--t2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(238, 43, 91, 0.4));
    color: #fff4fb;
}
.badge-tier--t3 {
    background: linear-gradient(135deg, #ffd6f0, #ee2b5b);
    color: #320011;
}

/* badge Played / Today */
.badge-small {
    display: inline-flex;
    align-items: center;
    padding: 0.08rem 0.45rem;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.badge-played {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.badge-today {
    background: rgba(238, 43, 91, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

.dedication-card__badges {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

/* Badge mic pentru Today / Played */
.badge-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.12rem 0.6rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-today {
    background: linear-gradient(135deg, #ffcfdf, #ff6fa5);
    color: #2b0613;
    box-shadow: 0 0 18px rgba(255, 111, 165, 0.8);
}

.badge-played {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Badge-uri de tier Patreon */
.badge-tier {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.badge-tier--t1 {
    background: linear-gradient(135deg, #ffe0f0, #ffb1d7);
    color: #3b0b20;
}

.badge-tier--t2 {
    background: linear-gradient(135deg, #ffdba3, #ff9f5b);
    color: #3b1e00;
}

.badge-tier--t3 {
    background: linear-gradient(135deg, #d4ffec, #4ff3c2);
    color: #041c13;
}


