:root {
    /* Colors */
    --void-black: #000000;
    --spine-ice: #C8D8FF;
    --pastel-pink: #FF85A1;
    --sacred-sage: #A8C5A0;
    --ghost-petal: var(--spine-ice);
    --freeze-white: var(--spine-ice);
    --fractal-gold: var(--pastel-pink);
    --sovereign-crimson: var(--pastel-pink);
    --mania-pink: var(--pastel-pink);
    --collapse-indigo: var(--spine-ice);
    --panic-chartreuse: var(--spine-ice);
    --sovereign-violet: var(--spine-ice);
    --still-teal: var(--sacred-sage);
    --dissociation-blue: var(--spine-ice);
    --devotion-lilac: var(--spine-ice);
    --rotting-iris: var(--spine-ice);
    --wound-rose: var(--pastel-pink);
    --crown-gold: var(--pastel-pink);
    --mad-yellow: var(--pastel-pink);
    --wrong-orange: var(--pastel-pink);
    --broken-violet: var(--pastel-pink);

    /* Typography */
    --font-heading: 'Cinzel Decorative', cursive;
    --font-body: 'IM Fell English', serif;
    --font-mono: 'Space Mono', monospace;

    /* Borders & UI */
    --border-glow: 0 0 10px var(--spine-ice);
    --border-standard: 1px solid var(--spine-ice);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--void-black);
    color: var(--ghost-petal);
    font-family: var(--font-body);
    font-style: italic;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .logo, .nav-item {
    font-family: var(--font-heading);
    font-style: normal;
    text-transform: uppercase;
}

a {
    color: var(--spine-ice);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: var(--border-glow);
}

.mono {
    font-family: var(--font-mono);
    font-style: normal;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    border-bottom: 0.5px solid rgba(200, 216, 255, 0.2);
}

    /* Spine Ice Rules */
.spine-ice-border {
    border: var(--border-standard);
    box-shadow: var(--border-glow);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--spine-ice);
    text-shadow: var(--border-glow);
}

.character-scroll::-webkit-scrollbar {
    height: 4px;
}
.character-scroll::-webkit-scrollbar-thumb {
    background: var(--spine-ice);
    border-radius: 2px;
}

.char-card {
    transition: transform 0.3s ease;
    cursor: pointer;
    background: rgba(200, 216, 255, 0.05);
}
.char-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--border-glow);
}

.narrative-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    border: var(--border-standard);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.shop-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.social-item {
    aspect-ratio: 1;
    background: rgba(200, 216, 255, 0.1);
    border: var(--border-standard);
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Shop Components */
.shop-ribbon {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--void-black);
    border-bottom: 2px solid var(--mad-yellow);
    padding: 10px 0;
    overflow: hidden;
    height: 60px;
}

.ribbon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playing-cards-container {
    display: flex;
    gap: 5px;
}

.mini-card {
    width: 25px;
    height: 35px;
    background: var(--ghost-petal);
    border: 1px solid var(--mad-yellow);
    border-radius: 2px;
    opacity: 0;
    transform: translateY(-50px);
}

.shop-tabs-container {
    position: sticky;
    top: 60px;
    z-index: 999;
    background: var(--void-black);
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(200, 216, 255, 0.2);
}

.shop-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.shop-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 8px 16px;
    border: 1px solid var(--mania-pink);
    color: var(--ghost-petal);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    white-space: nowrap;
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--mad-yellow);
    color: var(--void-black);
    border-color: var(--mad-yellow);
}

/* Shop Hero */
.shop-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 64, 176, 0.1) 0%, rgba(45, 31, 168, 0.1) 100%);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.product-card {
    position: relative;
    border: 1px solid var(--spine-ice);
    background: rgba(0,0,0,0.5);
    padding: 15px;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 0 20px var(--spine-ice);
    transform: translateY(-5px);
}

.product-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    background: #111;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid rgba(200, 216, 255, 0.1);
}

.product-price {
    color: var(--fractal-gold);
    font-family: var(--font-mono);
    font-weight: bold;
}

.countdown {
    color: var(--wrong-orange);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-top: 5px;
}

.add-to-cart-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    opacity: 0;
    transition: 0.3s;
}

.product-card:hover .add-to-cart-overlay {
    opacity: 1;
}

/* Weekly Drop Card */
.weekly-drop-card {
    grid-column: span 1;
    background: var(--void-black);
    border: 2px solid var(--broken-violet);
    animation: dropGlow 3s infinite alternate;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
    min-height: 400px;
}

@keyframes dropGlow {
    from { box-shadow: 0 0 10px var(--broken-violet); }
    to { box-shadow: 0 0 20px var(--mania-pink); }
}

.weekly-drop-card h3 {
    color: var(--broken-violet);
    margin-bottom: 15px;
}

