/* ============================================
   ALISA DARKLACE - Gothic Dark Theme
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600&display=swap');

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-medium: #2a2a2a;
    --pink-hot: #ff1493;
    --pink-neon: #ff69b4;
    --pink-pale: #ffb6c1;
    --pink-dark: #c71585;
    --white: #f5f5f5;
    --grey: #888;
    --red-blood: #8b0000;

    --font-display: 'Cinzel Decorative', serif;
    --font-elegant: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.3s ease;
    --glow: 0 0 20px var(--pink-hot), 0 0 40px var(--pink-dark);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 20, 147, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-pale));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-hot), var(--pink-pale));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--pink-hot);
    text-shadow: 0 0 10px var(--pink-hot);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--pink-hot);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--black);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" opacity="0.03">&#x26E7;</text></svg>');
    background-size: 200px;
    animation: floatPattern 60s linear infinite;
}

@keyframes floatPattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 200px;
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-hot) 50%, var(--pink-pale) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 40px rgba(255, 20, 147, 0.8));
    }
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-style: italic;
    color: var(--grey);
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--pink-neon);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 3rem;
}

/* Pentagram decoration */
.pentagram {
    width: 60px;
    height: 60px;
    margin: 2rem auto;
    opacity: 0.6;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--pink-hot);
    border: 2px solid var(--pink-hot);
}

.btn-outline:hover {
    background: var(--pink-hot);
    color: var(--black);
    box-shadow: var(--glow);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 6rem 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-pale));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: var(--font-elegant);
    text-align: center;
    color: var(--pink-pale);
    margin-bottom: 3rem;
    font-size: 1.3rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--pink-hot);
    z-index: -1;
}

.about-image img {
    width: 100%;
    filter: grayscale(30%) contrast(1.1);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%) contrast(1.2);
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--pink-hot);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-stats-numbers {
    display: flex;
    gap: 2rem;
}

.about-stats-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.about-stats-social a {
    display: flex;
    align-items: center;
}

.about-stats-social img {
    width: 3rem;
    height: 3rem;
    filter: invert(22%) sepia(97%) saturate(6315%) hue-rotate(316deg) brightness(97%) contrast(108%);
    transition: transform 0.3s;
}

.about-stats-social a:hover img {
    transform: scale(1.15);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--pink-hot);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
}

/* ============================================
   STICKERS PROMO
   ============================================ */

.stickers-promo {
    padding: 5rem 2rem;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 20, 147, 0.1) 100%),
        var(--black);
}

.stickers-promo-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stickers-promo-image {
    position: relative;
}

.stickers-promo-image img {
    width: 100%;
}

.stickers-promo-text .section-title {
    font-size: 2.2rem;
}

.stickers-promo-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1rem;
}

.stickers-promo-text .btn {
    margin-top: 1.5rem;
}


/* ============================================
   FEATURED / SINGLES SECTIONS
   ============================================ */

.featured {
    background:
        radial-gradient(ellipse at center, rgba(255, 20, 147, 0.05) 0%, transparent 70%),
        var(--black-light);
}

/* ============================================
   PAGE HERO (unified hero for blog, gallery, book, album)
   ============================================ */

.page-hero {
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(to top, var(--black) 0%, transparent 50%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(135deg, rgba(255, 20, 147, 0.3) 0%, transparent 50%),
        var(--black-light);
}

/* Centered variant (blog posts, gallery items) */
.page-hero--center {
    min-height: 40vh;
    padding: 120px 2rem 3rem;
}

.page-hero--center .page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Split variant (albums, books) — cover + info side by side */
.page-hero--split {
    min-height: 70vh;
    padding-top: 100px;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 20, 147, 0.2) 100%),
        var(--black);
}

.page-hero--split .page-hero-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.page-hero-cover {
    position: relative;
}

