/* Fonts */
@font-face {
    font-family: 'Arya';
    src: url('/resources/Arya-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arya';
    src: url('/resources/Arya-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --full-height: 100vh;
}

@supports (height: 100dvh) {
    :root {
        --full-height: 100dvh;
    }
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    min-height: var(--full-height);
}

body {
    font-family: 'Arya', Arial, sans-serif;
    min-height: var(--full-height);
}

/* Loading Screen */
#page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    z-index: 12000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
}

#page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

.loader-grid {
    display: grid;
    grid-template-columns: repeat(2, 20px);
    grid-template-rows: repeat(2, 20px);
    gap: 1rem;
}

.loader-square {
    width: 20px;
    height: 20px;
    border-radius: .2;
    background: #fff;
    opacity: 0;
    transform: scale(0.75);
    animation: loaderPulse 1.6s infinite ease-in-out;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.loader-square:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    animation-delay: 0s;
}

.loader-square:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
    animation-delay: 0.2s;
}

.loader-square:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    animation-delay: 0.4s;
}

.loader-square:nth-child(4) {
    grid-column: 1;
    grid-row: 1;
    animation-delay: 0.6s;
}

.loader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.loader-title {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.loader-sub {
    color: #cfcfcf;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

#loader-percent {
    color: #f28b37;
    font-weight: 700;
}

.loader-hint {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    font-size: 1.05rem;
    color: #f4f4f4;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
    pointer-events: auto;
    max-width: min(540px, 90vw);
    line-height: 1.55;
    text-align: center;
    animation: loaderHintAmplify 2.6s ease-in-out infinite;
}

.loader-hint a {
    color: #2cc142;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

@keyframes loaderHintAmplify {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.9);
        filter: blur(2px);
    }
    12% {
        opacity: 1;
        transform: translateX(-50%) scale(1.02);
        filter: blur(0px);
    }
    40% {
        opacity: 0.88;
        transform: translateX(-50%) scale(1.05);
        filter: blur(0px);
    }
    65% {
        opacity: 0.92;
        transform: translateX(-50%) scale(1.08);
        filter: blur(1px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(1.12);
        filter: blur(3px);
    }
}

@keyframes loaderPulse {
    0%, 15% {
        opacity: 0;
        transform: scale(0.75);
    }
    25%, 55% {
        opacity: 1;
        transform: scale(1);
    }
    70%, 100% {
        opacity: 0;
        transform: scale(0.75);
    }
}

/* Typography */
h1 {
    margin-top: 3rem;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: default;
}

p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    cursor: default;
}

/* ====================================================================== */
/* RAF SMOOTH SCROLL (enabled by JS via html.smooth-scroll-enabled) */
/* ====================================================================== */

#smooth-content {
    position: relative;
    min-height: var(--full-height);
}

#scroll-spacer {
    height: 0;
}

html.smooth-scroll-enabled #smooth-content {
    position: fixed;
    inset: 0;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    z-index: 1;
}

html.smooth-scroll-enabled #app-content {
    will-change: transform;
}

html.smooth-scroll-enabled #scroll-spacer {
    width: 100%;
    height: var(--full-height);
}

@media (prefers-reduced-motion: reduce) {
    html.smooth-scroll-enabled #smooth-content {
        position: relative;
        inset: auto;
        overflow: visible;
        transform: none;
        will-change: auto;
    }

    html.smooth-scroll-enabled #scroll-spacer {
        display: none;
    }
}

/* ====================================================================== */
/* MAIN APP NAVIGATION */
/* ====================================================================== */
.nav-container {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: slideDown 0.6s ease-out;
}

/* Podcast mini controls (sticky under nav) */
.podcast-mini {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(960px, calc(100% - 2rem));
    z-index: 9500;
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 1;
    display: flex;
    justify-content: center;
}

.podcast-mini.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
}

.podcast-mini-inner {
    background: rgba(0, 0, 0, 0.94);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
}

.podcast-mini-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 140px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    align-items: center;
    text-align: center;
}

.podcast-mini-title {
    font-weight: 700;
}

.podcast-mini-status {
    color: #f28b37;
    font-weight: 600;
    font-size: 0.85rem;
}

.podcast-mini-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 0;
}

.podcast-mini-btn {
    border: none;
    background: #1a1a1a;
    color: #fff;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-family: 'Arya', Arial, sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.podcast-mini-btn:hover {
    background: #222;
    transform: translateY(-1px);
}

.podcast-mini-btn:active {
    transform: translateY(0);
}

.podcast-mini-volume {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #121212;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    color: #fff;
}

.podcast-mini-slider {
    width: 120px;
    accent-color: #f28b37;
}

.podcast-mini-times {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #eaeaea;
    font-size: 0.9rem;
    min-width: 120px;
    justify-content: flex-end;
}

.podcast-mini .time-separator {
    color: #666;
}

@media (max-width: 768px) {
    .podcast-mini-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        border-radius: 1rem;
    }

    .podcast-mini-controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .podcast-mini-times {
        justify-content: center;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-toggle-container {
    position: relative;
    display: flex;
    gap: var(--nav-gap, 0.4rem);
    background: rgba(0, 0, 0, .9);
    padding: 0.12rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(8px);
}

.nav-toggle-container.nav-5-buttons {
    --nav-btn-width: 132px;
    --nav-gap: 1.5rem;
}

.nav-toggle-container .toggle-background {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    pointer-events: none;
}

.nav-toggle-container .toggle-slider {
    position: absolute;
    width: calc(20% - 0.4rem);
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 2rem;
    transition: transform 0.38s cubic-bezier(0.68, -0.55, 0.265, 1.55), width 0.38s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    will-change: transform;
    left: 0;
    top: 0;
}

.nav-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Arya', Arial, sans-serif;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.nav-btn.active {
    color: #000;
    transform: scale(1.02);
}

.nav-btn:hover:not(.active) {
    color: #f28b37;
}

.nav-logo {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

/* Submenu Styles */
.nav-btn.has-submenu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.submenu-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-btn.submenu-active .submenu-arrow {
    transform: rotate(-180deg);
}

.submenu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.95);
    border-radius: 1rem;
    padding: 0.5rem;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.submenu-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 300;
    font-family: 'Arya', Arial, sans-serif;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-align: left;
}

.submenu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f28b37;
}

.submenu-item.active {
    background: rgba(242, 139, 55, 0.2);
    color: #f28b37;
}

/* Page Container */
.page-container {
    padding-top: 6rem;
    transition: opacity 0.2s ease-in-out;
    min-height: calc(var(--full-height) - 6rem);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeIn 0.3s ease-in;
}

/* ====================================================================== */
/* HOME PAGE */
/* ====================================================================== */
body[data-page="home"] {
    background: #060709;
    color: #e8eef7;
}

