/* =============================================
   keyska Faircamp Custom Theme
   Matching keyska.rocks color scheme
   ============================================= */

/* === Fonts === */
body {
    font-family: 'Merriweather Sans', sans-serif !important;
}

/* Only headings in the right places should use Special Elite */
h1, h2 {
    font-family: 'Special Elite', serif !important;
}

.page_more h3 {
    font-family: 'Special Elite', serif !important;
}

header a,
footer a {
    font-family: 'Special Elite', serif !important;
}

.release > a {
    font-family: 'Special Elite', serif !important;
}

/* === Colors === */
body {
    background-color: #0c070b !important;
}

/* Accent color: neon pink */
a {
    color: #ff007f !important;
}

a:hover {
    color: #ff3399 !important;
}

h1 {
    color: #ff007f !important;
}

/* Accent-colored heading for the hero section h1 only */
.abstract h1 {
    color: #ff007f !important;
    font-size: 2rem !important;
}

/* === Home Image: circular profile with pink glow === */
span.home_image {
    flex-shrink: 0 !important;
    width: 220px !important;
    height: 220px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    box-shadow: 0 0 28px #ff007f, 0 0 60px rgba(255, 0, 127, 0.4) !important;
    border: 3px solid #ff007f !important;
    background: #0c070b !important;
}

span.home_image picture {
    display: block;
    width: 100%;
    height: 100%;
}

/* mix-blend-mode: screen makes the solid black background invisible.
   transform: scale zooms the cat in to fill the circle better. */
img.home_image {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: scale(1.4) !important;
    mix-blend-mode: screen !important;
    box-shadow: none !important;
    border: none !important;
    display: block !important;
    margin: 0 !important;
}

/* === page_more (the "More" section at bottom) === */

/* Section headings inside More */
.page_more .text h3 {
    color: #ff007f;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* === Social link lists — pill buttons === */
/* Only target the keyska/Emo Rave follow lists (last two ul's, which have only link-only li items).
   We use a heuristic: li that contains ONLY an <a> tag (no other text siblings). */
.page_more .text ul {
    list-style: none !important;
    padding-left: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0.5rem 0 1.5rem 0;
}

.page_more .text ul li {
    margin: 0;
}

/* All li>a get pill treatment by default */
.page_more .text ul li > a {
    display: inline-block;
    padding: 8px 18px;
    background: #1e111a;
    border: 2px solid #ff007f;
    border-radius: 30px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Special Elite', serif;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.25);
    white-space: nowrap;
}

.page_more .text ul li > a:hover {
    background: #ff007f;
    color: #ffffff !important;
    box-shadow: 0 0 18px #ff007f;
    transform: translateY(-2px);
}

/* === Events list: card-style, left-accented rows === */
/* Events list items have inline text + bold date, so detect them with :has(strong) */
.page_more .text ul:has(li strong) {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    list-style: none !important;
    padding-left: 0 !important;
    text-align: left;
    justify-content: unset;
    margin: 0.75rem 0 2rem 0;
}

.page_more .text ul li:has(strong) {
    display: block !important;
    background: rgba(30, 17, 26, 0.7);
    border-left: 3px solid #ff007f;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    color: #e0e0e0;
    line-height: 1.5;
    list-style-type: none !important;
}

.page_more .text ul li:has(strong) strong {
    display: block;
    color: #ff007f;
    font-family: 'Special Elite', serif;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.page_more .text ul li:has(strong) > a {
    display: inline !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    color: #ff007f !important;
    text-decoration: underline !important;
    font-family: inherit !important;
    font-size: inherit !important;
    box-shadow: none !important;
    white-space: normal !important;
    transform: none !important;
}

.page_more .text ul li:has(strong) > a:hover {
    background: none !important;
    color: #ff3399 !important;
    box-shadow: none !important;
    transform: none !important;
}


/* === Audio player accent === */
.docked_player .timeline .progress {
    background: #ff007f !important;
}

.track.active .track_playback {
    background: rgba(255, 0, 127, 0.3) !important;
    color: #ff007f !important;
}

/* === Release card links === */
.release > a {
    color: #e0e0e0 !important;
    font-size: 1rem !important;
}

.release > a:hover {
    color: #ff007f !important;
}