.page-hero-cover img {
    width: 100%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(255, 20, 147, 0.35),
        0 0 100px rgba(255, 20, 147, 0.15);
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.page-hero-meta {
    display: flex;
    column-gap: 2rem;
    row-gap: 0.3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.page-hero-meta span {
    font-size: 0.85rem;
    color: var(--pink-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero-badge {
    font-style: normal;
    font-family: var(--font-body);
    padding: 0.2rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--pink-hot);
    color: var(--black);
}

/* Sidebar column for split-hero detail pages */
.sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Links row inside hero (streaming/purchase links) */
.sidebar-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ============================================
   BLOG POST PAGE
   ============================================ */

.blog-category {
    display: inline-block;
    background: var(--pink-hot);
    color: var(--black);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.blog-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--white) 0%, var(--pink-pale) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--grey);
    font-size: 0.9rem;
}

.blog-meta a {
    color: var(--grey);
    transition: color 0.3s;
}

.blog-meta a:hover {
    color: var(--pink-hot);
}

.blog-meta .blog-category {
    margin-bottom: 0;
}

.blog-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.8rem;
}

.blog-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--pink-hot);
    margin: 3rem 0 1.5rem;
}

.blog-content h3 {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    color: var(--pink-neon);
    margin: 2rem 0 1rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--pink-hot);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--black-light);
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.44rem;
    color: var(--pink-pale);
}

.blog-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--grey);
    font-style: normal;
}

.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.blog-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.blog-content a {
    color: var(--pink-hot);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-content a:hover {
    color: var(--pink-pale);
}

/* Shared content styles for figure, img, hr (blog + content-body) */
.blog-content figure,
.content-body figure {
    margin: 2.5rem 0;
}

.blog-content figure img,
.content-body figure img {
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border: 1px solid var(--black-medium);
}

.blog-content figcaption,
.content-body figcaption {
    text-align: center;
    color: var(--grey);
    font-size: 0.85rem;
    margin-top: 0.6rem;
    font-style: italic;
}

.blog-content img:not(figure img),
.content-body img:not(figure img) {
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
    display: block;
    margin: 2rem auto;
    border: 1px solid var(--black-medium);
}

.blog-content hr {
    border: none;
    text-align: center;
    margin: 3rem 0;
}

.blog-content hr::after {
    content: '✦ ✦ ✦';
    color: var(--pink-hot);
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
}

.blog-image {
    margin: 2.5rem 0;
}

.blog-image img {
    width: 100%;
    border: 1px solid var(--black-medium);
}

.blog-image figcaption {
    text-align: center;
    color: var(--grey);
    font-size: 0.85rem;
    margin-top: 0.8rem;
    font-style: italic;
}

.drop-cap::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    float: left;
    line-height: 1;
    padding-right: 0.8rem;
    color: var(--pink-hot);
}

.tag-list {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

/* Author box at bottom of post */
.author-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--black-light);
    border: 1px solid var(--black-medium);
    padding: 2rem;
    margin: 4rem 0 0;
}

.author-box-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info h4 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.author-info h4 a {
    color: var(--pink-hot);
}

.author-info h4 a:hover {
    color: var(--pink-pale);
}

.author-info p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.author-link {
    color: var(--pink-hot);
    font-size: 0.9rem;
}

/* Related posts section at bottom of blog post */
.related-posts {
    background: var(--black-light);
    border-top: 1px solid var(--black-medium);
    padding: 5rem 2rem;
    margin-top: 2rem;
}

.related-posts .section-title {
    margin-bottom: 0.5rem;
}

.related-posts .section-subtitle {
    margin-bottom: 2rem;
}

/* ============================================
   GALLERY PAGE
   ============================================ */


.gallery-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Masonry grid */
.gallery-masonry {
    columns: 3;
    column-gap: 1rem;
}

@media (max-width: 900px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (max-width: 550px) {
    .gallery-masonry {
        columns: 1;
    }
}

.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    background: var(--black-light);
    border: 1px solid var(--black-medium);
    transition: border-color 0.3s;
}

.gallery-masonry-item:hover {
    border-color: var(--pink-hot);
}

.gallery-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-masonry-item:hover img {
    transform: scale(1.03);
}

.gallery-masonry-caption {
    padding: 0.8rem 1rem;
}

.gallery-masonry-caption strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--white);
    font-size: 0.95rem;
}

.gallery-masonry-caption p {
    margin: 0;
    color: var(--grey);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-content {
    max-width: calc(100vw - 4rem);
    max-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: calc(100vh - 4rem);
    object-fit: contain;
    border: 1px solid var(--black-medium);
}

.gallery-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s;
}