body[data-page="home"] #smooth-content,
body[data-page="home"] #app-content {
    background:
        radial-gradient(circle at 15% 20%, rgba(242, 139, 55, 0.08), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(0, 150, 255, 0.08), transparent 40%),
        #060709;
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="home"] h3 {
    color: #f4f7fb;
}

body[data-page="home"] p {
    color: #cfd7e4;
}

.home-hero {
    position: relative;
    padding: 3.5rem 0 3rem;
    overflow: hidden;
}

.home-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: flex-start;
    isolation: isolate;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f6a452;
    width: fit-content;
}

.home-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 1.2rem 0 0.85rem;
    text-align: left;
}

.home-lede {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 720px;
    color: #d7e0ee;
    font-weight: 400;
    margin-top: 6rem;
    opacity: .75;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.5rem 0 1rem;
}

.pill-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.2rem;
    border-radius: .5rem;
    border: 1px solid #f6a452;
    background: linear-gradient(135deg, #f6a452, #f28b37);
    color: #0d1117;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(242, 139, 55, 0.125);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pill-link:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 38px rgba(242, 139, 55, 0.135);
}

.pill-link:active {
    transform: translateY(0);
}

.pill-link--ghost {
    background: transparent;
    color: #f6a452;
    border-color: rgba(246, 164, 82, 0.45);
    box-shadow: inset 0 0 0 1px rgba(246, 164, 82, 0.35);
}