.email-signup input {
    width: 100%;
    padding: 10px;
    background: #111;
    border: 1px solid var(--spine-ice);
    color: var(--ghost-petal);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

/* Pricing Breakdown */
.accordion-item {
    border-bottom: 1px solid rgba(200, 216, 255, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--spine-ice);
    text-align: left;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}

.price-list {
    list-style: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* Mystery Boxes */
.mystery-reveal {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
}

.mystery-box-full {
    position: relative;
    width: 100%;
    height: 400px;
    border-width: 2px;
    border-style: solid;
    overflow: hidden;
    cursor: pointer;
}

.box-teaser, .box-reveal {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.box-reveal {
    background: rgba(0,0,0,0.9);
    transform: translateY(100%);
}

.mystery-box-full:hover .box-reveal {
    transform: translateY(0);
}

.mystery-box-full:hover .box-teaser {
    transform: translateY(-100%);
}

/* Shopping Cart */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: var(--void-black);
    border: 1px solid var(--spine-ice);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    display: none;
    z-index: 1001;
    padding: 20px;
}

.cart-dropdown.active {
    display: block;
}

.cart-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 0.5px solid rgba(200, 216, 255, 0.1);
}

.checkout-btn {
    width: 100%;
    background: var(--sovereign-crimson);
    color: var(--ghost-petal);
    border: none;
    padding: 12px;
    font-family: var(--font-heading);
    cursor: pointer;
    margin-top: 15px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--spine-ice);
    background: transparent;
    color: var(--spine-ice);
    font-family: var(--font-mono);
    cursor: pointer;
    transition: 0.3s;
}

.page-btn.active {
    background: var(--spine-ice);
    color: var(--void-black);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
    .shop-hero { height: 40vh; }
    .mystery-box-full { height: 300px; }
}

img {
    max-width: 100%;
    border: var(--border-standard);
    box-shadow: var(--border-glow);
}

    /* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: var(--border-standard);
    backdrop-filter: blur(10px);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.2rem;
    color: var(--spine-ice);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--ghost-petal);
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--spine-ice);
    transition: width 0.3s ease;
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--spine-ice);
    text-shadow: var(--border-glow);
}

@media (max-width: 992px) {
    nav ul {
        gap: 10px;
    }
    nav .logo {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    border: var(--border-standard);
    background: transparent;
    color: var(--spine-ice);
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: var(--spine-ice);
    color: var(--void-black);
    box-shadow: var(--border-glow);
}

/* Footer */
footer {
    padding: 60px 40px;
    border-top: var(--border-standard);
    text-align: center;
}

/* About Page Specifics */
.about-hero-container {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at bottom, rgba(184, 204, 170, 0.15) 0%, transparent 70%);
}