.gallery-lightbox-close:hover {
    color: var(--pink-hot);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--black-medium);
    color: var(--white);
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, color 0.3s;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: var(--pink-dark);
    color: var(--white);
}

.gallery-lightbox-prev {
    left: 1rem;
}

.gallery-lightbox-next {
    right: 1rem;
}

/* ============================================
   BOOK PAGE
   ============================================ */


.book-info h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-pale));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.book-info .author {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}


.book-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}


/* ============================================
   ALBUM PAGE
   ============================================ */


.album-info h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-pale));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.album-info .artist {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--grey);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}


.album-explicit-badge {
    background: var(--red-blood);
    color: var(--white);
    padding: 1px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 0;
}

.album-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}


.album-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--grey);
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.album-link:hover {
    color: var(--pink-hot);
    border-bottom-color: var(--pink-hot);
}

.album-link-logo {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(0.6);
    transition: filter 0.3s;
}

.album-link:hover .album-link-logo {
    filter: brightness(0) invert(1);
}

/* Track List */
.tracklist {
    background: var(--black);
    padding: 4rem 2rem;
}

.track {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    column-gap: 1.5rem;
    row-gap: 0;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--black-medium);
    transition: var(--transition);
}

.track:hover {
    background: var(--black-medium);
}

.track-number {
    font-family: var(--font-display);
    color: var(--pink-hot);
    font-size: 1.2rem;
}

.track-info {
    display: flex;
    flex-direction: column;
}

.track-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.track-featuring {
    font-size: 0.85rem;
    color: var(--grey);
}

.track-duration {
    color: var(--grey);
    font-size: 0.9rem;
}

.track-lyrics {
    grid-column: 1 / -1;
    padding: 0.25rem 0 0.5rem calc(50px + 1.5rem);
}

.track-lyrics summary {
    cursor: pointer;
    color: var(--pink-hot);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.track-lyrics summary::-webkit-details-marker {
    display: none;
}

.track-lyrics summary::before {
    content: '▸';
    display: inline-block;
    transition: transform 0.2s;
    font-size: 0.75rem;
}

.track-lyrics details[open] summary::before {
    transform: rotate(90deg);
}

.track-lyrics summary:hover {
    color: var(--pink-pale);
}

.track-lyrics-text {
    background: var(--black-light);
    padding: 1.5rem 2rem;
    border-left: 3px solid;
    border-image: linear-gradient(180deg, var(--pink-hot), var(--pink-dark)) 1;
    color: var(--white);
    opacity: 0.9;
    line-height: 2;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    max-height: 400px;
    overflow-y: auto;
}

.track-lyrics-text p {
    margin-bottom: 1.2rem;
}

.track-lyrics-text p:last-child {
    margin-bottom: 0;
}

/* Album Tracklist + Sidebar Grid */
.album-tracklist-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .album-tracklist-grid {
        grid-template-columns: 1fr;
    }
}

.album-tracklist-col {
    min-width: 0;
}


.album-detail-block h3,
.album-detail-block-title {
    font-family: var(--font-display);
    color: var(--pink-hot);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.album-detail-block ul {
    list-style: none;
    color: var(--grey);
}

.album-detail-block ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--black-medium);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.album-detail-block ul li:last-child {
    border-bottom: none;
}

.album-detail-block ul li .val {
    color: var(--white);
}

.album-credits-list {
    list-style: none;
    color: var(--grey);
    line-height: 2;
}

.album-credits-list li {
    display: block !important;
    border-bottom: none !important;
    padding: 0 !important;
}

.album-credits-list strong {
    color: var(--white);
}

.album-detail-text {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.85;
}

.album-detail-text p {
    margin-bottom: 0.8rem;
}

.album-detail-text p:last-child {
    margin-bottom: 0;
}

.tracklist .content-body h2,
.tracklist .content-body h3,
.tracklist .content-body h4 {
    font-family: var(--font-display);
    color: var(--pink-hot);
    text-align: center;
}

.tracklist .content-body h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

.tracklist .content-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.tracklist .content-body h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--black);
    border-top: 1px solid var(--black-medium);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--grey);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    color: var(--pink-hot);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--grey);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink-hot);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--pink-hot);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--pink-hot);
    color: var(--black);
    box-shadow: var(--glow);
}