.home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.home-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d7e0ee;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.home-hero__visual {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: .75rem;
    padding: 1.2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.home-hero__frame {
    overflow: hidden;
    border-radius: .5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-hero__frame img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.home-hero__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
    color: #f4f7fb;
    font-weight: 600;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.home-hero__stack {
    display: grid;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.home-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    color: #f4f7fb;
}

.home-section {
    margin: 2rem auto 1rem;
}

.home-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.home-section__lede {
    max-width: 640px;
    color: #cfd7e4;
    font-size: 1.05rem;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.home-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: .75rem;
    padding: 1.25rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 0.45rem;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.22s ease;
}

.home-card:hover {
    transform: scale(1.05);
    border-color: rgba(242, 139, 55, 0.38);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.home-card__badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    background: rgba(242, 139, 55, 0.18);
    color: #f6a452;
    font-weight: 700;
    font-size: 0.9rem;
    width: fit-content;
}

.home-card__footer {
    font-size: 0.85rem;
    color: #9fb0ca;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.home-featured {
    position: relative;
    overflow: hidden;
    border-radius: .75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.home-featured img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    will-change: transform;
    transform: translateZ(0);
}

.home-featured figcaption {
    padding: 0.85rem 1rem 1rem;
    color: #d7e0ee;
    font-weight: 600;
}

.home-note {
    text-align: center;
    margin: 2rem 0 1rem;
    color: #9fb0ca;
    font-size: 0.85rem;
}

.home-card h3 {
    font-size: 1.5rem; /* adjust as needed */
}

.home-card p {
    font-size: 1rem; /* adjust as needed */
}

@media (max-width: 960px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__frame img {
        height: 260px;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding-top: 3rem;
    }

    .home-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .pill-link,
    .pill-link--ghost {
        width: 100%;
        justify-content: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================================================== */
/* STYLED TEXT EFFECTS */
/* ====================================================================== */

/* Period - Bold and pulsing */
.word-period {
    font-weight: 700;
    font-size: 1.25em;
    color: #000000;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Combined - Merging effect with gradient */
.word-combined {
    font-weight: 700;
    background: linear-gradient(90deg, #000000, #9c9c9c, #000000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Slow and stagnant - Heavy, dragging effect */
.word-slow-stagnant {
    font-weight: 700;
    color: #636e72;
    letter-spacing: 0.35em;
    opacity: 0.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Shifted - Sliding animation */
.word-shifted {
    font-weight: 700;
    color: #000000;
    animation: shift 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes shift {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* Focus - Zoomed in with spotlight effect */
.word-focus {
    font-weight: 700;
    font-size: 1.2em;
    color: #000000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    animation: focusPulse 2.5s ease-in-out infinite;
}

/* Innovations - Fresh, sparkling effect */
.word-innovations {
    font-weight: 700;
    background: linear-gradient(135deg, #0086ce, #61c7c7, #006ece);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sparkle 2s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(0, 206, 201, 0.3);
}

@keyframes sparkle {
    0%, 100% { 
        background-position: 0% center;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% center;
        filter: brightness(1.3);
    }
}

/* Dominance - Aggressive shake and bold */
.word-dominance {
    font-weight: 900;
    font-size: 1.15em;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: dominance 1.5s ease-in-out infinite;
    display: inline-block;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

@keyframes dominance {
    0%, 100% { transform: rotate(0deg) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-1deg) scale(1.02); }
    20%, 40%, 60%, 80% { transform: rotate(1deg) scale(1.02); }
}

/* Day-to-day - Repetitive bounce */
.word-day-to-day {
    font-weight: 700;
    color: #74b9ff;
    animation: repetitive 1.2s ease-in-out infinite;
    display: inline-block;
}

@keyframes repetitive {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-2px); }
    75% { transform: translateY(-2px); }
}

/* ====================================================================== */
/* PARAGRAPH 2 STYLED TEXT EFFECTS */
/* ====================================================================== */



/* Ruthlessly - Sharp, aggressive red */
.word-ruthlessly {
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: ruthless 2s ease-in-out infinite;
    display: inline-block;
}

/* Expanding2 - Growing outward */
.word-expanding2 {
    font-weight: 700;
    color: #000000;
    animation: expandOut 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes expandOut {
    0%, 100% { transform: scale(1); letter-spacing: 0; }
    50% { transform: scale(1.015); letter-spacing: 0.02em; }
}

/* Industrial grade extraction - Mechanical, cold */
.word-industrial {
    font-weight: 700;
    color: #2d3436;
    background: linear-gradient(90deg, #636e72, #2d3436, #636e72);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: industrial 2s linear infinite;
    letter-spacing: 0.05em;
}

@keyframes industrial {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Triangular trade - Triangle shape effect */
.word-triangular {
    font-weight: 700;
    color: #000000;
    animation: triangulate 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes triangulate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(2deg) scale(1.02); }
    66% { transform: rotate(-2deg) scale(1.02); }
}

/* ARMED - Military, bold, dangerous */
.word-armed {
    font-weight: 900;
    color: #000000;
    font-size: 1.1em;
    animation: armed 1s ease-in-out infinite;
    display: inline-block;
}


/* Rough - Jagged, unstable */
.word-rough {
    font-weight: 700;
    color: #636e72;
    animation: rough .5s ease-in-out infinite;
    display: inline-block;
}

@keyframes rough {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(-.5px) rotate(-.5deg); }
    40% { transform: translateY(.5px) rotate(.5deg); }
    60% { transform: translateY(-.5px) rotate(-.5deg); }
    80% { transform: translateY(.5px) rotate(.5deg); }
}

/* Geographic knowledge - Map-like spreading */
.word-geographic {
    font-weight: 700;
    background: linear-gradient(90deg, #000000, #626262, #000000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: geographic 3s ease infinite;
}

@keyframes geographic {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Mapped - Drawing/sketching effect */
.word-mapped {
    font-weight: 700;
    color: #000000;
    animation: drawing 2s ease-in-out infinite;
}

/* Worth stealing - Sneaky, italic emphasis */
.word-stealing {
    font-weight: 700;
    font-style: italic;
    color: #000000;
    animation: sneaky 2s ease-in-out infinite;
    display: inline-block;
}

/* Changed and recreated - Transformation effect */
.word-changed {
    font-weight: 700;
    background: linear-gradient(90deg, #000000, #000000, #000000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: transform 2.5s ease infinite;
}

@keyframes transform {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Diseases - Spreading, ominous */
.word-diseases {
    font-weight: 700;
    color: #e17055;
    animation: spread 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes spread {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 0 rgba(225, 112, 85, 0);
    }
    50% { 
        transform: scale(1.08);
        text-shadow: 0 0 10px rgba(225, 112, 85, 0.5);
    }
}

/* Wiping out - Erasing effect */
.word-wiping {
    font-weight: 700;
    color: #ff0000;
    animation: wipe 2.5s ease-in-out infinite;
    letter-spacing: 10px;
}

/* Grew fast - Rapid upward growth */
.word-grew {
    font-weight: 700;
    color: #000000;
    animation: growth 1.8s ease-in-out infinite;
    display: inline-block;
}

/* POWER and DOMINATION - Maximum aggression */
.word-power-domination {
    font-weight: 900;
    font-size: 1.2em;
    color: #d63031;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    animation: powerDomination 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes powerDomination {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        color: #d63031;
    }
    10%, 30%, 50%, 70%, 90% { 
        transform: scale(1.0125) rotate(-.5deg);
        color: #c0392b;
    }
    20%, 40%, 60%, 80% { 
        transform: scale(1.0125) rotate(.5deg);
        color: #ff4757;
    }
}

/* ====================================================================== */
/* PARAGRAPH 3 - RELIGION STYLED TEXT EFFECTS */
/* ====================================================================== */

/* Fading away slowly */
.word-fading {
    font-weight: 700;
    color: #636e72;
    animation: fadeAway 3s ease-in-out infinite;
}

@keyframes fadeAway {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Monopoly on truth */
.word-monopoly {
    font-weight: 700;
    color: #000000;
    font-size: 1.1em;
    letter-spacing: 0.05em;
}

/* Savage */
.word-savage {
    font-weight: 900;
    color: #2d3436;
    animation: savage 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes savage {
    0%, 100% { transform: skewX(0deg); }
    50% { transform: skewX(-2deg); }
}

/* KILLED */
.word-killed {
    font-weight: 900;
    color: #000000;
    font-size: 1.15em;
    animation: killed 2s ease-in-out infinite;
    display: inline-block;
}

/* Picking sides */
.word-picking-sides {
    font-weight: 700;
    color: #636e72;
    font-style: italic;
}

/* Scientific Revolution */
.word-scientific {
    font-weight: 700;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #6c5ce7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scientific 3s ease infinite;
}

@keyframes scientific {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Stepping in */
.word-stepping-in {
    font-weight: 700;
    color: #6c5ce7;
    animation: stepIn 1.5s ease-in-out infinite;
}

@keyframes stepIn {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Evidence based thinking */
.word-evidence {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.05em;
    animation: evidence 2s ease-in-out infinite;
}

@keyframes evidence {
    0%, 100% { text-shadow: 0 0 0 rgba(0, 0, 0, 0); }
    50% { text-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
}

/* Proved */
.word-proved {
    font-weight: 700;
    color: #000000;
    font-size: 1.05em;
}

/* Divine intervention */
.word-divine {
    font-weight: 700;
    color: #636e72;
    font-style: italic;
}

/* Encyclopedia */
.word-encyclopedia {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* Lost the argument */
.word-lost-argument {
    font-weight: 700;
    color: #2d3436;
    animation: lostArgument 2s ease-in-out infinite;
}

@keyframes lostArgument {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Faith alone */
.word-faith {
    font-weight: 700;
    color: #636e72;
    font-style: italic;
}

/* ====================================================================== */
/* PARAGRAPH 4 - TOOLS & TECHNOLOGY STYLED TEXT EFFECTS */
/* ====================================================================== */

/* EVERYTHING */
.word-everything {
    font-weight: 900;
    color: #000000;
    font-size: 1.2em;
    text-transform: uppercase;
    animation: everything 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes everything {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(2deg); }
}

/* Democratized */
.word-democratized {
    font-weight: 700;
    color: #000000;
    animation: democratize 2s ease-in-out infinite;
    display: inline-block;
}

/* Spread faster */
.word-spread {
    font-weight: 700;
    color: #000000;
    font-variant: small-caps;
    letter-spacing: 0.05em;
    word-spacing: 0.8em;
}

/* Suppress */
.word-suppress {
    font-weight: 700;
    color: #2d3436;
    animation: suppress 2s ease-in-out infinite;
}

@keyframes suppress {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.95); }
}

/* Radicalism */
.word-radicalism {
    font-weight: 700;
    color: #000000;
    font-style: italic;
    animation: radical 1.8s ease-in-out infinite;
    display: inline-block;
}

@keyframes radical {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-3deg); }
}

/* Suicide ocean voyages */
.word-suicide {
    font-weight: 700;
    color: #636e72;
    text-decoration: line-through;
}

/* Calculated risks */
.word-calculated {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* Telescope */
.word-telescope {
    font-weight: 700;
    color: #000000;
    animation: telescope 2.5s ease-in-out infinite;
}

/* Revealing */
.word-revealing {
    font-weight: 700;
    color: #000000;
    animation: reveal 2s ease-in-out infinite;
}

@keyframes reveal {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Steam engines */
.word-steam {
    font-weight: 700;
    color: #2d3436;
    letter-spacing: 0.03em;
}

/* Replacing */
.word-replacing {
    font-weight: 700;
    color: #636e72;
    animation: replace 2s ease-in-out infinite;
}

@keyframes replace {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Mechanical power */
.word-mechanical {
    font-weight: 700;
    background: linear-gradient(90deg, #2d3436, #636e72, #2d3436);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: mechanical 2s linear infinite;
}

@keyframes mechanical {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Methodological thinking */
.word-methodological {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.05em;
}

/* Guessing */
.word-guessing {
    font-weight: 700;
    color: #636e72;
    text-decoration: line-through;
    opacity: 0.6;
}

/* Observing, hypothesizing */
.word-observing {
    font-weight: 700;
    color: #000000;
    animation: observe 3s ease-in-out infinite;
}

/* Banks at every corner */
.word-banks {
    font-weight: 700;
    color: #2d3436;
}

/* Financial systems */
.word-financial {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* ====================================================================== */
/* PARAGRAPH 5 - BUSINESSES STYLED TEXT EFFECTS */
/* ====================================================================== */

/* EXPLOSION */
.word-explosion {
    font-weight: 900;
    color: #000000;
    font-size: 1.15em;
    animation: explode 13.5s ease-in-out infinite;
    display: inline-block;
    position: relative;
}

@keyframes explode {
    0% { transform: scale(1); }
    1.85% { transform: scale(1.05); }
    3.7%, 5.55% { transform: scale(1); }
    7.4% { transform: scale(1.05); }
    9.25%, 11.1% { transform: scale(1); }
    12.95% { transform: scale(1.05); }
    14.8%, 16.65% { transform: scale(1); }
    18.5% { transform: scale(1.05); }
    20.35%, 22.2% { transform: scale(1); }
    24.05% { transform: scale(1.05); }
    25.9% { transform: scale(1); }
    27.75% { transform: scale(1.5); }
    29.6%, 100% { transform: scale(1); }
}

/* Problems */
.word-problems {
    font-weight: 700;
    color: #636e72;
}

/* Solutions */
.word-solutions {
    font-weight: 700;
    color: #000000;
}

/* Leads to another */
.word-leads {
    font-weight: 700;
    color: #0984e3;
    animation: chain 2s ease-in-out infinite;
}

@keyframes chain {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Scattered records */
.word-scattered {
    font-weight: 700;
    color: #636e72;
    animation: scatter 2s ease-in-out infinite;
    display: inline-block;
}

/* Inventory tracking systems */
.word-inventory {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.02em;
}

/* Centralized bookkeeping */
.word-centralized {
    font-weight: 700;
    color: #000000;
    animation: centralize 2.5s ease-in-out infinite;
}

/* Standardized units */
.word-standardized {
    font-weight: 700;
    color: #2d3436;
    letter-spacing: 0.03em;
}

/* Obsessed */
.word-obsessed {
    font-weight: 700;
    color: #000000;
    font-style: italic;
    animation: obsess 1.8s ease-in-out infinite;
}

@keyframes obsess {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Born */
.word-born {
    font-weight: 700;
    color: #000000;
    animation: birth 2s ease-in-out infinite;
}

@keyframes birth {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Supply chains */
.word-supply-chains {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.02em;
}

/* Systems to keep track */
.word-systems {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* Same fundamental problems */
.word-same-problems {
    font-weight: 700;
    color: #636e72;
}

/* Track, manage, optimize */
.word-track {
    font-weight: 700;
    color: #000000;
}

/* Complex networks */
.word-complex {
    font-weight: 700;
    color: #2d3436;
    animation: complex 2.5s ease-in-out infinite;
}

/* Cloud infrastructure */
.word-cloud {
    font-weight: 700;
    background: linear-gradient(90deg, #0984e3, #74b9ff, #0984e3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cloud 3s ease-in-out infinite;
}

@keyframes cloud {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Handwritten ledgers */
.word-handwritten {
    font-weight: 700;
    color: #636e72;
    font-style: italic;
}

/* Boom */
.word-boom {
    font-weight: 900;
    color: #000000;
    animation: boom 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes boom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Cycle repeated */
.word-cycle {
    font-weight: 700;
    color: #000000;
    animation: cycle 2s ease-in-out infinite;
}

@keyframes cycle {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(360deg); }
}

/* ====================================================================== */
/* PARAGRAPH 6 - OATH OF HORATII STYLED TEXT EFFECTS */
/* ====================================================================== */

/* "Oath of the Horatii" */
.word-oath {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.02em;
    font-style: italic;
}

/* Dominate */
.word-dominate {
    font-weight: 900;
    color: #000000;
    animation: dominate 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes dominate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Beat them over the head */
.word-beat {
    font-weight: 700;
    color: #2d3436;
    animation: beat 1.2s ease-in-out infinite;
}

@keyframes beat {
    0%, 100% { transform: translateY(0); }
    25%, 75% { transform: translateY(-2px); }
}

/* Sacrifice everything */
.word-sacrifice {
    font-weight: 700;
    color: #636e72;
    animation: sacrifice 2.5s ease-in-out infinite;
}

@keyframes sacrifice {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Geometric */
.word-geometric {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.05em;
}

/* Three swords */
.word-three-swords {
    font-weight: 700;
    color: #2d3436;
    animation: swords 2s ease-in-out infinite;
}

@keyframes swords {
    0%, 100% { letter-spacing: 0; }
    50% { letter-spacing: 0.02em; }
}

/* Death sentences */
.word-death {
    font-weight: 700;
    color: #000000;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* Weep */
.word-weep {
    font-weight: 700;
    color: #636e72;
    font-style: italic;
    animation: weep 2.5s ease-in-out infinite;
}

@keyframes weep {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
}

/* Civic duty */
.word-civic-duty {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* Reason */
.word-reason {
    font-weight: 700;
    color: #000000;
}

/* Emotion */
.word-emotion {
    font-weight: 700;
    color: #636e72;
    font-style: italic;
}

/* Neoclassical art */
.word-neoclassical {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* Clear contours */
.word-clear {
    font-weight: 700;
    color: #000000;
}

/* Perfect spacing */
.word-perfect {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.05em;
}

/* ====================================================================== */
/* PARAGRAPH 7 - DEATH OF MARAT STYLED TEXT EFFECTS */
/* ====================================================================== */

/* "The Death of Marat" */
.word-death-marat {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.02em;
    font-style: italic;
}

/* Color choices */
.word-color-choices {
    font-weight: 700;
    background: linear-gradient(90deg, #000000, #4a4a4a, #000000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: colorShift 3s ease infinite;
}

@keyframes colorShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Straight lines */
.word-straight {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.05em;
}

/* Simplicity */
.word-simplicity {
    font-weight: 400;
    color: #636e72;
}

/* Smaller scale */
.word-smaller {
    font-weight: 700;
    color: #636e72;
    font-size: 0.9em;
    animation: shrink 2s ease-in-out infinite;
}

@keyframes shrink {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* Murdered */
.word-murdered {
    font-weight: 700;
    color: #000000;
    animation: murder 2s ease-in-out infinite;
}

@keyframes murder {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Right after */
.word-right-after {
    font-weight: 700;
    color: #000000;
    animation: immediate 1.5s ease-in-out infinite;
}

/* Tilted */
.word-tilted {
    font-weight: 700;
    color: #000000;
    animation: tilt 2s ease-in-out infinite;
    display: inline-block;
}

/* ====================================================================== */
/* MACHIAVELLI PAGE STYLED TEXT EFFECTS */
/* ====================================================================== */

/* Ruthless but real */
.word-ruthless {
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: ruthless 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes ruthless {
    0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(0, 0, 0, 0); }
    50% { transform: scale(1.03); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
}

/* Dilemma */
.word-dilemma {
    font-weight: 700;
    color: #000000;
    font-style: italic;
}

/* Steamrolled and crushed */
.word-steamrolled {
    font-weight: 700;
    color: #636e72;
    animation: crush 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes crush {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.9); }
}

/* Doing whatever is necessary */
.word-necessary {
    font-weight: 700;
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #f39c12;
    text-decoration-thickness: 2px;
}

/* Fear and not affection */
.word-fear {
    font-weight: 900;
    color: #2d3436;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: fearPulse 2.5s ease-in-out infinite;
}

@keyframes fearPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; text-shadow: 0 0 8px rgba(0, 0, 0, 0.4); }
}

/* Self-interest */
.word-self-interest {
    font-weight: 700;
    color: #e17055;
    font-style: italic;
}

/* Sparingly but decisively */
.word-sparingly {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* Harsh example */
.word-harsh {
    font-weight: 700;
    color: #000000;
    animation: strike 2s ease-in-out infinite;
}

@keyframes strike {
    0%, 100% { transform: translateX(0); }
    10%, 30% { transform: translateX(-2px); }
    20%, 40% { transform: translateX(2px); }
}

/* Wasted on generosity */
.word-wasted {
    font-weight: 700;
    color: #636e72;
    opacity: 0.7;
}

/* Saved for maintaining power */
.word-saved {
    font-weight: 700;
    color: #27ae60;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 0 rgba(39, 174, 96, 0); }
    50% { text-shadow: 0 0 10px rgba(39, 174, 96, 0.5); }
}

/* Master the appearance of virtue */
.word-master {
    font-weight: 700;
    color: #000000;
    background: linear-gradient(90deg, #000000, #8e44ad, #000000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: masterSlide 3s ease infinite;
}

@keyframes masterSlide {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Seem like everything people want */
.word-seem {
    font-weight: 700;
    color: #000000;
    font-style: italic;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Total opposite */
.word-total-opposite {
    font-weight: 700;
    color: #000000;
    animation: flip 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes flip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

/* Nice and sweet */
.word-nice-sweet {
    font-weight: 700;
    color: #fd79a8;
    font-style: italic;
}

/* Safe and inclusive environment */
.word-safe-inclusive {
    font-weight: 700;
    color: #74b9ff;
    letter-spacing: 0.02em;
}

/* Constantly lost */
.word-constantly-lost {
    font-weight: 700;
    color: #636e72;
    animation: fade 2s ease-in-out infinite;
}

@keyframes fade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Night and day difference */
.word-night-day {
    font-weight: 900;
    background: linear-gradient(90deg, #2c3e50, #ecf0f1, #2c3e50);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dayNight 3s ease infinite;
    text-transform: uppercase;
}

@keyframes dayNight {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Yell at us */
.word-yell {
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    animation: yell 1.5s ease-in-out infinite;
}

/* Competition and hunger to win */
.word-competition {
    font-weight: 700;
    color: #e67e22;
    animation: energize 2s ease-in-out infinite;
}

@keyframes energize {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Loved us more */
.word-loved-more {
    font-weight: 700;
    color: #000000;
    font-style: italic;
}

/* Bad team / Bad players */
.word-bad-team, .word-bad-players {
    font-weight: 700;
    color: #000000;
}

/* Trained better */
.word-trained-better {
    font-weight: 700;
    color: #16a085;
    text-decoration: underline;
}

/* Tried harder */
.word-tried-harder {
    font-weight: 700;
    color: #2980b9;
    text-decoration: underline;
}

/* Whole difference */
.word-whole-difference {
    font-weight: 900;
    color: #000000;
    letter-spacing: 0.05em;
}

/* Winning games again */
.word-winning {
    font-weight: 900;
    color: #27ae60;
    animation: victory 2s ease-in-out infinite;
    text-transform: uppercase;
}

@keyframes victory {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); text-shadow: 0 0 10px rgba(39, 174, 96, 0.5); }
}

/* Semi-finalists */
.word-semi-finalists {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* Warned about */
.word-warned {
    font-weight: 700;
    color: #e74c3c;
    animation: warning 2s ease-in-out infinite;
}

@keyframes warning {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Love and appearances of kindness */
.word-love-appearances {
    font-weight: 700;
    color: #fd79a8;
    font-style: italic;
}

/* Accountability */
.word-accountability {
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Avoided conflict and punishment */
.word-avoided {
    font-weight: 700;
    color: #95a5a6;
    opacity: 0.8;
}

/* Non-committed */
.word-non-committed {
    font-weight: 700;
    color: #7f8c8d;
}

/* Effectively */
.word-effectively {
    font-weight: 700;
    color: #27ae60;
    letter-spacing: 0.02em;
}

/* Fear of abuse */
.word-fear-abuse {
    font-weight: 700;
    color: #000000;
}

/* Fear of mediocrity and wasted potential */
.word-fear-mediocrity {
    font-weight: 900;
    color: #e67e22;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* REALITY */
.word-reality {
    font-weight: 900;
    color: #000000;
    font-size: 1.15em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: reality 2s ease-in-out infinite;
}

@keyframes reality {
    0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(0, 0, 0, 0); }
    50% { transform: scale(1.05); text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); }
}

/* Win, win, win */
.word-win-win-win {
    font-weight: 900;
    color: #27ae60;
    text-transform: uppercase;
    animation: winChant 1s ease-in-out infinite;
    letter-spacing: 0.08em;
}

@keyframes winChant {
    0%, 100% { transform: scale(1); }
    33% { transform: scale(1.05); }
    66% { transform: scale(1.03); }
}

/* Be feared but not hated */
.word-feared-not-hated {
    font-weight: 900;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #2c3e50, #e74c3c, #2c3e50);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fearedSlide 3s ease infinite;
}

@keyframes fearedSlide {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Not about being liked */
.word-not-liked {
    font-weight: 700;
    color: #636e72;
    text-decoration: line-through;
}

/* Serving the needs */
.word-serving {
    font-weight: 700;
    color: #27ae60;
    letter-spacing: 0.02em;
}

/* Uncomfortable */
.word-uncomfortable {
    font-weight: 700;
    color: #e17055;
    font-style: italic;
}

/* Make it happen */
.word-make-happen {
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    animation: happen 2s ease-in-out infinite;
}

/* The TRUTH */
.word-truth {
    font-weight: 900;
    color: #000000;
    font-size: 1.15em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: truthReveal 2.5s ease-in-out infinite;
}

@keyframes truthReveal {
    0%, 100% { opacity: 0.95; text-shadow: 0 0 0 rgba(0, 0, 0, 0); }
    50% { opacity: 1; text-shadow: 0 0 15px rgba(0, 0, 0, 0.5); }
}

/* Sin and evil */
.word-sin-evil {
    font-weight: 700;
    color: #c0392b;
    animation: sinWave 2s ease-in-out infinite;
}

@keyframes sinWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* Firm without being hated */
.word-firm {
    font-weight: 700;
    color: #34495e;
    letter-spacing: 0.03em;
}

@keyframes tilt {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-5deg); }
}

/* Drapes down */
.word-drapes {
    font-weight: 700;
    color: #636e72;
    animation: drape 3s ease-in-out infinite;
}

@keyframes drape {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* Dark and empty */
.word-dark-empty {
    font-weight: 700;
    color: #2d3436;
    opacity: 0.8;
}

/* Focus (second instance) */
.word-focus2 {
    font-weight: 700;
    font-size: 1.1em;
    color: #000000;
    animation: focusSecond 2s ease-in-out infinite;
}

@keyframes focusSecond {
    0%, 100% { letter-spacing: 0; }
    50% { letter-spacing: 0.05em; }
}

/* Moral purpose */
.word-moral-purpose {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.02em;
}

/* Dedicated servant */
.word-dedicated {
    font-weight: 700;
    color: #000000;
}

/* Inspire */
.word-inspire {
    font-weight: 700;
    color: #000000;
    animation: inspire 2s ease-in-out infinite;
}

@keyframes inspire {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Patriotism */
.word-patriotism {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
}

/* ====================================================================== */
/* INDIVIDUAL RIGHTS & RESPONSIBILITY PAGE STYLED TEXT EFFECTS */
/* ====================================================================== */

/* Right or wrong conduct */
.word-right-wrong {
    font-weight: 700;
    background: linear-gradient(90deg, #27ae60, #c0392b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rightWrongSlide 3s ease infinite;
}

@keyframes rightWrongSlide {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Virtues - honesty, justice, and compassion */
.word-virtues {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.02em;
    animation: virtueGlow 2.5s ease-in-out infinite;
}

@keyframes virtueGlow {
    0%, 100% { text-shadow: 0 0 0 rgba(52, 152, 219, 0); }
    50% { text-shadow: 0 0 10px rgba(52, 152, 219, 0.3); }
}

/* Virtuous society */
.word-virtuous-society {
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.03em;
}

/* NOT have good morals */
.word-not-have {
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
}

/* Fall apart */
.word-fall-apart {
    font-weight: 700;
    color: #c0392b;
    animation: crumble 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes crumble {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(-1deg); }
    75% { transform: translateY(2px) rotate(1deg); }
}

/* Religion */
.word-religion {
    font-weight: 700;
    color: #000000;
    animation: sacred 2.5s ease-in-out infinite;
}

@keyframes sacred {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; text-shadow: 0 0 8px rgba(142, 68, 173, 0.4); }
}

/* Bigger than themselves */
.word-bigger {
    font-weight: 700;
    color: #34495e;
    animation: transcend 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes transcend {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Constitution quote */
.word-constitution-quote {
    font-weight: 900;
    color: #2c3e50;
    font-style: italic;
    background: rgba(52, 73, 94, 0.1);
    padding: 0 0.3em;
    border-left: 3px solid #2c3e50;
    display: inline-block;
    margin: 0 0.2em;
}

/* Greedy, angry, and selfish */
.word-greedy {
    font-weight: 700;
    color: #e67e22;
    animation: corrupt 2s ease-in-out infinite;
}

@keyframes corrupt {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; color: #d35400; }
}

/* TEAR APART */
.word-tear-apart {
    font-weight: 900;
    color: #000000;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: tear 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes tear {
    0%, 100% { transform: scaleX(1); }
    25% { transform: scaleX(1.05) translateX(-3px); }
    75% { transform: scaleX(1.05) translateX(3px); }
}

/* Religion helps people be good */
.word-religion-helps {
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.02em;
}

/* Chaos */
.word-chaos {
    font-weight: 900;
    color: #000000;
    animation: chaotic 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes chaotic {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-2deg); }
    20%, 40%, 60%, 80% { transform: rotate(2deg); }
}

/* Knowing what is right from wrong */
.word-knowing {
    font-weight: 700;
    color: #16a085;
    text-decoration: underline;
    text-decoration-color: #1abc9c;
    text-decoration-thickness: 2px;
}

/* No one is watching */
.word-no-one-watching {
    font-weight: 700;
    color: #7f8c8d;
    font-style: italic;
    animation: watching 3s ease-in-out infinite;
}

@keyframes watching {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* From religion! */
.word-from-religion {
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    animation: emphasis 2s ease-in-out infinite;
}

@keyframes emphasis {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* French fries */
.word-french-fries {
    font-weight: 700;
    color: #f39c12;
    animation: fries 2s ease-in-out infinite;
}

@keyframes fries {
    0%, 100% { color: #f39c12; }
    50% { color: #e67e22; }
}

/* Xitique */
.word-xitique {
    font-weight: 700;
    color: #9b59b6;
    font-style: italic;
}

/* Only chance */
.word-only-chance {
    font-weight: 700;
    color: #e67e22;
    letter-spacing: 0.02em;
}

/* SO TEMPTED */
.word-so-tempted {
    font-weight: 900;
    color: #e74c3c;
    font-size: 1.1em;
    text-transform: uppercase;
    animation: temptation 2s ease-in-out infinite;
}

@keyframes temptation {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(-1deg); }
    75% { transform: scale(1.05) rotate(1deg); }
}

/* No one would know */
.word-no-one-know {
    font-weight: 700;
    color: #95a5a6;
    opacity: 0.8;
    font-style: italic;
}

/* Wrong */
.word-wrong {
    font-weight: 900;
    color: #c0392b;
    text-decoration: underline wavy;
    text-decoration-color: #e74c3c;
}

/* God would see me */
.word-god-see {
    font-weight: 900;
    color: #2c3e50;
    background: linear-gradient(135deg, #34495e, #8e44ad, #34495e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: divineWatch 3s ease infinite;
}

@keyframes divineWatch {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* NOT want to be that kind of person */
.word-not-want {
    font-weight: 900;
    color: #e74c3c;
    text-transform: uppercase;
}

/* Cry myself to sleep */
.word-cry {
    font-weight: 700;
    color: #3498db;
    font-style: italic;
    animation: sadness 3s ease-in-out infinite;
}

@keyframes sadness {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; transform: translateY(2px); }
}

/* Knew what is right and wrong */
.word-knew-right-wrong {
    font-weight: 700;
    color: #27ae60;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Wild */
.word-wild {
    font-weight: 900;
    color: #e67e22;
    animation: wildness 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes wildness {
    0%, 100% { transform: skewX(0deg); }
    25% { transform: skewX(-3deg); }
    75% { transform: skewX(3deg); }
}

/* Dallas-Fort Worth */
.word-dallas {
    font-weight: 700;
    color: #34495e;
    letter-spacing: 0.03em;
}

/* NOT care or want to know */
.word-not-care {
    font-weight: 900;
    color: #7f8c8d;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Solid inside */
.word-solid-inside {
    font-weight: 900;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: solidCore 2.5s ease-in-out infinite;
}

@keyframes solidCore {
    0%, 100% { text-shadow: 0 0 0 rgba(44, 62, 80, 0); }
    50% { text-shadow: 0 0 10px rgba(44, 62, 80, 0.5); }
}

/* STICK TO IT */
.word-stick-to-it {
    font-weight: 900;
    color: #e74c3c;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: determination 2s ease-in-out infinite;
}

@keyframes determination {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); text-shadow: 2px 2px 4px rgba(231, 76, 60, 0.4); }
}

/* Skeptical */
.word-skeptical {
    font-weight: 700;
    color: #95a5a6;
    font-style: italic;
}

/* Shove religious opinions away */
.word-shove-away {
    font-weight: 700;
    color: #c0392b;
    animation: reject 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes reject {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Character is destiny */
.word-character-destiny {
    font-weight: 900;
    color: #2c3e50;
    background: linear-gradient(90deg, #2c3e50, #8e44ad, #2c3e50);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: destinyFlow 3s ease infinite;
    letter-spacing: 0.03em;
}

@keyframes destinyFlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Moral law is NOT OPTIONAL */
.word-moral-law {
    font-weight: 900;
    color: #c0392b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: absolute 2s ease-in-out infinite;
}

@keyframes absolute {
    0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(192, 57, 43, 0); }
    50% { transform: scale(1.04); text-shadow: 0 0 12px rgba(192, 57, 43, 0.5); }
}

/* ALWAYS tell the truth */
.word-always-tell {
    font-weight: 900;
    color: #27ae60;
    text-transform: uppercase;
    animation: truthShine 2.5s ease-in-out infinite;
}

@keyframes truthShine {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 1; text-shadow: 0 0 10px rgba(39, 174, 96, 0.5); }
}

/* Respect people */
.word-respect-people {
    font-weight: 700;
    color: #3498db;
    letter-spacing: 0.02em;
}

/* Following the crowd */
.word-following-crowd {
    font-weight: 700;
    color: #95a5a6;
    text-decoration: line-through;
    opacity: 0.8;
}

/* Standing on what is right */
.word-standing-right {
    font-weight: 900;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: stand 2.5s ease-in-out infinite;
}

@keyframes stand {
    0%, 100% { transform: translateY(0); text-shadow: 0 0 0 rgba(39, 174, 96, 0); }
    50% { transform: translateY(-2px); text-shadow: 0 4px 8px rgba(39, 174, 96, 0.4); }
}

/* Desktop 5-button layout */
@media (min-width: 769px) {
    .nav-toggle-container.nav-5-buttons .nav-btn {
        flex: 1;
        min-width: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        top: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .nav-toggle-container {
        justify-content: flex-start;
        width: calc(100vw - 1.25rem);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.5rem;
    }

    .nav-toggle-container.nav-5-buttons {
        --nav-gap: 0.5rem;
    }

    .nav-toggle-container::-webkit-scrollbar {
        display: none;
    }

    .nav-toggle-container.nav-5-buttons .nav-btn {
        flex: 0 0 auto;
        min-width: var(--nav-btn-width);
    }

    .nav-btn {
        padding: 0.45rem 1.35rem;
        font-size: 0.98rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-toggle-container .toggle-background {
        left: 0.5rem;
        right: 0.5rem;
        top: 0.5rem;
        bottom: 0.5rem;
    }

    .submenu-dropdown {
        position: absolute;
        max-width: 90vw;
        width: auto;
        min-width: 200px;
    }

    .page-container {
        padding-top: 5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        max-width: calc(100vw - 1rem);
    }

    .nav-toggle-container {
        gap: 0.3rem;
    }

    .nav-toggle-container.nav-5-buttons {
        --nav-btn-width: 114px;
        --nav-gap: 0.3rem;
    }

    .nav-btn {
        padding: 0.45rem 1.05rem;
        font-size: 0.93rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ====================================================================== */
/* PODCAST PLAYER */
/* ====================================================================== */
.podcast-card {
    background: #000;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2.5rem;
    color: #e8eef7;
}

.podcast-meta {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.podcast-card p {
    margin: 0;
    color: #d6dfec;
}

.podcast-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f4f7fb;
}

.podcast-subtitle {
    font-size: 1rem;
    color: #c4d0df;
    max-width: 760px;
    opacity: 0.78;
}

.podcast-player {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.podcast-audio {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.podcast-time-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.podcast-wave {
    height: 110px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: .5rem;
    padding: 0.5rem 0.5rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 35px rgba(0, 0, 0, 0.3);
}

.podcast-wave:focus-visible {
    outline: 2px solid #f28b37;
    outline-offset: 3px;
}

.wave-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 100%;
    width: 100%;
}

.wave-bar {
    flex: 1;
    min-width: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.wave-bar.played {
    background: linear-gradient(180deg, #f6a452 0%, #f28b37 100%);
    box-shadow: 0 6px 18px rgba(242, 139, 55, 0.135);
    transform: translateY(-2px);
}

.podcast-time {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: #f4f7fb;
    letter-spacing: 0.02em;
}

.podcast-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding: 0.75rem 0.25rem 0.25rem;
}

.podcast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #f4f7fb;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: .4rem;
    padding: 0.6rem 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.14s ease, background-color 0.14s ease, border-color 0.14s ease;
    font-family: 'Arya', Arial, sans-serif;
}

.podcast-btn:hover {
    background: rgba(242, 139, 55, 0.14);
    border-color: rgba(242, 139, 55, 0.6);
    transform: scale(1.1);
}

.podcast-btn:active {
    transform: translateY(0);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
}

.volume-label {
    font-size: 0.9rem;
    color: #c4d0df;
}

.volume-slider {
    accent-color: #f28b37;
    width: 140px;
    cursor: pointer;
}

.podcast-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.25rem;
}

.podcast-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.1rem;
    background: #f28b37;
    color: #0d1117;
    font-weight: 700;
    border-radius: 0.4rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    margin-bottom: 5rem;
}

.podcast-download:hover {
    transform: scale(1.05);
    background: #ff9c4f;
}

.podcast-download:active {
    transform: translateY(0);
    box-shadow: none;
}

.podcast-note {
    color: #c4d0df;
    font-size: 0.95rem;
}

.podcast-transcript-body {
    line-height: 1.65;
    color: #d6dfec;
    font-size: 1rem;
    margin-top: 1.5rem;
}

.podcast-transcript-body p {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.podcast-transcript-body p:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.podcast-word {
    display: inline-block;
    padding: 0.08rem 0.18rem;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.podcast-word:hover {
    background: rgba(242, 139, 55, 0.16);
}

.podcast-word.active {
    background: #f28b37;
    color: #0d1117;
    box-shadow: 0 8px 24px rgba(242, 139, 55, 0.25);
}

@media (max-width: 640px) {
    .podcast-card {
        padding: 1.25rem;
    }

    .podcast-title {
        font-size: 1.35rem;
    }

    .podcast-time-row {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .podcast-time {
        font-size: 0.9rem;
        text-align: center;
    }

    .podcast-wave {
        height: 80px;
        padding: 0.4rem 0.4rem;
    }

    .wave-bars {
        gap: 1px;
    }

    .wave-bar {
        min-width: 2px;
    }

    .podcast-controls {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .podcast-btn {
        padding: 0.7rem 1.1rem;
        font-size: 0.95rem;
        flex: 1;
        min-width: 0;
    }

    .podcast-btn[data-action="back"],
    .podcast-btn[data-action="forward"] {
        flex: 0.8;
    }

    .podcast-btn[data-action="play-pause"] {
        flex: 1.4;
    }

    .volume-control {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0.75rem;
    }

    .volume-slider {
        width: 100%;
        max-width: 100%;
    }

    .podcast-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .podcast-download {
        width: 100%;
        justify-content: center;
    }
}

/* Podcast page background (only on Group Podcast) */
body[data-page="group"] {
    background: #000;
    color: #e8eef7;
}

body[data-page="group"] #smooth-content,
body[data-page="group"] #app-content {
    background: #000;
}

body[data-page="group"] .content-wrapper {
    color: #e8eef7;
}

body[data-page="group"] .content-wrapper p {
    color: #d6dfec;
}

/* Collection page background */
body[data-page="collection"] {
    background: #000;
    color: #e8eef7;
}

body[data-page="collection"] #smooth-content,
body[data-page="collection"] #app-content {
    background: #000;
}

body[data-page="collection"] .content-wrapper {
    color: #e8eef7;
    max-width: none;
    padding: 0;
}

body[data-page="collection"] .content-wrapper p {
    color: #cfd7e4;
}

body[data-page="collection"] .page-container {
    padding-top: 0;
    min-height: var(--full-height);
}

.collection-wrapper {
    padding-top: 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0;
    margin-top: 0;
    min-height: var(--full-height);
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(145deg, #111, #0a0a0a);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    isolation: isolate;
    aspect-ratio: 1 / 1;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
    will-change: transform, filter;
    backface-visibility: hidden;
    display: block;
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.75) 95%);
    z-index: 1;
    transition: opacity 0.4s ease;
    opacity: 0.75;
    pointer-events: none;
}

.collection-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.1rem;
    color: #f6f8fb;
    font-size: 0.8rem;
    z-index: 2;
    font-weight: 200;
    letter-spacing: 0.01em;
    display: none;
}

.collection-card:hover img {
    transform: none;
    filter: none;
}

.collection-card:hover::after {
    opacity: 0.95;
}

.collection-card:hover figcaption {
    color: #f6f8fb;
}

@media (max-width: 768px) {
    .collection-wrapper {
        padding-top: 5.5rem;
    }

    .collection-grid {
        gap: 0;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .collection-card {
        min-height: 200px;
    }

    .collection-card::after {
        opacity: 0;
        pointer-events: none;
    }

    .collection-card img {
        cursor: default;
        pointer-events: none;
    }

    .collection-lede {
        font-size: 1rem;
    }
}

/* ====================================================================== */
/* Collection Lightbox (fullscreen viewer) */
/* ====================================================================== */
body.lightbox-open {
    overflow: hidden;
}

.collection-lightbox {
    position: fixed;
    inset: 0;
    padding: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 11000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(10px);
}

.collection-lightbox.hidden {
    opacity: 0;
    pointer-events: none;
}

.collection-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.collection-lightbox__stage {
    position: relative;
    width: 100vw;
    height: var(--full-height);
    background: #000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    touch-action: none;
    cursor: grab;
    z-index: 1;
}

.collection-lightbox__stage.dragging {
    cursor: grabbing;
}

.collection-lightbox__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.08s linear;
    will-change: transform;
    user-select: none;
    pointer-events: none;
}

.collection-lightbox__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.4rem 1.25rem;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0) 0%, rgba(8, 8, 8, 0.82) 100%);
    color: #f1f4f8;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: center;
}

.collection-lightbox__toolbar {
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.4rem 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.collection-lightbox__btn {
    border: none;
    background: #121212;
    color: #f7f9fd;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Arya', Arial, sans-serif;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.collection-lightbox__btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.collection-lightbox__zoom {
    color: #cfd7e4;
    font-size: 0.9rem;
    padding: 0 0.35rem;
    min-width: 64px;
    text-align: center;
}

.collection-lightbox__close {
    position: absolute;
    top: clamp(0.75rem, 3vw, 1.25rem);
    right: clamp(0.75rem, 3vw, 1.25rem);
    left: auto;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #f7f9fd;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.4rem;
    font-family: 'Arya', Arial, sans-serif;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 3;
}

.collection-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.collection-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #f7f9fd;
    width: 52px;
    height: 108px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 2rem;
    font-family: 'Arya', Arial, sans-serif;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 3;
}

.collection-lightbox__nav--prev {
    left: clamp(0.75rem, 2vw, 1.25rem);
}

.collection-lightbox__nav--next {
    right: clamp(0.75rem, 2vw, 1.25rem);
}

.collection-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-50%) scale(1.02);
}

@media (max-width: 768px) {
    .collection-lightbox__stage {
        width: 100vw;
        height: var(--full-height);
        border-radius: 0;
    }

    .collection-lightbox__toolbar {
        left: 0.5rem;
        right: 0.5rem;
        justify-content: center;
        gap: 0.3rem;
    }

    .collection-lightbox__caption {
        font-size: 0.9rem;
        padding: 0.85rem 1rem 1rem;
    }

    .collection-lightbox__nav {
        width: 42px;
        height: 88px;
    }
}

/* ====================================================================== */
/* ARTWORK GALLERY */
/* ====================================================================== */
.black-gallery-section {
    background-color: #000;
    width: 100vw;
    height: calc(var(--full-height) * 1.05);
    margin-left: calc(-50vw + 50%);
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.artwork-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    width: 100%;
    height: 100%;
}

.artwork-item.active {
    opacity: 1;
    z-index: 2;
}

.artwork-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.artwork-label {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    color: #fff;
    text-align: left;
    font-weight: 200;
    padding: .5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 40rem;
    left: 2rem;
    z-index: 3;
    max-width: calc(100% - 4rem);
    border-radius: .5rem;
}

/* Slideshow Navigation Dots */
.slideshow-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.slideshow-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slideshow-dot.active {
    background-color: #fff;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .black-gallery-section {
        height: 80vh;
    }
    
    .artwork-label {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        top: 1rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .slideshow-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .slideshow-dot {
        width: 10px;
        height: 10px;
    }
}