.frosted-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 216, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.shattered-mirror {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.4;
    background: url('https://images.unsplash.com/photo-1594142436817-d2547b7e366b?q=80&w=2000&auto=format&fit=crop') center/cover;
    mask-image: radial-gradient(circle, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
}

.act-block {
    padding: 100px 40px;
    border-bottom: 1px solid rgba(200, 216, 255, 0.1);
    position: relative;
}

.act-1 { background: linear-gradient(to bottom, transparent, rgba(255, 45, 85, 0.05)); }
.act-2 { background: linear-gradient(to bottom, transparent, rgba(184, 204, 170, 0.05)); }
.act-3 { background: linear-gradient(to bottom, transparent, rgba(200, 216, 255, 0.05)); }

.suit-divider {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.polaroid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.polaroid {
    background: #fff;
    padding: 10px 10px 40px 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    width: 200px;
    transform: rotate(var(--rotation, -2deg));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.polaroid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: none;
    box-shadow: none;
    filter: grayscale(0.2) contrast(1.1);
}

.polaroid p {
    color: #333;
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
    font-family: var(--font-body);
}

/* Accordion */
.accordion-item {
    border: 0.5px solid rgba(200, 216, 255, 0.2);
    margin-bottom: 5px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px;
}

/* Flip Cards */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Manifesto */
.manifesto-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.torn-paper {
    position: relative;
    background: var(--void-black);
    padding: 60px;
    border: 1px solid rgba(200, 216, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.torn-paper::before, .torn-paper::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeat-x bottom left;
    background-size: 40px 20px;
    z-index: 2;
}

.torn-paper::before {
    top: -10px;
    background-image: radial-gradient(circle at 20px -10px, transparent 24px, var(--void-black) 25px);
}

.torn-paper::after {
    bottom: -10px;
    background-image: radial-gradient(circle at 20px 30px, transparent 24px, var(--void-black) 25px);
}

.typing-text {
    border-right: 2px solid var(--spine-ice);
    white-space: pre-wrap;
    overflow: hidden;
}

/* Sticky Note */
.sticky-note {
    background: rgba(200, 216, 255, 0.06);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(200, 216, 255, 0.2);
    padding: 30px;
    transform: rotate(2deg);
    max-width: 400px;
    margin: 40px auto;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

/* Horizontal Strip */
.horizontal-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.support-item {
    padding: 10px 20px;
    border: 1px solid rgba(200, 216, 255, 0.3);
    transition: 0.3s;
}

.support-item:hover {
    border-color: var(--spine-ice);
    background: rgba(200, 216, 255, 0.05);
}

/* Polaroid Gallery Grid */
.polaroid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    padding: 40px;
}

.gallery-polaroid {
    perspective: 1000px;
    width: 220px;
    height: 280px;
    margin: 0 auto;
}

.gallery-polaroid-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transform: rotate(var(--rot));
}

.gallery-polaroid.flipped .gallery-polaroid-inner {
    transform: rotateY(180deg) rotate(var(--rot));
}

.gallery-front, .gallery-back {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 60px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.gallery-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    padding: 10px;
}

.gallery-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    box-shadow: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* View Transitions */
::view-transition-group(*),
::view-transition-old(*),
::view-transition-new(*) {
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* NSFW THEME OVERRIDES (Crimson, Pastel Pink & Spine Ice) */
.nsfw-page {
    /* Define explicit colors for NSFW since they were mapped to spine-ice/pastel-pink in :root */
    --sovereign-crimson: #FF2D55;
    --pastel-pink: #FFC0CB;
    --spine-ice: #C8D8FF;
    --sacred-sage: #A8C5A0;

    --fractal-gold: var(--sovereign-crimson);
    --mania-pink: var(--pastel-pink);
    --sovereign-violet: var(--sovereign-crimson);
}

.nsfw-page .logo span {
    color: var(--sovereign-crimson) !important;
}

.nsfw-page .btn {
    border-color: var(--sovereign-crimson);
    color: var(--sovereign-crimson);
    box-shadow: 0 0 10px var(--spine-ice);
}

.nsfw-page .btn:hover {
    background: var(--sovereign-crimson);
    color: white;
    box-shadow: 0 0 15px var(--sovereign-crimson), 0 0 10px var(--spine-ice);
}

.nsfw-page .section-title {
    color: var(--sovereign-crimson);
    text-shadow: 0 0 10px var(--sovereign-crimson), 0 0 5px var(--spine-ice);
}

.nsfw-page footer p {
    color: var(--spine-ice) !important;
}

.nsfw-page .shop-tabs .tab-btn.active {
    background: var(--sovereign-crimson);
    color: white;
    border-color: var(--spine-ice);
}

.nsfw-page .shop-tabs .tab-btn {
    border-color: var(--pastel-pink);
    color: var(--pastel-pink);
}

.nsfw-page .shop-ribbon {
    background: linear-gradient(90deg, var(--sovereign-crimson), var(--pastel-pink), var(--spine-ice));
}

/* SFW SAGE GREEN ACCENTS */
.section-title {
    color: var(--spine-ice);
    text-shadow: 0 0 10px rgba(200, 216, 255, 0.4), 0 0 20px rgba(168, 197, 160, 0.2);
}

.btn {
    transition: 0.3s;
}

.btn:hover {
    background: var(--spine-ice);
    color: var(--void-black);
    box-shadow: 0 0 10px var(--spine-ice), 0 0 20px rgba(168, 197, 160, 0.3);
}

.highlight-card {
    border-color: var(--spine-ice);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    border-color: var(--sacred-sage);
    box-shadow: 0 0 15px rgba(168, 197, 160, 0.3);
}

.support-item:hover {
    border-color: var(--sacred-sage);
    background: rgba(168, 197, 160, 0.05);
    color: var(--sacred-sage);
}

.accordion-header {
    color: var(--spine-ice);
}

.accordion-item.active .accordion-header {
    color: var(--sacred-sage);
}

.accordion-item.active {
    border-color: var(--sacred-sage);
}

.flip-card-front[style*="spine-ice"],
.flip-card-back[style*="spine-ice"] {
    box-shadow: 0 0 10px rgba(168, 197, 160, 0.15);
}

/* Sage green nav underline on SFW pages */
body:not(.nsfw-page) nav ul li a::after {
    background: var(--sacred-sage);
}

body:not(.nsfw-page) nav ul li a:hover,
body:not(.nsfw-page) nav ul li a.active {
    color: var(--sacred-sage);
    text-shadow: 0 0 8px rgba(168, 197, 160, 0.5);
}

body:not(.nsfw-page) .section-title {
    color: var(--spine-ice);
}

body:not(.nsfw-page) .product-card:hover {
    box-shadow: 0 0 15px rgba(168, 197, 160, 0.3), 0 0 5px var(--spine-ice);
}

body:not(.nsfw-page) .shop-ribbon {
    border-bottom-color: var(--sacred-sage);
}

body:not(.nsfw-page) .tab-btn.active {
    background: var(--sacred-sage);
    color: var(--void-black);
    border-color: var(--sacred-sage);
}

body:not(.nsfw-page) .tab-btn {
    border-color: rgba(168, 197, 160, 0.4);
    color: var(--ghost-petal);
}

body:not(.nsfw-page) footer {
    border-top-color: var(--sacred-sage);
}