.social-icons a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(0.6);
    transition: filter 0.3s;
}

.social-icons a:hover img {
    filter: brightness(0) invert(0);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--black-medium);
    text-align: center;
    color: var(--grey);
    font-size: 0.85rem;
}

.footer-bottom span {
    color: var(--pink-hot);
}

.footer-link {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--pink-hot);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--pink-hot) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .page-hero--split .page-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-hero-cover {
        max-width: 350px;
        margin: 0 auto;
    }

    .page-hero-meta {
        justify-content: center;
    }

    .album-info .artist,
    .book-info .author {
        justify-content: center;
    }

    .album-description,
    .book-description {
        text-align: center;
    }

    .sidebar-links {
        justify-content: center;
        gap: 0.8rem;
    }

    .btn-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    section {
        padding: 4rem 1rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    .page-hero--split .page-hero-content {
        padding: 1.5rem 1rem;
    }

    .related-posts {
        padding: 3rem 1rem;
    }

    .hero-tagline {
        letter-spacing: 3px;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .about-stats-numbers {
        justify-content: center;
    }

    .about-stats-social {
        justify-content: center;
    }

    .stickers-promo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .stickers-promo-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .stickers-promo-text .section-title {
        text-align: center !important;
    }

    .track {
        grid-template-columns: 40px 1fr auto;
        column-gap: 1rem;
        padding: 1rem;
    }

    .track-lyrics {
        padding-left: calc(40px + 1rem);
    }

    .track-lyrics-text {
        padding: 1rem 1.2rem;
    }

    .footer-content {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-pink {
    color: var(--pink-hot);
}

.text-grey {
    color: var(--grey);
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 2rem;
}


/* ============================================
   CMS ADDITIONS
   ============================================ */

/* ── Site Main (inner pages) ── */
.site-main {
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: calc(100vh - 200px);
}

/* Hero/header pages: have their own padding-top, so remove site-main's */
.site-main:has(.page-hero, .links-page, .page-header) {
    padding-top: 0;
}

/* Page header — centered title banner with glow (from design: disco-header) */
.page-header {
    padding: 150px 2rem 60px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 20, 147, 0.15) 0%, transparent 60%),
        var(--black);
}

.page-header .section-title {
    margin-bottom: 0.5rem;
}

.page-header .btn {
    margin-top: 1rem;
}


/* ── Page Headings ── */
h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

h2 {
    font-family: var(--font-elegant);
    color: var(--white);
}

h3 {
    font-family: var(--font-elegant);
    color: var(--white);
}

/* ── Content Body (WYSIWYG) ── */
.content-body {
    margin-top: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.85);
}

/* Narrow content for readability (blog posts, pages) */
.container>.content-body {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-body h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-body h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body ul,
.content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}


.content-body blockquote {
    border-left: 3px solid var(--pink-hot);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--black-light);
    color: var(--pink-pale);
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.2rem;
}

.content-body blockquote cite {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--grey);
}

.content-body blockquote cite::before {
    content: '— ';
}

.content-body hr {
    border: none;
    text-align: center;
    margin: 3rem 0;
}

.content-body hr::after {
    content: '✦ ✦ ✦';
    color: var(--pink-hot);
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
}

.content-body a {
    color: var(--pink-neon);
    text-decoration: underline;
    text-decoration-color: rgba(255, 105, 180, 0.3);
    text-underline-offset: 3px;
}

.content-body a:hover {
    color: var(--pink-hot);
    text-decoration-color: var(--pink-hot);
}

/* ── Callouts (aside) ── */
.blog-content aside,
.content-body aside {
    position: relative;
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(136, 136, 136, 0.2);
    border-top: 3px solid var(--grey);
    border-radius: 6px;
    background: rgba(136, 136, 136, 0.06);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.95;
    box-shadow: 0 0 12px rgba(255, 20, 147, 0.15), 0 0 30px rgba(255, 20, 147, 0.06);
}

.blog-content aside[data-emoji]::before,
.content-body aside[data-emoji]::before {
    content: attr(data-emoji);
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.15em;
    vertical-align: middle;
}

/* Information */
.blog-content aside.information,
.content-body aside.information {
    border-color: rgba(78, 168, 222, 0.2);
    border-top-color: #4ea8de;
    background: rgba(78, 168, 222, 0.08);
}

/* Warning */
.blog-content aside.warning,
.content-body aside.warning {
    border-color: rgba(224, 164, 88, 0.2);
    border-top-color: #e0a458;
    background: rgba(224, 164, 88, 0.08);
}

/* Danger */
.blog-content aside.danger,
.content-body aside.danger {
    border-color: rgba(224, 88, 88, 0.2);
    border-top-color: #e05858;
    background: rgba(224, 88, 88, 0.08);
}

/* Success */
.blog-content aside.success,
.content-body aside.success {
    border-color: rgba(88, 194, 125, 0.2);
    border-top-color: #58c27d;
    background: rgba(88, 194, 125, 0.08);
}

/* ── CMS Card Grid ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.book-series .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    justify-content: start;
}

.cms-card {
    background: var(--black-light);
    border: 1px solid var(--black-medium);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.cms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-hot), var(--pink-pale));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 5;
}

.cms-card:hover::before {
    transform: scaleX(1);
}

.cms-card:hover {
    border-color: var(--pink-hot);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
}

.cms-card-cover {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: var(--black-medium);
}

.cms-card-cover.square {
    aspect-ratio: 1/1;
}

.cms-card-cover.portrait {
    aspect-ratio: 2/3;
}

.cms-card-cover.ratio-landscape {
    aspect-ratio: 16/9;
}

.cms-card-cover.ratio-gallery {
    aspect-ratio: 4/5;
}

.cms-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cms-card:hover .cms-card-cover img {
    transform: scale(1.1);
}

.cms-card-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.3;
}

.cms-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink-hot);
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cms-card-badge.bg-red {
    background: var(--red-blood);
    color: var(--white);
}

.cms-card-badge.bg-blue {
    background: var(--pink-dark);
    color: var(--white);
}

.cms-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cms-card-title {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.cms-card-date {
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 0.5rem;
    display: block;
}

.cms-card-title a {
    color: var(--white);
}

.cms-card-title a:hover {
    color: var(--pink-hot);
    text-shadow: 0 0 10px var(--pink-hot);
}

.cms-card-meta {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.cms-card-meta>*:not(:first-child):not(.cms-card-tag):not(.cms-card-label)::before {
    content: '·';
    margin-right: 0.5rem;
    opacity: 0.5;
}

.cms-card-preview {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cms-card-label {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--pink-dark);
    color: var(--white);
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.cms-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.cms-card-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--black-medium);
    color: var(--grey);
}


.cms-card-description {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.5rem;
}

.cms-card-badge-bottom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--red-blood);
    color: var(--white);
    z-index: 5;
}

.cms-card-footer {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

/* ── Clickable Cards (blog, album, book, gallery) ── */
.blog-card,
.album-card,
.book-card,
.gallery-card {
    display: flex;
    flex-direction: column;
    background: var(--black-light);
    border: 1px solid var(--black-medium);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    color: var(--white);
    text-decoration: none;
}

.blog-card::before,
.album-card::before,
.book-card::before,
.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-hot), var(--pink-pale));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 5;
}

.blog-card:hover::before,
.album-card:hover::before,
.book-card:hover::before,
.gallery-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover,
.album-card:hover,
.book-card:hover,
.gallery-card:hover {
    border-color: var(--pink-hot);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.15);
}

/* Cover areas — different aspect ratios per card type */
.blog-card-cover,
.album-card-cover,
.book-card-cover,
.gallery-card-cover {
    overflow: hidden;
    position: relative;
    background: var(--black-medium);
}

.blog-card-cover {
    aspect-ratio: 4/3;
}

.album-card-cover {
    aspect-ratio: 1/1;
}

.book-card-cover {
    aspect-ratio: 1/1.6;
}

.gallery-card-cover {
    aspect-ratio: 4/5;
}

.blog-card-cover img,
.album-card-cover img,
.book-card-cover img,
.gallery-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-cover img,
.album-card:hover .album-card-cover img,
.book-card:hover .book-card-cover img,
.gallery-card:hover .gallery-card-cover img {
    transform: scale(1.05);
}

.blog-card-cover-placeholder,
.album-card-cover-placeholder,
.book-card-cover-placeholder,
.gallery-card-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.3;
}

/* Badges on cover */
.blog-card-badge,
.album-card-badge,
.book-card-badge,
.gallery-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--pink-hot);
    backdrop-filter: blur(4px);
    z-index: 5;
}

.album-card-badge-bottom,
.book-card-badge-bottom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--red-blood);
    color: var(--white);
    z-index: 5;
}

/* Card body — shared */
.blog-card-body,
.album-card-body,
.book-card-body,
.gallery-card-body {
    padding: 1.2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Blog card specifics */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--grey);
    opacity: 0.7;
}

.blog-card-collection {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--pink-dark);
    color: var(--white);
}

.blog-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pink-hot);
    margin-bottom: 0.6rem;
    transition: text-shadow 0.3s;
}

.blog-card:hover .blog-card-title {
    text-shadow: 0 0 12px rgba(255, 20, 147, 0.4);
}

.blog-card-description {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Album card specifics */
.album-card-title {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pink-hot);
    margin-bottom: 0.5rem;
    transition: text-shadow 0.3s;
}

.album-card:hover .album-card-title {
    text-shadow: 0 0 12px rgba(255, 20, 147, 0.4);
}

.album-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.album-card-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--black-medium);
    color: var(--grey);
}

.album-card-meta {
    font-size: 0.8rem;
    color: var(--grey);
    opacity: 0.7;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.album-card-description {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: auto;
}

/* Book card specifics */
.book-card-series {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--pink-dark);
    color: var(--white);
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.book-card-tags {
    display: inline-flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.book-card-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--black-medium);
    color: var(--grey);
}

.book-card-title {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pink-hot);
    margin-bottom: 0.5rem;
    transition: text-shadow 0.3s;
}

.book-card:hover .book-card-title {
    text-shadow: 0 0 12px rgba(255, 20, 147, 0.4);
}

.book-card-meta {
    font-size: 0.8rem;
    color: var(--grey);
    opacity: 0.7;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.book-card-description {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: auto;
}

/* Gallery card specifics */
.gallery-card-collection {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--pink-dark);
    color: var(--white);
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.gallery-card-title {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pink-hot);
    margin-bottom: 0.5rem;
    transition: text-shadow 0.3s;
}

.gallery-card:hover .gallery-card-title {
    text-shadow: 0 0 12px rgba(255, 20, 147, 0.4);
}

.gallery-card-meta {
    font-size: 0.8rem;
    color: var(--grey);
    opacity: 0.7;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.gallery-card-description {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: auto;
}

/* ── Tags ── */
.tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    background: transparent;
    color: var(--grey);
    border: 1px solid var(--black-medium);
    transition: var(--transition);
}

.tag-pill:hover {
    border-color: var(--pink-hot);
    color: var(--pink-hot);
}

.content-body .tag-pill {
    color: var(--grey);
    text-decoration: none;
}

.content-body .tag-pill:hover {
    color: var(--pink-hot);
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--black-light);
    border: 1px solid var(--black-medium);
    font-size: 0.85rem;
}

.active-filters .tag-pill {
    pointer-events: none;
    background: rgba(255, 20, 147, 0.15);
    color: var(--pink-hot);
    border-color: var(--pink-hot);
}

.clear-filters {
    color: var(--pink-hot);
    font-weight: 500;
    margin-left: auto;
}

/* ── Pagination ── */
.pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 3rem;
    justify-content: center;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--black-medium);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    background: var(--black-light);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--pink-hot);
    color: var(--pink-hot);
}

.pagination span.current {
    background: var(--pink-hot);
    color: var(--black);
    border-color: var(--pink-hot);
}

/* ── Letter Heading / Filter ── */
.letter-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--black-medium);
    color: var(--pink-hot);
}

.book-series+.book-series {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--black-medium);
}

.book-series .letter-heading {
    margin-top: 0;
}

.book-series {
    padding: 0;
}

.book-series .card-grid {
    margin-top: 0;
}

.series-description {
    margin-bottom: 1.5rem;
    color: var(--grey);
    line-height: 1.6;
}

/* ── Covers ── */
.page-cover,
.post-cover-main,
.entry-cover,
.gallery-cover-main {
    margin: 2rem 0;
    overflow: hidden;
    border: 1px solid var(--black-medium);
}

.page-cover img,
.post-cover-main img,
.entry-cover img,
.gallery-cover-main img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* ── Gallery Images Grid ── */
.gallery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.gallery-figure {
    margin: 0;
    overflow: hidden;
    background: var(--black-light);
    border: 1px solid var(--black-medium);
    transition: var(--transition);
}

.gallery-figure:hover {
    border-color: var(--pink-hot);
}

.gallery-figure img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s;
}

.gallery-figure a {
    display: block;
    overflow: hidden;
}

.gallery-figure a:hover img {
    transform: scale(1.05);
}

.gallery-figure figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border-top: 1px solid var(--black-medium);
}

/* ── Error / No Results ── */
.error-page {
    text-align: center;
    padding: 80px 0;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--pink-hot);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-page p {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.no-results {
    color: var(--grey);
    font-size: 1.1rem;
    padding: 4rem 0;
    text-align: center;
    background: var(--black-light);
    border: 1px dashed var(--black-medium);
}

/* ── Decorative Side Lines ── */
.deco-line-left,
.deco-line-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(255, 20, 147, 0.3), transparent);
    z-index: 20;
    pointer-events: none;
}

.deco-line-left {
    left: 28px;
}

.deco-line-right {
    right: 28px;
}


/* ============================================
   HOMEPAGE — HERO OVERRIDES (from index.html inline styles)
   ============================================ */

/* Photo integration */
.hero {
    justify-content: flex-start;
}

.hero-photo {
    position: absolute;
    right: -2%;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: 65%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
    -webkit-mask-image:
        linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0.85) 82%, rgba(0, 0, 0, 0.3) 92%, transparent 100%),
        linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.6) 92%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0.85) 82%, rgba(0, 0, 0, 0.3) 92%, transparent 100%),
        linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.6) 92%, transparent 100%);
    mask-composite: intersect;
    opacity: 0;
    animation: photoReveal 1.8s ease-out 0.3s forwards;
    pointer-events: none;
    user-select: none;
}

@keyframes photoReveal {
    0% {
        opacity: 0;
        filter: brightness(0.4);
    }

    100% {
        opacity: 1;
        filter: brightness(1.1);
    }
}

.hero .hero-content {
    text-align: left;
    max-width: 55%;
    padding-left: max(4rem, 8vw);
    padding-right: 2rem;
}

.hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.9));
}

.hero .hero-subtitle {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.95), 0 0 40px rgba(0, 0, 0, 0.7);
}

.hero .hero-tagline {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6);
}

.hero .pentagram {
    margin: 0 0 1.5rem 0;
}

.hero .btn-group {
    justify-content: flex-start;
}

/* Ambient glow near photo */
.hero-glow {
    position: absolute;
    right: 10%;
    bottom: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.07) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: ambientPulse 5s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--pink-hot);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 10s infinite;
}

.particle:nth-child(1) {
    left: 8%;
    animation-delay: 0s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1.2s;
}

.particle:nth-child(3) {
    left: 35%;
    animation-delay: 2.4s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(4) {
    left: 50%;
    animation-delay: 0.8s;
}

.particle:nth-child(5) {
    left: 65%;
    animation-delay: 3.6s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(6) {
    left: 78%;
    animation-delay: 1.8s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(7) {
    left: 90%;
    animation-delay: 4.2s;
}

.particle:nth-child(8) {
    left: 45%;
    animation-delay: 2.8s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(9) {
    left: 12%;
    animation-delay: 3.2s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(10) {
    left: 72%;
    animation-delay: 0.4s;
}

.particle:nth-child(11) {
    left: 55%;
    animation-delay: 5s;
    width: 2px;
    height: 2px;
}

.particle:nth-child(12) {
    left: 30%;
    animation-delay: 4.8s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    8% {
        opacity: 0.5;
    }

    92% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ── Homepage Sections ── */
.home-section {
    padding: 6rem 2rem;
    background: var(--black);
}

.home-section-alt {
    background:
        radial-gradient(ellipse at center, rgba(255, 20, 147, 0.05) 0%, transparent 70%),
        var(--black-light);
}

.home-section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About block on homepage */
.home-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.home-about-photo {
    position: relative;
}

.home-about-photo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--pink-hot);
    z-index: -1;
}

.home-about-photo img {
    width: 100%;
    filter: grayscale(30%) contrast(1.1);
    transition: var(--transition);
}

.home-about-photo:hover img {
    filter: grayscale(0%) contrast(1.2);
}

.home-about-text {
    margin-top: 0;
}


/* ============================================
   CMS RESPONSIVE ADDITIONS
   ============================================ */

@media (max-width: 1024px) {
    .hero .hero-content {
        max-width: 520px;
        padding-left: 3rem;
    }

    .hero-photo {
        max-width: 58%;
        right: -3%;
        -webkit-mask-image:
            linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.2) 85%, transparent 95%),
            linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.5) 85%, transparent 97%);
        -webkit-mask-composite: source-in;
        mask-image:
            linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.2) 85%, transparent 95%),
            linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.5) 85%, transparent 97%);
        mask-composite: intersect;
    }

    .home-about {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .home-about-photo {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
    }

    .hero-photo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        right: auto;
        height: 55%;
        width: auto;
        max-width: 85%;
        object-fit: contain;
        object-position: center bottom;
        -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0.3) 80%, transparent 95%);
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0.3) 80%, transparent 95%);
        -webkit-mask-composite: auto;
        mask-composite: add;
    }

    .hero .hero-content {
        text-align: center;
        padding: 2rem;
        padding-bottom: 58vh;
        max-width: 100%;
    }

    .hero .pentagram {
        margin: 0 auto 1.5rem;
    }

    .hero .btn-group {
        justify-content: center;
    }

    .hero-glow {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10%;
    }

    .deco-line-left,
    .deco-line-right {
        display: none;
    }

    .page-hero--split .page-hero-content {
        gap: 2rem;
    }

    .page-hero--split .page-hero-meta {
        justify-content: center;
    }

    .page-hero--split .btn-group {
        justify-content: center;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .blog-meta {
        gap: 1rem;
    }

    .drop-cap::first-letter {
        font-size: 3rem;
    }
}


@media (max-width: 480px) {
    .hero .hero-content {
        padding-bottom: 53vh;
    }

    .hero-photo {
        height: 48%;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .gallery-images {
        grid-template-columns: 1fr;
    }
}

/* ── Homepage extras ── */
.featured-cta {
    text-align: center;
    margin-top: 3rem;
}


/* ============================================
   LINK-IN-BIO PAGE (from design)
   ============================================ */

.links-page {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--black);
}

.links-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.links-avatar {
    width: 256px;
    height: 256px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 3px solid var(--pink-hot);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
    overflow: hidden;
}

.links-name {
    font-family: var(--font-display);
    font-size: 2rem;
    background: linear-gradient(135deg, var(--pink-hot), var(--pink-pale));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.links-bio {
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--black-light);
    border: 1px solid var(--black-medium);
    transition: var(--transition);
    text-align: left;
    text-decoration: none;
    color: var(--white);
}

.link-item:hover {
    border-color: var(--pink-hot);
    background: var(--black-medium);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.link-icon {
    width: 45px;
    height: 45px;
    background: var(--black);
    border: 1px solid var(--pink-hot);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--pink-hot);
    flex-shrink: 0;
}

.link-text {
    flex: 1;
}

.link-text h3 {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.link-text p {
    font-size: 0.8rem;
    color: var(--grey);
}

.link-arrow {
    color: var(--pink-hot);
    font-size: 1.2rem;
}

.links-section-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--pink-hot);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 2.5rem 0 1rem;
    text-align: left;
}

.links-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--black-medium);
}

.links-footer p {
    color: var(--grey);
    font-size: 0.85rem;
}

.links-footer a {
    color: var(--pink-hot);
}

/* Featured link */
.link-item.featured {
    border-color: var(--pink-hot);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, var(--black-light) 100%);
}

.link-item.featured .link-icon {
    background: var(--pink-hot);
    color: var(--black);
}

.link-badge {
    background: var(--pink-hot);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}