/* ============================================================================
   SYNTHESIS.CSS - Dwell Theme Stylesheet
   ============================================================================
   Structure:
   1. CSS Reset & Variables
   2. Base Styles
   3. Background Animation
   4. Header
   5. Layout (Pages System)
   6. Timeline Navigator
   7. Content Stream
   8. Summary Cards
   9. Post Cards (Base)
   10. Media Cards (Watch/Listen)
   11. Checkin Cards
   12. Photo Grid
   13. Post Footer
   14. Gallery
   15. Now/About Pages
   16. Navigation & Filter
   17. Lightbox
   18. Post Type Specifics (Entry, Review, Recipe, etc.)
   19. Interaction Cards (Like, Bookmark, Reply, RSVP)
   20. Welcome Card
   21. Syndication
   22. Location
   23. Comments & Likes Sections
   24. Utilities & Icons
   25. Post Detail Page
   26. Media Queries (Consolidated)
   27. Print Styles
   ============================================================================ */

/* ============================================================================
   1. CSS RESET & VARIABLES
   ============================================================================ */

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

:root {
    --sunset-yellow: #FFD93D;
    --warm-orange: #FF8C42;
    --vibrant-magenta: #E84A8A;
    --deep-purple: #7B2D8E;
    --dark-indigo: #2D1B4E;
    --night-black: #0D0514;
    --cyan-accent: #00D4E5;
    --green-accent: #4AE54A;
}

/* ============================================================================
   2. BASE STYLES
   ============================================================================ */

body {
    font-family: 'Sono', sans-serif;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--dark-indigo) 0%, var(--night-black) 100%);
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;
    padding-bottom: 1.5rem;
}

a {
    color: var(--cyan-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================================================================
   3. BACKGROUND ANIMATION
   ============================================================================ */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--sunset-yellow);
    top: -200px;
    left: -100px;
    animation: float1 15s ease-in-out infinite, colorCycle1 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--vibrant-magenta);
    bottom: -100px;
    right: -100px;
    animation: float2 12s ease-in-out infinite, colorCycle2 25s ease-in-out infinite;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--cyan-accent);
    top: 40%;
    left: 40%;
    animation: float3 18s ease-in-out infinite, colorCycle3 22s ease-in-out infinite;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: var(--deep-purple);
    top: 20%;
    right: 10%;
    animation: float1 14s ease-in-out infinite reverse, colorCycle4 18s ease-in-out infinite;
}

.blob-5 {
    width: 450px;
    height: 450px;
    background: var(--warm-orange);
    bottom: 30%;
    left: 10%;
    animation: float2 16s ease-in-out infinite reverse, colorCycle5 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, -60px) scale(1.1); }
    50% { transform: translate(-40px, 80px) scale(0.9); }
    75% { transform: translate(-80px, -40px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-60px, 80px) scale(1.05); }
    50% { transform: translate(80px, -40px) scale(0.95); }
    75% { transform: translate(40px, 60px) scale(1.1); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 60px) scale(1.08); }
    66% { transform: translate(-60px, -30px) scale(0.92); }
}

@keyframes colorCycle1 {
    0%, 100% { background: var(--sunset-yellow); }
    33% { background: var(--warm-orange); }
    66% { background: var(--vibrant-magenta); }
}

@keyframes colorCycle2 {
    0%, 100% { background: var(--vibrant-magenta); }
    33% { background: var(--deep-purple); }
    66% { background: var(--cyan-accent); }
}

@keyframes colorCycle3 {
    0%, 100% { background: var(--cyan-accent); }
    33% { background: var(--deep-purple); }
    66% { background: var(--warm-orange); }
}

@keyframes colorCycle4 {
    0%, 100% { background: var(--deep-purple); }
    33% { background: var(--vibrant-magenta); }
    66% { background: var(--dark-indigo); }
}

@keyframes colorCycle5 {
    0%, 100% { background: var(--warm-orange); }
    33% { background: var(--sunset-yellow); }
    66% { background: var(--vibrant-magenta); }
}

/* ============================================================================
   4. HEADER
   ============================================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgba(13, 5, 20, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--vibrant-magenta);
    overflow: hidden;
}

/* Hide header avatar since welcome card has one */
.logo .avatar {
    display: none;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Anybody', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Right */
.header-right {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Header Dropdown Menu */
.header-menu {
    position: relative;
}

.header-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.header-menu-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-chevron {
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.header-menu.open .menu-chevron {
    transform: rotate(180deg);
}

.header-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 180px;
    background: rgba(20, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 0.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.header-menu.open .header-dropdown {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Trispace', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dropdown-item img {
    opacity: 0.7;
}

.dropdown-item:hover img {
    opacity: 1;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.3rem 0.5rem;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Trispace', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.auth-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.auth-btn.primary {
    background: linear-gradient(135deg, var(--warm-orange), var(--vibrant-magenta));
    border: none;
    color: white;
}

.auth-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.auth-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Trispace', monospace;
    font-size: 0.8rem;
}

.auth-user-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-accent), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Navigation (Search & Archive) */
.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.header-search:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.search-input {
    width: 180px;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: white;
    font-family: 'Sono', monospace;
    font-size: 0.875rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.search-btn:hover {
    opacity: 1;
}

.header-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Trispace', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-nav-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.header-nav-btn img {
    opacity: 0.7;
}

.header-nav-btn:hover img {
    opacity: 1;
}

/* ============================================================================
   5. LAYOUT (PAGES SYSTEM)
   ============================================================================ */

.pages-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Allow scrolling on detail pages */
.pages-wrapper.scrollable {
    overflow-y: auto;
}

.pages-container {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page {
    width: 20%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    padding-top: 80px;
    padding-bottom: 6rem;
    position: relative;
}

.page.active {
    opacity: 1;
}

#page-timeline {
    position: relative;
}

/* ============================================================================
   6. TIMELINE NAVIGATOR
   ============================================================================ */

.timeline-container {
    transition: opacity 0.3s ease;
    position: fixed;
    right: 1.5rem;
    top: 100px;
    bottom: 1.5rem;
    width: 200px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding: 1rem 2.5rem;
    background: rgba(13, 5, 20, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-tracks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex: 1;
}

.timeline-track {
    width: 36px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Hide static labels - using labels in handles instead */
.timeline-track-label {
    display: none;
}

.timeline-track-line {
    flex: 1;
    width: 10px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.timeline-track-line:hover {
    width: 14px;
}

.timeline-track.days .timeline-track-line {
    background: linear-gradient(180deg, rgba(255, 217, 61, 0.3) 0%, rgba(255, 140, 66, 0.3) 100%);
    border: 1px solid rgba(255, 217, 61, 0.4);
}

.timeline-track.months .timeline-track-line {
    background: linear-gradient(180deg, rgba(255, 140, 66, 0.3) 0%, rgba(232, 74, 138, 0.3) 100%);
    border: 1px solid rgba(255, 140, 66, 0.4);
}

.timeline-track.years .timeline-track-line {
    background: linear-gradient(180deg, rgba(232, 74, 138, 0.3) 0%, rgba(123, 45, 142, 0.3) 100%);
    border: 1px solid rgba(232, 74, 138, 0.4);
}

/* Progress fill inside tracks */
.timeline-track-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--progress, 0%);
    border-radius: 5px;
    transition: height 0.3s ease-out;
    pointer-events: none;
}

.timeline-track.days .timeline-track-line::before {
    background: linear-gradient(180deg, rgba(255, 217, 61, 0.6) 0%, rgba(255, 140, 66, 0.4) 100%);
}

.timeline-track.months .timeline-track-line::before {
    background: linear-gradient(180deg, rgba(255, 140, 66, 0.6) 0%, rgba(232, 74, 138, 0.4) 100%);
}

.timeline-track.years .timeline-track-line::before {
    background: linear-gradient(180deg, rgba(232, 74, 138, 0.6) 0%, rgba(123, 45, 142, 0.4) 100%);
}

/* Timeline handles with labels */
.timeline-handle {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    min-width: 36px;
    height: 28px;
    padding: 0 8px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Trispace', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--night-black);
    background: var(--cyan-accent);
    cursor: grab;
    box-shadow: 0 0 12px var(--cyan-accent), 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: top 0.3s ease-out, transform 0.1s, box-shadow 0.2s;
    z-index: 10;
}

.timeline-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px var(--cyan-accent), 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Track-specific handle colors */
.timeline-track.days .timeline-handle {
    background: linear-gradient(135deg, var(--sunset-yellow), var(--warm-orange));
    color: var(--night-black);
}

.timeline-track.months .timeline-handle {
    background: linear-gradient(135deg, var(--warm-orange), var(--vibrant-magenta));
    color: white;
}

.timeline-track.years .timeline-handle {
    background: linear-gradient(135deg, var(--vibrant-magenta), var(--deep-purple));
    color: white;
}

/* Today Button */
.timeline-today-button {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Sono', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
}

.timeline-today-button.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.timeline-today-button:hover {
    background: linear-gradient(135deg, var(--warm-orange), var(--vibrant-magenta));
    color: white;
    border-color: transparent;
}

/* ============================================================================
   7. CONTENT STREAM
   ============================================================================ */

.content-stream {
    width: 100%;
    max-width: 1000px;
    padding: 2rem 3rem 6rem;
    box-sizing: border-box;
}

/* Day Separator */
.day-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}

.day-separator:first-child {
    margin-top: 0;
}

.day-separator .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
}

.day-separator .label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--sunset-yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Loading */
.loading-indicator {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   8. SUMMARY CARDS (Month & Year)
   ============================================================================ */

.month-summary,
.year-summary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.month-summary:hover,
.year-summary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.month-summary-header,
.year-summary-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.summary-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.summary-icon::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-mask: url('/icon/activity?size=36') center/contain no-repeat;
    mask: url('/icon/activity?size=36') center/contain no-repeat;
}

.summary-icon img {
    display: none;
}

.summary-title-large {
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-subtitle {
    font-family: 'Trispace', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* Hide old summary elements - using new unified layout */
.year-summary-year,
.year-summary-label,
.month-summary-title,
.month-summary-label,
.month-summary-icon {
    display: none;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.stats-loading {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    padding: 1rem;
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.625rem 0.875rem;
    transition: background 0.2s;
}

.stat-chip:hover {
    background: rgba(255, 255, 255, 0.12);
}

.stat-chip .stat-icon {
    opacity: 0.7;
}

.stat-chip .stat-count {
    font-family: 'Trispace', monospace;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sunset-yellow);
}

.stat-chip .stat-kind {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 229, 0.1);
    border: 1px solid rgba(0, 212, 229, 0.3);
    border-radius: 2rem;
    color: var(--cyan-accent);
    font-family: 'Sono', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.summary-link:hover {
    background: rgba(0, 212, 229, 0.2);
    border-color: var(--cyan-accent);
    text-decoration: none;
}

/* Legacy stat items (kept for compatibility) */
.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 0.875rem;
    text-align: center;
}

.stat-count {
    font-family: 'Trispace', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sunset-yellow);
}

.stat-label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.125rem;
}

/* ============================================================================
   9. POST CARDS (Base)
   ============================================================================ */

.post-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.post-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.18);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.post-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'Trispace', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: rgba(255, 217, 61, 0.15);
    color: var(--sunset-yellow);
}

.post-type.watching { background: rgba(232, 74, 138, 0.15); color: var(--vibrant-magenta); }
.post-type.listen { background: rgba(0, 212, 229, 0.15); color: var(--cyan-accent); }
.post-type.photo { background: rgba(74, 229, 74, 0.15); color: var(--green-accent); }
.post-type.checkin { background: rgba(123, 45, 142, 0.15); color: white; }
.post-type.entry { background: rgba(255, 140, 66, 0.15); color: var(--warm-orange); }

.post-time {
    font-family: 'Trispace', monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.post-content {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.post-title {
    font-family: 'Anybody', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.post-title a {
    color: white;
    text-decoration: none;
}

.post-title a:hover {
    color: var(--cyan-accent);
}

.post-text {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
}

.post-text p {
    margin-bottom: 0.75rem;
}

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

.post-text a {
    color: var(--cyan-accent);
}

.post-text blockquote {
    border-left: 3px solid var(--warm-orange);
    padding-left: 1rem;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ============================================================================
   10. MEDIA CARDS (Watch/Listen)
   ============================================================================ */

.media-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.media-poster {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, var(--deep-purple), var(--dark-indigo));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.media-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-poster.square {
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
}

.media-poster.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 74, 138, 0.1);
    border-radius: 0.5rem;
    min-height: 120px;
}

.media-poster.square.placeholder {
    background: rgba(0, 212, 229, 0.1);
}

.media-info {
    flex: 1;
    min-width: 0;
}

.media-info h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.media-info h3 a {
    color: inherit;
    text-decoration: none;
}

.media-info h3 a:hover {
    color: var(--cyan-accent);
}

.media-info .media-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.media-meta {
    font-family: 'Trispace', monospace;
    font-size: 0.875rem;
    color: var(--warm-orange);
    margin-bottom: 0.375rem;
}

/* Watching Card Enhancements */
.watching-card .media-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.watching-card .media-title a {
    color: #fff;
}

.watching-card .media-title a:hover {
    color: #E84A8A;
}

.media-source-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(232, 74, 138, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.media-source-link:hover {
    color: #E84A8A;
}

.watch-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.watch-type.movie-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    background: rgba(232, 74, 138, 0.2);
    border-radius: 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #E84A8A;
}

.episode-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
}

.episode-code {
    font-family: "Trispace", monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: rgba(232, 74, 138, 0.15);
    border-radius: 0.25rem;
    color: #E84A8A;
}

.episode-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Listen Card Enhancements */
.listen-card .media-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.listen-card .media-title a {
    color: #fff;
}

.listen-card .media-title a:hover {
    color: #00D4E5;
}

.listen-link {
    color: rgba(0, 212, 229, 0.7) !important;
}

.listen-link:hover {
    color: #00D4E5 !important;
}

/* Watch Detail Page */
.watching-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.watching-detail .media-detail-poster,
.watching-detail .watching-poster {
    width: 200px;
    flex-shrink: 0;
}

.watching-detail .media-detail-poster img,
.watching-detail .watching-poster img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.watching-detail-info {
    flex: 1;
}

.watching-show-name {
    font-family: "Anybody", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem 0;
}

.watching-episode-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.episode-code-large {
    font-family: "Trispace", monospace;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    background: rgba(232, 74, 138, 0.2);
    border-radius: 0.35rem;
    color: #E84A8A;
    margin-right: 0.5rem;
}

.episode-title-large {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.movie-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(232, 74, 138, 0.2);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #E84A8A;
    margin-bottom: 1rem;
}

.watching-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.type-badge.movie {
    background: rgba(232, 74, 138, 0.15);
    color: #E84A8A;
}

.type-badge.tv {
    background: rgba(0, 212, 229, 0.15);
    color: #00D4E5;
}

.trakt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #00D4E5;
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.trakt-link:hover {
    opacity: 0.8;
}

/* Content containers - consistent Exo 2 font */
.watching-content,
.listen-content {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

.watching-content p,
.listen-content p {
    margin: 0 0 0.75rem 0;
}

.watching-content p:last-child,
.listen-content p:last-child {
    margin-bottom: 0;
}

/* Listen Detail Page */
.listen-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.listen-detail .media-detail-poster {
    width: 160px !important;
    flex-shrink: 0;
}

.listen-detail .media-detail-poster img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.listen-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.listen-source-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00D4E5;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 229, 0.1);
    border: 1px solid rgba(0, 212, 229, 0.2);
    border-radius: 2rem;
    transition: all 0.2s;
    width: fit-content;
}

.listen-source-link:hover {
    background: rgba(0, 212, 229, 0.2);
    border-color: rgba(0, 212, 229, 0.4);
}

/* Play/Gaming Cards */
.play-card .media-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.play-card .media-title a {
    color: #fff;
}

.play-card .media-title a:hover {
    color: #4AE54A;
}

.play-placeholder {
    background: rgba(74, 229, 74, 0.1);
}

/* ============================================================================
   11. CHECKIN CARDS
   ============================================================================ */

.checkin-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.checkin-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--deep-purple), var(--vibrant-magenta));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.checkin-info {
    flex: 1;
    min-width: 0;
}

.checkin-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.checkin-info h3 a {
    color: inherit;
    text-decoration: none;
}

.checkin-info h3 a:hover {
    color: var(--cyan-accent);
}

.checkin-info p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Checkin card without icon */
.checkin-card.checkin-no-icon {
    display: block;
}

.checkin-card.checkin-no-icon .checkin-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.checkin-card.checkin-no-icon .checkin-info h3 a {
    color: white;
}

.checkin-card.checkin-no-icon .checkin-info h3 a:hover {
    color: var(--cyan-accent);
}

/* Enhanced Checkin Cards */
.checkin-card-enhanced {
    margin: 0.5rem 0;
}

.checkin-venue {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkin-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179, 136, 255, 0.15);
    border-radius: 0.75rem;
}

.venue-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.venue-name a {
    color: #fff;
}

.venue-name a:hover {
    color: #B388FF;
}

.venue-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(179, 136, 255, 0.7);
    margin-top: 0.25rem;
}

.venue-address {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.35rem 0;
}

.venue-address .icon {
    opacity: 0.6;
}

.checkin-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Checkin Map */
.checkin-map {
    z-index: 1;
    white-space: nowrap;
    height: 300px;
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.checkin-map .leaflet-control-attribution {
    font-size: 9px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: rgba(255, 255, 255, 0.5);
}

.checkin-map .leaflet-control-attribution a {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================================
   12. PHOTO GRID
   ============================================================================ */

.photo-grid {
    display: grid;
    gap: 3px;
    border-radius: 0.75rem;
    overflow: hidden;
    margin: 0.5rem 0;
}

.photo-grid.photos-1 { 
    grid-template-columns: 1fr; 
}

.photo-grid.photos-1 .photo-item {
    aspect-ratio: 4/3;
}

.photo-grid.photos-2 { grid-template-columns: 1fr 1fr; }
.photo-grid.photos-3 { grid-template-columns: 1fr 1fr; }
.photo-grid.photos-4 { grid-template-columns: 1fr 1fr; }

.photo-grid.photos-2 .photo-item,
.photo-grid.photos-3 .photo-item,
.photo-grid.photos-4 .photo-item {
    aspect-ratio: 1;
}

.photo-grid.photos-5 { 
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(2, 1fr);
}

.photo-grid.photos-6 { 
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(2, 1fr);
}

.photo-item {
    overflow: hidden;
    background: var(--night-black);
    cursor: pointer;
    transition: opacity 0.2s;
}

.photo-item:hover {
    opacity: 0.85;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
    aspect-ratio: 1;
}

/* Hide duplicate images in post-text when photo-grid is present */
.photo-grid + .post-text img,
.post-content > .photo-grid ~ .post-text img {
    display: none;
}

/* Photo caption in cards */
.photo-caption {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.photo-caption a {
    color: inherit;
    text-decoration: none;
}

.photo-caption a:hover {
    color: var(--cyan-accent);
}

/* ============================================================================
   13. POST FOOTER
   ============================================================================ */

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.post-location {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.post-actions {
    display: flex;
    gap: 0.875rem;
}

.action-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 0.875rem;
    transition: color 0.2s;
    text-decoration: none;
}

.action-btn:hover {
    color: var(--cyan-accent);
    text-decoration: none;
}

.action-btn.permalink {
    margin-left: auto;
}

/* Post Location Indicator */
.post-location-indicator {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    background: rgba(179, 136, 255, 0.1);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: rgba(179, 136, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s;
}

.post-location-indicator:hover {
    background: rgba(179, 136, 255, 0.2);
    color: #B388FF;
}

.post-location-indicator .location-text {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Location Card in Timeline Posts */
.post-location-section {
    margin-top: 0.75rem;
    background: rgba(179, 136, 255, 0.08);
    border: 1px solid rgba(179, 136, 255, 0.15);
    border-radius: 0.75rem;
    overflow: hidden;
}

.location-header-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}

.location-header-card:hover {
    background: rgba(179, 136, 255, 0.1);
}

.location-label {
    flex: 1;
    font-size: 0.8rem;
    color: rgba(179, 136, 255, 0.9);
    font-weight: 500;
}

.location-header-card .chevron {
    transition: transform 0.3s;
    opacity: 0.5;
}

.post-location-section.expanded .location-header-card .chevron {
    transform: rotate(180deg);
}

.location-content {
    display: none;
    padding: 0 0.5rem 0.5rem;
}

.post-location-section.expanded .location-content {
    display: block;
}

.location-map-card {
    border-radius: 0.5rem;
    overflow: hidden;
}

/* ============================================================================
   14. GALLERY
   ============================================================================ */

.gallery-page {
    width: 100%;
    max-width: 1000px;
    margin: 0.5rem 2rem;
    margin-bottom: 120px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    box-sizing: border-box;
    align-self: flex-start;
}

.gallery-page h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-page h1 .icon {
    -webkit-text-fill-color: initial;
}

.gallery-intro {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 4px;
    padding: 4px;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(40,40,50,1) 0%, rgba(30,30,40,1) 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 1;
}

.gallery-item.has-placeholder {
    background-size: cover;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item.loaded img {
    opacity: 1;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-date-header {
    grid-column: 1 / -1;
    padding: 1rem 0 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.gallery-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    color: rgba(255,255,255,0.5);
}

.gallery-end {
    text-align: center;
    padding: 2rem;
    color: rgba(255,255,255,0.4);
}

.gallery-show-more {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--warm-orange), var(--vibrant-magenta));
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-family: "Anybody", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-show-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ============================================================================
   15. NOW/ABOUT PAGES
   ============================================================================ */

.now-page,
.about-page {
    width: 100%;
    max-width: 1200px;
    margin: 0.5rem 2rem;
    margin-bottom: 120px;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    box-sizing: border-box;
    align-self: flex-start;
}

.now-page h1,
.about-page h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.now-page h2,
.about-page h2 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-orange);
    margin: 2rem 0 1rem;
}

.now-page p,
.about-page p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.now-intro,
.about-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--vibrant-magenta);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.social-link {
    color: var(--cyan-accent);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 229, 0.1);
    border-radius: 2rem;
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(0, 212, 229, 0.2);
    text-decoration: none;
}

/* ============================================================================
   16. NAVIGATION & FILTER
   ============================================================================ */

/* Bottom Nav */
.bottom-nav-container {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.bottom-nav {
    display: flex;
    gap: 0.25rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
}

.nav-indicator {
    position: fixed;
    top: 0.35rem;
    bottom: 0.35rem;
    left: 0.35rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.nav-item {
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Sono', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 1.5rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.nav-item:hover {
    color: white;
}

.nav-item.active {
    color: white;
}

/* Filter */
.filter-container {
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease, width 0.3s ease, margin 0.3s ease;
}

.filter-container.hidden {
    opacity: 0;
    width: 0 !important;
    margin-left: 0 !important;
    pointer-events: none;
}

.filter-bar {
    display: flex;
    gap: 0.25rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.filter-button {
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Sono', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 1.5rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-button:hover {
    color: white;
}

.filter-icon {
    opacity: 0.7;
}

.filter-divider {
    opacity: 0.3;
    margin: 0 0.5rem;
}

.filter-dropdown {
    position: fixed;
    bottom: calc(100% + 0.5rem);
    right: 0;
    min-width: 160px;
    background: rgba(13, 5, 20, 0.95);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 0.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.filter-container.open .filter-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Sono', sans-serif;
    font-size: 0.8125rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.filter-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.filter-option.active {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(232, 74, 138, 0.2));
    color: var(--sunset-yellow);
}

.filter-option span .icon {
    margin-right: 0;
}

/* ============================================================================
   17. LIGHTBOX
   ============================================================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 1001;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 300px;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 0.75rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.lightbox-content.loading {
    width: min(80vw, 90vh * var(--aspect-ratio, 1.5));
    aspect-ratio: var(--aspect-ratio, 1.5);
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-loader {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

#lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* ============================================================================
   18. POST TYPE SPECIFICS (Entry, Review, Recipe, etc.)
   ============================================================================ */

/* Entry/Article Prose Styles */
.post-card[data-kind="entry"] {
    padding: 1.5rem;
}

.post-card[data-kind="entry"] .post-content {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: rgba(255, 255, 255, 0.92);
}

.post-card[data-kind="entry"] .post-title {
    font-family: 'Anybody', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.post-card[data-kind="entry"] .post-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.post-card[data-kind="entry"] .post-text p {
    margin-bottom: 1rem;
}

.post-card[data-kind="entry"] .post-text p:last-child {
    margin-bottom: 0;
}

/* Headings within entry content */
.post-card[data-kind="entry"] .post-text h1,
.post-card[data-kind="entry"] .post-text h2,
.post-card[data-kind="entry"] .post-text h3,
.post-card[data-kind="entry"] .post-text h4 {
    font-family: 'Anybody', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.post-card[data-kind="entry"] .post-text h1:first-child,
.post-card[data-kind="entry"] .post-text h2:first-child,
.post-card[data-kind="entry"] .post-text h3:first-child {
    margin-top: 0;
}

.post-card[data-kind="entry"] .post-text h2 { font-size: 1.25rem; }
.post-card[data-kind="entry"] .post-text h3 { font-size: 1.125rem; }
.post-card[data-kind="entry"] .post-text h4 { font-size: 1rem; }

/* Lists */
.post-card[data-kind="entry"] .post-text ul,
.post-card[data-kind="entry"] .post-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-card[data-kind="entry"] .post-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.post-card[data-kind="entry"] .post-text li:last-child {
    margin-bottom: 0;
}

.post-card[data-kind="entry"] .post-text ul {
    list-style-type: disc;
}

.post-card[data-kind="entry"] .post-text ul ul {
    list-style-type: circle;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.post-card[data-kind="entry"] .post-text ol {
    list-style-type: decimal;
}

/* Blockquotes */
.post-card[data-kind="entry"] .post-text blockquote {
    border-left: 3px solid var(--warm-orange);
    padding: 0.5rem 0 0.5rem 1.25rem;
    margin: 1.25rem 0;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    background: rgba(255, 140, 66, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
}

.post-card[data-kind="entry"] .post-text blockquote p {
    margin-bottom: 0.5rem;
}

.post-card[data-kind="entry"] .post-text blockquote p:last-child {
    margin-bottom: 0;
}

/* Code */
.post-card[data-kind="entry"] .post-text code {
    font-family: 'Trispace', monospace;
    font-size: 0.875em;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.15em 0.4em;
    border-radius: 0.25rem;
    color: var(--cyan-accent);
}

.post-card[data-kind="entry"] .post-text pre {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.post-card[data-kind="entry"] .post-text pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* Horizontal rules */
.post-card[data-kind="entry"] .post-text hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 1.5rem 0;
}

/* Links */
.post-card[data-kind="entry"] .post-text a {
    color: var(--cyan-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.post-card[data-kind="entry"] .post-text a:hover {
    border-bottom-color: var(--cyan-accent);
}

/* Images within entries */
.post-card[data-kind="entry"] .post-text img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

/* Strong/Bold */
.post-card[data-kind="entry"] .post-text strong,
.post-card[data-kind="entry"] .post-text b {
    font-weight: 600;
    color: white;
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.article-meta .word-count,
.article-meta .reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.article-meta .meta-divider {
    color: rgba(255, 255, 255, 0.2);
}

.article-meta .icon {
    opacity: 0.6;
}

.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.reading-time .icon {
    opacity: 0.6;
}

/* Post reading time on detail page */
.post-reading-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-left: 0.25rem;
}

/* Review Cards */
.review-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-card .review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.review-rating {
    display: flex;
    gap: 0.15rem;
}

.review-rating .star-empty,
.review-rating-large .star-empty {
    opacity: 0.4;
}

.star-icon {
    vertical-align: middle;
}

.star-icon.star-empty {
    opacity: 0.5;
}

.recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    background: rgba(74, 229, 74, 0.15);
    border: 1px solid rgba(74, 229, 74, 0.3);
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4AE54A;
}

.recommended-badge .icon {
    margin-right: 0;
}

/* Recipe Cards */
.recipe-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recipe-photo {
    border-radius: 0.75rem;
    overflow: hidden;
}

.recipe-photo img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.recipe-stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.recipe-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.recipe-print-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
}

.recipe-print-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.recipe-print-btn .icon {
    margin-right: 0;
}

/* ============================================================================
   19. INTERACTION CARDS (Like, Bookmark, Reply, RSVP)
   ============================================================================ */

.interaction-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.interaction-target {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.interaction-action {
    font-family: 'Trispace', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.interaction-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--cyan-accent);
    text-decoration: none;
    transition: color 0.2s;
    min-width: 0;
}

.interaction-link:hover {
    color: white;
}

.interaction-title {
    font-family: 'Sono', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    word-break: break-word;
}

.interaction-link .external-icon {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.interaction-link:hover .external-icon {
    opacity: 1;
}

.interaction-comment {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 0.75rem;
    border-left: 2px solid rgba(255, 107, 107, 0.3);
}

/* Like card - heart accent */
.post-card[data-kind="like"] .interaction-action {
    color: rgba(255, 107, 107, 0.7);
}

.post-card[data-kind="like"] .interaction-link {
    color: #ff6b6b;
}

.post-card[data-kind="like"] .interaction-link:hover {
    color: white;
}

/* Bookmark card - gold accent */
.post-card[data-kind="bookmark"] .interaction-action {
    color: rgba(255, 209, 102, 0.7);
}

.post-card[data-kind="bookmark"] .interaction-link {
    color: #FFD166;
}

.post-card[data-kind="bookmark"] .interaction-link:hover {
    color: white;
}

/* Reply Cards */
.reply-card .interaction-action {
    color: rgba(0, 212, 229, 0.6);
}

.reply-card .interaction-link {
    color: var(--cyan-accent);
}

.reply-content {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 0.5rem;
    border-left: 3px solid rgba(0, 212, 229, 0.2);
    padding-left: 1rem;
    margin-left: 0;
}

.reply-card-enhanced {
    position: relative;
    padding-left: 1rem;
}

.reply-context {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.reply-line {
    width: 3px;
    background: linear-gradient(to bottom, #00D4E5, transparent);
    border-radius: 2px;
    flex-shrink: 0;
}

.reply-target {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.reply-link {
    color: #00D4E5;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

.reply-link:hover {
    text-decoration: underline;
}

/* RSVP Cards */
.rsvp-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rsvp-response {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 140, 66, 0.15);
    border-radius: 2rem;
    width: fit-content;
}

.rsvp-response.rsvp-yes {
    background: rgba(74, 229, 74, 0.15);
}

.rsvp-response.rsvp-no {
    background: rgba(255, 107, 107, 0.15);
}

.rsvp-response.rsvp-maybe {
    background: rgba(255, 217, 61, 0.15);
}

.rsvp-emoji {
    font-size: 1.25rem;
}

.rsvp-text {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rsvp-event {
    margin-top: 0.25rem;
}

.rsvp-event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warm-orange);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.rsvp-event-link:hover {
    color: white;
}

.rsvp-event-name {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.rsvp-event-link .external-icon {
    opacity: 0.5;
}

.rsvp-event-link:hover .external-icon {
    opacity: 1;
}

.rsvp-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Unfurl Cards for Likes/Bookmarks */
.unfurl-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.unfurl-action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.unfurl-preview {
    display: flex;
    gap: 1rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.unfurl-preview:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.unfurl-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.unfurl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unfurl-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.unfurl-site {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

.unfurl-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.unfurl-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.unfurl-comment {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    padding-left: 0.75rem;
    border-left: 2px solid rgba(255, 107, 107, 0.3);
}

/* ============================================================================
   20. WELCOME CARD
   ============================================================================ */

.welcome-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    border: 2px solid transparent;
    background: 
        linear-gradient(rgba(20, 20, 30, 0.95), rgba(20, 20, 30, 0.95)) padding-box,
        linear-gradient(135deg, #FFD93D, #FF8C42, #E84A8A, #00D4E5) border-box;
    box-shadow: 
        0 0 60px rgba(232, 74, 138, 0.15),
        0 0 100px rgba(255, 140, 66, 0.1);
}

.welcome-card .avatar-link {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    perspective: 1000px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
}

.welcome-card .avatar-flipper {
    width: 130px;
    height: 130px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-card .avatar-flipper.flipped {
    transform: rotateY(180deg);
}

.welcome-card .avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(232, 74, 138, 0.4);
    box-shadow: 0 0 25px rgba(232, 74, 138, 0.3), 0 0 50px rgba(255, 140, 66, 0.15);
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.welcome-card .avatar-front {
    z-index: 2;
}

.welcome-card .avatar-back {
    transform: rotateY(180deg);
    z-index: 1;
    white-space: nowrap;
}

.welcome-card .avatar:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.welcome-card .info {
    flex: 1;
    min-width: 0;
}

.welcome-card .p-name {
    font-family: 'Anybody', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(90deg, #FFD93D, #FF8C42, #E84A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.welcome-card .p-note {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.welcome-card .about-link {
    color: #00D4E5;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.welcome-card .about-link:hover {
    color: #FFD93D;
}

.welcome-card .welcome-detail {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.75rem 0;
}

.welcome-card .welcome-detail strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.welcome-card .social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.welcome-card .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
}

.welcome-card .social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.welcome-card .social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================================================
   21. SYNDICATION
   ============================================================================ */

.syndication-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.syndication-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.syndication-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.syndication-icon {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.5);
    transition: fill 0.2s;
}

.syndication-link:hover .syndication-icon {
    fill: rgba(255, 255, 255, 0.9);
}

/* Platform-specific colors on hover */
.syndication-link:hover .syndication-icon.bluesky { fill: #0085ff; }
.syndication-link:hover .syndication-icon.mastodon { fill: #6364FF; }
.syndication-link:hover .syndication-icon.twitter { fill: #1DA1F2; }
.syndication-link:hover .syndication-icon.microblog { fill: #FF8800; }
.syndication-link:hover .syndication-icon.swarm { fill: #F94877; }
.syndication-link:hover .syndication-icon.trakt { fill: #ED1C24; }

/* Syndication Section on Detail Pages */
.syndication-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.syndication-section h2 {
    font-family: "Anybody", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan-accent);
    margin-bottom: 1rem;
}

.syndication-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.syndication-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.syndication-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.syndication-icon-large {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.syndication-item:hover .syndication-icon-large.bluesky { fill: #0085ff; }
.syndication-item:hover .syndication-icon-large.mastodon { fill: #6364FF; }
.syndication-item:hover .syndication-icon-large.twitter { fill: #1DA1F2; }
.syndication-item:hover .syndication-icon-large.microblog { fill: #FF8800; }
.syndication-item:hover .syndication-icon-large.swarm { fill: #F94877; }
.syndication-item:hover .syndication-icon-large.trakt { fill: #ED1C24; }

/* ============================================================================
   22. LOCATION
   ============================================================================ */

/* Location Panel (expandable) */
.location-panel {
    margin-top: 1.5rem;
    background: rgba(179, 136, 255, 0.08);
    border: 1px solid rgba(179, 136, 255, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.location-header:hover {
    background: rgba(179, 136, 255, 0.1);
}

.location-title {
    flex: 1;
    color: #B388FF;
    font-weight: 500;
}

.location-header .chevron {
    transition: transform 0.3s;
    opacity: 0.5;
}

.location-panel.expanded .location-header .chevron {
    transform: rotate(180deg);
}

.location-details {
    display: none;
    padding: 0 1rem 1rem;
    animation: slideDown 0.3s ease;
}

.location-panel.expanded .location-details {
    display: block;
}

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

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.location-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-stat .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

.location-stat .stat-value {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.location-mini-map {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Author Location Panel (post detail) */
.author-location-panel {
    margin: 1.5rem 0;
    background: rgba(179, 136, 255, 0.08);
    border: 1px solid rgba(179, 136, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
}

.location-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #B388FF;
    margin: 0 0 1rem 0;
}

.author-location-map {
    border-radius: 0.75rem;
    overflow: hidden;
    height: 300px;
}

/* Mini-map container */
#location-minimap-container {
    position: fixed;
    bottom: 1.5rem;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

#location-minimap-container.hidden {
    display: none;
}

#minimap-location-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: rgba(30, 30, 50, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(179, 136, 255, 0.3);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#minimap-location-pill .icon {
    flex-shrink: 0;
}

#location-minimap-container #location-minimap {
    position: relative;
    bottom: auto;
    right: auto;
    width: 200px;
    height: 150px;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(179, 136, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: #1a1a2e;
    transition: width 0.3s ease, height 0.3s ease;
}

#location-minimap-container #location-minimap:hover {
    width: 320px;
    height: 240px;
}

#location-minimap-container.no-location #location-minimap {
    filter: grayscale(100%);
    opacity: 0.5;
}

/* ============================================================================
   23. COMMENTS & LIKES SECTIONS
   ============================================================================ */

.comments-section,
.likes-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-section h2,
.likes-section h2 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--warm-orange);
    margin-bottom: 1rem;
}

.comment {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.comment-author-name {
    font-weight: 600;
    color: #fff;
}

.comment-source {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.source-mastodon { color: #6364FF; }
.source-bluesky { color: #0085ff; }
.source-twitter { color: #1DA1F2; }
.source-microblog { color: #FF8800; }

.comment-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.comment-link:hover {
    opacity: 1;
}

.comment-content {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.comment-content a {
    color: var(--cyan-accent);
}

.comment-content img {
    max-width: 100%;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

/* Likes */
.likes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.like-avatar {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.like-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced Likes Section */
.likes-list-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.like-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: row;
}

.like-item .like-avatar,
.like-item .like-avatar-placeholder {
    flex-shrink: 0;
}

.like-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.likes-section .like-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem 0.4rem 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.2s;
    max-width: 200px;
}

.likes-section .like-item:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.likes-section .like-item .like-avatar,
.likes-section .like-item .avatar-initials {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.6rem !important;
}

.likes-section .like-item .like-avatar {
    object-fit: cover;
}

.likes-section .like-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    overflow: hidden;
}

.likes-section .like-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.likes-section .like-source {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.like-avatar-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.like-name {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

.like-source {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Avatar initials - perfect circles */
.avatar-initials {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--warm-orange), var(--vibrant-magenta));
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.comment-author .avatar-initials {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
}

/* ============================================================================
   24. UTILITIES & ICONS
   ============================================================================ */

/* Lucide Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.35rem;
    flex-shrink: 0;
}

.post-type .icon {
    vertical-align: -2px;
}

.action-btn .icon {
    vertical-align: -3px;
    margin-right: 0.25rem;
}

.month-summary-icon .icon {
    margin: 0;
    vertical-align: middle;
}

/* Trispace for data, stats, and accents */
.stat-count,
.year-stat-count,
.post-time,
.post-type,
.timeline-track-label,
.media-meta,
.month-summary-subtitle,
.year-summary-meta {
    font-family: 'Trispace', monospace;
}

/* ============================================================================
   25. POST DETAIL PAGE
   ============================================================================ */

.post-detail-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 5rem 2rem 120px 2rem;
}

.post-detail-page.photo-detail {
    max-width: 1200px;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--cyan-accent);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.post-detail {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
}

.post-detail .post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.post-detail .post-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.post-detail .post-title {
    font-family: 'Anybody', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

/* Photo gallery in detail view */
.post-photos-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 1rem;
    align-items: center;
}

.post-photos-gallery .gallery-photo {
    border-radius: 1rem;
    cursor: pointer;
    overflow: hidden;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.post-photos-gallery .gallery-photo img {
    border-radius: 1rem;
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    transition: transform 0.2s, opacity 0.2s;
}

.post-photos-gallery .gallery-photo:hover img {
    opacity: 0.95;
    transform: scale(1.01);
}

.post-photos {
    margin: 1.5rem 0;
}

.post-photos img {
    max-width: 100%;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

/* Post body - consistent font with timeline */
.post-body {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.post-body p {
    margin-bottom: 1rem;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.post-body a {
    color: var(--cyan-accent);
    text-decoration: none;
}

.post-body a:hover {
    text-decoration: underline;
}

.post-body code {
    font-family: "Sono", monospace;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.15em 0.4em;
    border-radius: 0.25rem;
    color: var(--sunset-yellow);
}

.post-body pre {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-body pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.post-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--warm-orange);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.post-body ul,
.post-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-body ul { list-style-type: disc; }
.post-body ol { list-style-type: decimal; }

.post-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.post-body li::marker {
    color: var(--warm-orange);
}

.post-location-detail {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Reply/Like/RSVP detail styles */
.interaction-detail {
    margin: 1rem 0 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border-left: 3px solid var(--cyan-accent);
}

.interaction-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.interaction-label {
    font-family: 'Trispace', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.interaction-target-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan-accent);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-word;
}

.interaction-target-link:hover {
    color: white;
}

.interaction-target-link .icon {
    flex-shrink: 0;
    opacity: 0.6;
}

.interaction-target-link:hover .icon {
    opacity: 1;
}

.rsvp-detail {
    border-left-color: var(--warm-orange);
}

.interaction-title-static {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Review detail styles */
.review-detail {
    margin-bottom: 1.5rem;
}

.review-rating-large {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-rating-large .star-empty {
    opacity: 0.3;
}

.review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.review-item-photo {
    max-width: 200px;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.review-item-name {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan-accent);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.review-item-name:hover {
    color: white;
}

/* Recipe detail styles */
.recipe-detail {
    margin-bottom: 1.5rem;
}

.recipe-hero-photo {
    margin-bottom: 1.5rem;
}

.recipe-hero-photo img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.recipe-meta-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.recipe-meta-detail .recipe-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-ingredients-section h3 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--warm-orange);
    margin-bottom: 0.75rem;
}

.recipe-ingredients-list {
    list-style: disc;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.recipe-ingredients-list li {
    margin-bottom: 0.35rem;
}

/* ============================================================================
   26. MEDIA QUERIES (Consolidated)
   ============================================================================ */

@media (max-width: 1200px) {
    .timeline-container {
        width: 160px;
        padding: 1rem 2rem;
    }
    
    .timeline-tracks {
        gap: 12px;
    }
    
    .content-stream {
        max-width: 900px;
    }
}

@media (max-width: 1024px) {
    .timeline-container {
        display: none;
    }

    .content-stream {
        padding: 2rem;
        max-width: 800px;
    }
}


/* ============================================================================
   LOGIN PAGE
   ============================================================================ */

/* Hide nav on login page - scoped to login template */
.login-page .bottom-nav-container {
    display: none !important;
}
.login-page #location-minimap-container {
    display: none !important;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Trispace', monospace;
    font-size: 0.9rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Trispace', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-family: 'Sono', monospace;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: var(--cyan-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 229, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--warm-orange);
    cursor: pointer;
}

.checkbox-group label {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Trispace', monospace;
    font-size: 0.85rem;
    cursor: pointer;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--warm-orange), var(--vibrant-magenta));
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-family: 'Anybody', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.flash-message {
    padding: 0.875rem 1rem;
    background: rgba(255, 100, 100, 0.15);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 0.75rem;
    color: #ff8888;
    font-family: 'Trispace', monospace;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-page .back-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Trispace', monospace;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.login-page .back-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .content-stream {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .wormhole-container {
        display: none;
    }

    .header {
        padding: 1rem;
    }

    .bottom-nav-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-item .nav-label {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        padding: 2px;
        gap: 2px;
    }
    
    #location-minimap-container {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .welcome-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .welcome-card .social-links {
        justify-content: center;
    }
    
    .watching-detail,
    .listen-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .watching-detail .media-detail-poster,
    .watching-detail .watching-poster,
    .listen-detail .media-detail-poster {
        width: 140px !important;
        margin: 0 auto 1rem;
    }
    
    .watching-meta-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Gallery responsive */
    .gallery-page {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    /* Auth responsive */
    .header-auth {
        right: 1rem;
    }
    
    .auth-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .auth-user {
        display: none;
    }
    
    /* Header nav responsive */
    .header-nav {
        position: static;
        transform: none;
    }
    
    .search-input {
        width: 100px;
    }
}
/* ============================================================================
   28. SUMMARY PAGES (Year/Month/On This Day)
   ============================================================================ */

/* Hide bottom nav and filter on summary pages */
/* Bottom nav shown on all pages via breadcrumbs */

.archive-detail-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 2rem 6rem 2rem;
}

.archive-day-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 2rem 2rem 2rem;
}

.archive-day-page h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

/* Archive Browser Page */
.archive-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem 6rem 2rem;
}

.archive-page h1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.archive-page h1 .header-icon {
    -webkit-text-fill-color: initial;
    opacity: 0.8;
}

.archive-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.archive-year {
    margin-bottom: 3rem;
}

.archive-year h2 {
    font-family: 'Anybody', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.archive-year h2 a {
    color: var(--cyan-accent);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.archive-year h2 a::after {
    content: "→";
    font-size: 0.7em;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s;
}

.archive-year h2 a:hover {
    color: white;
}

.archive-year h2 a:hover::after {
    opacity: 0.6;
    transform: translateX(0);
}

.archive-months {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.archive-month {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem;
}

.archive-month h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.archive-month h3 a {
    color: var(--warm-orange);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.archive-month h3 a::after {
    content: "→";
    font-size: 0.8em;
    opacity: 0;
    transform: translateX(-3px);
    transition: all 0.2s;
}

.archive-month h3 a:hover {
    color: white;
}

.archive-month h3 a:hover::after {
    opacity: 0.6;
    transform: translateX(0);
}

.archive-days {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
    gap: 0.375rem;
}

.archive-day {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s;
}

.archive-day:hover {
    background: var(--vibrant-magenta);
}

.summary-page {
    padding-top: 0;
    padding-bottom: 6rem;
}

.summary-page .back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--cyan-accent);
    text-decoration: none;
}

.summary-page .back-link:hover {
    text-decoration: underline;
}

.no-content-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-content-message p {
    margin: 0;
    font-size: 1.125rem;
}

.no-content-hint {
    margin-top: 0.5rem !important;
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.4);
}

.no-results-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.no-results-message p {
    margin: 0;
    font-size: 1.125rem;
}

.no-results-message strong {
    color: rgba(255, 255, 255, 0.8);
}

.no-results-hint {
    margin-top: 0.5rem !important;
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.4);
}

.no-results-hint a {
    color: var(--cyan-accent);
    text-decoration: none;
}

.no-results-hint a:hover {
    text-decoration: underline;
}

.review-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.summary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cyan-accent);
    text-decoration: none;
    transition: all 0.2s;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--cyan-accent);
    transform: scale(1.05);
    text-decoration: none;
}

.nav-arrow.disabled {
    opacity: 0.2;
    pointer-events: none;
}

.review-title {
    font-family: "Anybody", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
}

.review-title.title-large {
    font-size: 4rem;
}

.review-label {
    font-family: "Trispace", monospace;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.5rem 0;
}

.review-total {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.stats-overview {
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.stat-filter-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 80px;
    color: white;
}

.stat-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(232, 74, 138, 0.2));
    border-color: var(--warm-orange);
}

.stat-filter-btn .stat-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Sono", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.stat-filter-btn .stat-icon {
    flex-shrink: 0;
}

.stat-filter-btn .stat-count {
    font-family: "Trispace", monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Month Navigator */
.months-nav {
    margin-bottom: 2rem;
}

.months-nav h2 {
    font-family: "Anybody", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.months-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.month-chip {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Sono", sans-serif;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.2s;
}

.month-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan-accent);
    color: white;
    text-decoration: none;
}

.month-chip-count {
    font-family: "Trispace", monospace;
    font-size: 0.6875rem;
    color: var(--cyan-accent);
}

/* Day/Year separator in summary streams */
.archive-day-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}

.archive-day-separator:first-child {
    margin-top: 0;
}

.archive-day-separator .label {
    font-family: "Anybody", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--sunset-yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.archive-day-separator .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
}

.summary-page .posts-stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filterable-post {
    transition: opacity 0.2s, transform 0.2s;
}

.loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Sono", sans-serif;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--cyan-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================================
   27. PRINT STYLES
   ============================================================================ */

@media print {
    /* Hide non-essential elements */
    .header,
    .bottom-nav-container,
    .timeline-container,
    .back-link,
    .post-footer,
    .syndication-section,
    .comments-section,
    .likes-section,
    .location-panel,
    .bg-animation,
    .blob,
    .recipe-print-btn {
        display: none !important;
    }
    
    /* Reset backgrounds for print */
    body {
        background: white !important;
        color: black !important;
    }
    
    .post-detail-page,
    .post-detail {
        background: white !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    /* Recipe-specific print styles */
    .recipe-detail {
        page-break-inside: avoid;
    }
    
    .recipe-hero-photo img {
        max-height: 300px !important;
        page-break-inside: avoid;
    }
    
    .recipe-meta-detail {
        color: #333 !important;
    }
    
    .recipe-ingredients-section h3 {
        color: #333 !important;
    }
    
    .recipe-ingredients-list {
        color: #333 !important;
    }
    
    .post-detail .post-title {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
    
    .post-body {
        color: #333 !important;
    }
    
    .post-body a {
        color: #333 !important;
        text-decoration: underline !important;
    }
    
    /* Ensure recipes print on one page when possible */
    .recipe-card,
    .recipe-detail {
        page-break-inside: avoid;
    }
    
    /* Add recipe URL at bottom when printed */
    .post-detail::after {
        content: "Printed from cleverdevil.io";
        display: block;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid #ccc;
        font-size: 0.8rem;
        color: #666;
        text-align: center;
    }
}

/* ============================================================================
   ON THIS DAY (Embedded Sliding Page)
   ============================================================================ */

.on-this-day-page {
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
    margin-top: 1rem;
}

.otd-header {
    text-align: center;
    margin-bottom: 2rem;
}

.otd-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.otd-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.25rem;
}

.otd-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.otd-title-group {
    text-align: center;
}

.otd-title {
    font-family: "Anybody", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
}

.otd-subtitle {
    font-family: "Trispace", monospace;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0 0 0;
}

.otd-count {
    font-family: 'Sono', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0 0 0;
}

.otd-stream {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.otd-year-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    margin-top: 1rem;
}

.otd-year-separator:first-child {
    margin-top: 0;
}

.otd-year-separator .year {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
}

.otd-year-separator .ago {
    font-family: 'Sono', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.otd-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.otd-empty img {
    opacity: 0.3;
}

/* ============================================================================
   29. EXTRACTED INLINE STYLES
   ============================================================================ */

/* Hidden state - used for elements initially hidden */
.is-hidden {
    display: none !important;
}

/* Stat filter button colors - "All" button */
.stat-filter-all-label {
    color: #00D4E5;
}

/* No content/empty state icon */
.no-content-icon {
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* Load error message */
.load-error-message {
    color: rgba(255, 255, 255, 0.5);
}

/* Checkin map inline styles extracted */
.checkin-map-card {
    height: 180px;
    border-radius: 0.75rem;
    margin-top: 0.75rem;
}

/* Location map inline styles extracted */
.location-map-inline {
    height: 150px;
    border-radius: 0.5rem;
}

/* Pages wrapper scrollable variant */
.pages-wrapper-scroll {
    overflow-y: auto;
}

/* Icon text-fill override for admin */
.icon-text-fill-initial {
    -webkit-text-fill-color: initial;
}

/* Avatar initials fallback - inline hidden */
.avatar-initials-hidden {
    display: none;
}

/* Avatar initials like - small variant */
.avatar-initials-like-small {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.65rem !important;
}

/* Login icon spacing */
.login-icon-spaced {
    margin-right: 0.25rem;
}

/* Minimap inner container */
.minimap-inner {
    width: 100%;
    height: 100%;
}

/* Stat filter kind label colors */
.stat-kind-label { color: rgba(255, 255, 255, 0.8); }
.stat-kind-label-status { color: #FFD93D; }
.stat-kind-label-photo { color: #4AE54A; }
.stat-kind-label-watching { color: #E84A8A; }
.stat-kind-label-listen { color: #00D4E5; }
.stat-kind-label-checkin { color: #B388FF; }
.stat-kind-label-entry { color: #FF8C42; }
.stat-kind-label-like { color: #ff6b6b; }
.stat-kind-label-bookmark { color: #FFD166; }
.stat-kind-label-reply { color: #00D4E5; }
.stat-kind-label-rsvp { color: #FF8C42; }
.stat-kind-label-play { color: #4AE54A; }
.stat-kind-label-review { color: #FFD93D; }
.stat-kind-label-recipe { color: #FF8C42; }

/* Leaflet popup content styles - extracted from JS */
.leaflet-popup-content-styled {
    font-family: sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.leaflet-popup-content-detailed {
    font-size: 13px;
    line-height: 1.6;
    min-width: 180px;
}

/* No results message */
.no-results-icon {
    opacity: 0.3;
    margin-bottom: 1rem;
}
.icon-color-fix { -webkit-text-fill-color: initial; }

/* ==========================================================================
   Admin Panel Styles
   ========================================================================== */

/* Hide bottom nav on admin page */
.admin-page .bottom-nav-container {
    display: none !important;
}

.admin-page #location-minimap-container {
    display: none !important;
}

.admin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5.5rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 100px);
}

.admin-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.admin-header h1 {
    font-family: "Anybody", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-header p {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Trispace", monospace;
    font-size: 0.9rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}



    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.admin-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.admin-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.admin-card-icon.publish {
    background: linear-gradient(135deg, var(--warm-orange), var(--vibrant-magenta));
}

.admin-card-icon.media {
    background: linear-gradient(135deg, var(--cyan-accent), var(--electric-blue));
}

.admin-card-icon.settings {
    background: linear-gradient(135deg, #a855f7, #6366f1);
}

.admin-card-icon.data {
    background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.admin-card h3 {
    font-family: "Anybody", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.admin-card p {
    color: rgba(255, 255, 255, 0.5);
    font-family: "Trispace", monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

.admin-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-card.disabled:hover {
    transform: none;
    box-shadow: none;
}

.admin-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.75rem;
    font-family: "Trispace", monospace;
}

.admin-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
}

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

.stat-value {
    font-family: "Anybody", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-family: "Trispace", monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

@media (max-width: 600px) {
    .admin-container {
        padding: 1rem;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   IndieAuth Authorization Page Styles
   ========================================================================== */

/* Hide bottom nav on auth page */
.indieauth-page .bottom-nav-container {
    display: none !important;
}

.indieauth-page #location-minimap-container {
    display: none !important;
}

.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-family: "Anybody", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--sunset-yellow), var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-header p {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Trispace", monospace;
    font-size: 0.9rem;
}

.client-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.client-info code {
    color: var(--cyan-accent);
    font-family: "Sono", monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.scope-list {
    margin-bottom: 1.5rem;
}

.scope-list h3 {
    font-family: "Anybody", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scope-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.scope-list li {
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-family: "Sono", monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-form .form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Trispace", monospace;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-form .form-group input[type="password"] {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-family: "Sono", monospace;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.auth-form .form-group input[type="password"]:focus {
    outline: none;
    border-color: var(--cyan-accent);
    background: rgba(255, 255, 255, 0.08);
}

.approve-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    border: none;
    border-radius: 0.75rem;
    color: white;
    font-family: "Anybody", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.approve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.me-info {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-family: "Trispace", monospace;
    font-size: 0.8rem;
}

.me-info code {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Error Pages (404, 500)
   ========================================================================== */

.error-page .bottom-nav-container {
    display: none !important;
}

.error-page #location-minimap-container {
    display: none !important;
}

.error-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 2rem;
}

.error-card {
    text-align: center;
    max-width: 480px;
    padding: 3rem 2rem;
}

.error-icon {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.error-card h1 {
    font-family: "Anybody", sans-serif;
    font-size: 5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, var(--warm-orange), var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-card h2 {
    font-family: "Anybody", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0.5rem 0 1rem;
}

.error-card p {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Trispace", monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-family: "Anybody", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.error-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.error-btn.primary {
    background: linear-gradient(135deg, var(--warm-orange), var(--vibrant-magenta));
    border: none;
}

.error-btn.primary:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.error-details {
    margin: 2rem 0;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
}

.error-details h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0;
    font-family: "Anybody", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.error-trace {
    margin: 0;
    padding: 1rem;
    font-family: "Sono", monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 300px;
    overflow-y: auto;
}

/* =============================================================================
   NOW PAGE STYLES
   ============================================================================= */

.now-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.now-page h1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Anybody", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.now-page h1 .icon {
    flex-shrink: 0;
}

.now-intro {
    font-family: 'Exo 2', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.now-intro a {
    color: var(--cyan-accent);
    text-decoration: none;
}

.now-intro a:hover {
    text-decoration: underline;
}

.now-section {
    margin-bottom: 2rem;
}

.now-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Anybody", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.now-section h2 .icon {
    flex-shrink: 0;
}

.now-section p {
    font-family: 'Exo 2', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.now-empty {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Location Map */
.now-map-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.now-map {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
}

.now-location-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

.location-city {
    color: white;
    font-weight: 500;
}

.location-wifi,
.location-battery {
    color: rgba(255, 255, 255, 0.6);
}

/* Pulsing location marker */
.now-location-marker {
    position: relative;
}

.now-location-marker .pulse-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--cyan-accent);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.now-location-marker .pulse-core {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cyan-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan-accent);
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Media Grid (for watching/listening/playing) */
.now-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.now-media-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.now-media-item:hover {
    transform: translateY(-4px);
}

.now-media-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.now-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.now-media-info {
    padding: 0.5rem 0;
}

.now-media-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.now-media-count {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* Podcast grid - square images */
.now-podcasts .now-media-poster {
    aspect-ratio: 1;
}

/* Games grid - wider images */
.now-games .now-media-poster {
    aspect-ratio: 16/9;
}

/* Interests list */
.now-interests-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.now-interest-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.interest-icon {
    flex-shrink: 0;
    opacity: 0.8;
}

.interest-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.interest-note {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .now-page {
        padding: 1.5rem 1rem;
    }
    
    .now-page h1 {
        font-size: 1.75rem;
    }
    
    .now-media-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .now-location-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.now-media-item {
    text-align: center;
}

.now-media-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    display: block;
}

.now-media-link:hover {
    transform: translateY(-2px);
}

.now-media-link:hover .now-media-title {
    color: var(--cyan-accent);
}

/* Sports Section */
.now-sports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.now-sports-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.now-sports-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.now-sports-logo {
    width: 112px;
    height: 112px;
    object-fit: contain;
    flex-shrink: 0;
}

.now-sports-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.now-sports-name {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.now-sports-league {
    font-family: 'Exo 2', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Following Section (legacy) */
.now-following .interest-logo {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Building Section */
.now-building-intro {
    color: var(--text-secondary, #aaa);
    margin-bottom: 1rem;
}

.now-building-intro a {
    color: var(--cyan-accent);
}

.now-building-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1.5rem;
}

.now-building-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.now-building-item .building-icon {
    margin-top: 3px;
    flex-shrink: 0;
}

.building-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.building-name {
    color: var(--cyan-accent);
    font-weight: 600;
    text-decoration: none;
}

a.building-name:hover {
    text-decoration: underline;
}

span.building-name {
    color: var(--text-primary, #fff);
}

.building-desc {
    color: var(--text-secondary, #aaa);
    font-size: 0.9rem;
}

/* Map popup styling */
.now-popup .leaflet-popup-content-wrapper {
    background: var(--card-bg, #1a1a2e);
    color: var(--text-primary, #fff);
    border-radius: 8px;
    border: 1px solid var(--border-color, #333);
}

.now-popup .leaflet-popup-tip {
    background: var(--card-bg, #1a1a2e);
}

.now-map-popup {
    padding: 0.25rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.now-map-popup strong {
    color: var(--cyan-accent);
}

/* Fix Leaflet div-icon defaults conflicting with custom marker */
.now-location-marker.leaflet-div-icon,
.leaflet-div-icon.now-location-marker {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Building sub-headers */
.now-building-subhead {
    font-family: 'Anybody', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1.25rem 0 0.75rem;
}

.now-building-subhead:first-of-type {
    margin-top: 0;
}

/* Exo 2 for building/following body text */
.now-interests-list,
.now-building-list {
    font-family: 'Exo 2', sans-serif;
}

.now-media-info {
    font-family: 'Exo 2', sans-serif;
}

/* Sports grid responsive */
@media (max-width: 480px) {
    .now-sports-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   SUMMARY MAP
   ============================================================================ */

.summary-map-section {
    margin: 1.5rem 0;
    background: rgba(0, 212, 229, 0.05);
    border: 1px solid rgba(0, 212, 229, 0.15);
    border-radius: 1rem;
    overflow: hidden;
}

.summary-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.summary-map-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cyan-accent, #00D4E5);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-map-toggles {
    display: flex;
    gap: 1rem;
}

.map-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.map-toggle input[type="checkbox"] {
    accent-color: #00D4E5;
    width: 14px;
    height: 14px;
}

.toggle-label {
    user-select: none;
}

.summary-map-container {
    height: 400px;
    width: 100%;
}

.summary-map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .summary-map-container {
        height: 300px;
    }
    
    .summary-map-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== Webmentions (webmention.io) ========== */
.webmentions-section {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.wm-group {
    margin-bottom: 1.5rem;
}

.wm-group h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wm-group h2 .wm-count {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Facepile for likes/reposts */
.wm-facepile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.wm-face {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.15s ease;
}

.wm-face:hover {
    transform: scale(1.15);
}

.wm-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wm-initials {
    width: 100%;
    height: 100%;
    background: rgba(179, 136, 255, 0.3);
    color: #B388FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Replies */
.wm-reply {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
}

.wm-reply-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.wm-reply-author {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: inherit;
}

.wm-reply-author:hover .wm-reply-name {
    color: #B388FF;
}

.wm-reply-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.wm-reply-name {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.15s;
}

.wm-reply-date {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-left: auto;
}

.wm-reply-link {
    opacity: 0.4;
    transition: opacity 0.15s;
}

.wm-reply-link:hover {
    opacity: 1;
}

.wm-reply-content {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* Mentions */
.wm-mention {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wm-mention:last-child {
    border-bottom: none;
}

.wm-mention a {
    color: #B388FF;
    text-decoration: none;
    font-weight: 500;
}

.wm-mention a:hover {
    text-decoration: underline;
}

.wm-mention-text {
    opacity: 0.7;
}

/* Review summary */
.review-summary {
    font-size: 1.05rem;
    font-style: italic;
    opacity: 0.8;
    margin: 0.75rem 0;
    line-height: 1.5;
}

/* ===== Compose Page ===== */
.compose-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
}

.compose-header {
    margin-bottom: 1.5rem;
}

.compose-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}
.compose-back:hover { color: #FF6B35; }

.compose-header h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compose-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.compose-tab {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}
.compose-tab:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.compose-tab.active {
    background: rgba(255,107,53,0.15);
    border-color: rgba(255,107,53,0.4);
    color: #FF6B35;
}
.compose-tab img { opacity: 0.8; }
.compose-tab.active img { opacity: 1; }

.compose-form { display: none; }
.compose-form.active { display: block; }

.compose-form-area {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.4rem;
}

.form-group label .required {
    color: #FF6B35;
}

.form-group label .hint {
    color: rgba(255,255,255,0.3);
    font-weight: 400;
    font-size: 0.75rem;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255,107,53,0.5);
}

.form-group textarea { resize: vertical; min-height: 80px; }
.form-group textarea.large { min-height: 200px; }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}
.form-group.half { flex: 1; }

/* Photo upload */
.photo-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.photo-upload-area:hover,
.photo-upload-area.dragover {
    border-color: rgba(255,107,53,0.4);
    background: rgba(255,107,53,0.05);
    color: rgba(255,255,255,0.7);
}

.photo-input { display: none; }

.photo-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.photo-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}
.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    padding: 0;
}

/* Star rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
}
.star-rating .star {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
}
.star-rating .star:hover,
.star-rating .star.hover { color: rgba(255,200,50,0.5); }
.star-rating .star.active { color: #FFC832; }
.star-rating .star:active { transform: scale(1.2); }

/* Syndication */
.compose-syndication {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.compose-syndication h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
}
.syndication-targets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.syndication-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.syndication-option:hover {
    background: rgba(255,255,255,0.07);
}
.syndication-option input[type="checkbox"] {
    accent-color: #FF6B35;
}
.syndication-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
}
.syndication-detail {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

/* Submit */
.compose-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}
.compose-submit {
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, #FF6B35, #e55a28);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.compose-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,107,53,0.3); }
.compose-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.submit-loading { display: inline-flex; align-items: center; gap: 0.5rem; }
.loading-spinner-small {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Messages */
.compose-message {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
}
.compose-message.error {
    background: rgba(255,50,50,0.12);
    border: 1px solid rgba(255,50,50,0.3);
    color: #ff8888;
}
.compose-message.success {
    background: rgba(50,255,100,0.12);
    border: 1px solid rgba(50,255,100,0.3);
    color: #88ff99;
}

/* Markdown preview */
.preview-toggle {
    float: right;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}
.preview-toggle:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.preview-toggle.active {
    background: rgba(255,107,53,0.15);
    border-color: rgba(255,107,53,0.4);
    color: #FF6B35;
}
.markdown-preview {
    min-height: 200px;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.9);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    overflow-y: auto;
}
.markdown-preview h1, .markdown-preview h2, .markdown-preview h3 {
    color: #fff;
    margin: 1.2em 0 0.6em;
    font-family: 'Anybody', sans-serif;
}
.markdown-preview h1 { font-size: 1.6rem; }
.markdown-preview h2 { font-size: 1.3rem; }
.markdown-preview h3 { font-size: 1.1rem; }
.markdown-preview p { margin: 0.8em 0; }
.markdown-preview a { color: #FF6B35; }
.markdown-preview code {
    background: rgba(255,255,255,0.08);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.85em;
}
.markdown-preview pre {
    background: rgba(0,0,0,0.4);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
}
.markdown-preview pre code {
    background: none;
    padding: 0;
}
.markdown-preview blockquote {
    border-left: 3px solid rgba(255,107,53,0.5);
    margin: 1em 0;
    padding: 0.5em 1em;
    color: rgba(255,255,255,0.7);
}
.markdown-preview ul, .markdown-preview ol {
    padding-left: 1.5em;
    margin: 0.8em 0;
}
.markdown-preview img {
    max-width: 100%;
    border-radius: 8px;
}
.markdown-preview table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}
.markdown-preview th, .markdown-preview td {
    padding: 0.5em 0.75em;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}
.markdown-preview th {
    background: rgba(255,255,255,0.05);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 600px) {
    .compose-container { padding: 1rem 1rem 4rem; }
    .compose-form-area { padding: 1rem; }
    .compose-header h1 { font-size: 1.4rem; }
    .form-row { flex-direction: column; gap: 0; }
}


/* ============================================================================
   Feeds Page
   ============================================================================ */

.feeds-page-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 8rem;
}

.feeds-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.feeds-header h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #FF9500, #FF6B00, var(--vibrant-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.75rem 0 0.5rem;
}

.feeds-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Sono', monospace;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feeds-section {
    margin-bottom: 2.5rem;
}

.feeds-section h2 {
    font-family: 'Trispace', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feeds-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Preset cards */
.feed-presets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.feed-preset-card {
    position: relative;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feed-preset-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.feed-preset-card.active {
    background: rgba(255, 150, 0, 0.1);
    border-color: rgba(255, 150, 0, 0.4);
}

.feed-preset-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.feed-preset-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin: 0;
}

.preset-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 0.65rem;
    font-family: 'Trispace', monospace;
    font-weight: 600;
    color: #FF9500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Kind toggles */
.feeds-kind-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.kind-toggle {
    cursor: pointer;
}

.kind-toggle input {
    display: none;
}

.kind-chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    font-family: 'Sono', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    user-select: none;
}

.kind-toggle input:checked + .kind-chip {
    background: rgba(255, 150, 0, 0.12);
    border-color: rgba(255, 150, 0, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.kind-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Feed URL cards */
.feed-url-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-url-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.feed-url-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.feed-url-header h3 {
    font-family: 'Trispace', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.feed-url-row {
    display: flex;
    gap: 0.5rem;
}

.feed-url-input {
    flex: 1;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Sono', monospace;
    font-size: 0.8rem;
    outline: none;
}

.feed-url-input:focus {
    border-color: rgba(255, 150, 0, 0.4);
}

.feed-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feed-copy-btn:hover {
    background: rgba(255, 150, 0, 0.2);
    border-color: rgba(255, 150, 0, 0.4);
}

.feed-copied-msg {
    text-align: center;
    color: #4AE54A;
    font-family: 'Trispace', monospace;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feed-copied-msg.show {
    opacity: 1;
}

/* Breadcrumb Navigation (non-main pages) */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: fit-content;
    margin: 0 auto;
}

.breadcrumb-nav::-webkit-scrollbar {
    display: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Trispace', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.breadcrumb-item:hover {
    color: white;
}

.breadcrumb-item img {
    opacity: 0.6;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Trispace', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}
/* ============================================================
   Admin Content Management
   ============================================================ */

.admin-content-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 5.5rem 1rem 2rem;
}

.admin-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.admin-content-header h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: background 0.15s;
}

.admin-btn:hover { background: rgba(255,255,255,0.15); }

.admin-btn-primary { background: rgba(255,107,53,0.25); border-color: rgba(255,107,53,0.4); }
.admin-btn-primary:hover { background: rgba(255,107,53,0.4); }

.admin-btn-danger { background: rgba(255,107,107,0.15); border-color: rgba(255,107,107,0.3); }
.admin-btn-danger:hover { background: rgba(255,107,107,0.3); }

.admin-btn-success { background: rgba(74,229,74,0.15); border-color: rgba(74,229,74,0.3); }
.admin-btn-success:hover { background: rgba(74,229,74,0.3); }

.admin-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.admin-search {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
}

.admin-search::placeholder { color: rgba(255,255,255,0.35); }

.admin-select {
    padding: 8px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
}

.admin-select option { background: #1a1a2e; color: #fff; }

.admin-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    white-space: nowrap;
}

.admin-results-info {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}

.admin-content-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    transition: all 0.2s;
}

.admin-content-row:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.16);
}

.admin-content-row.deleted-row { opacity: 0.45; }

.admin-content-main { flex: 1; min-width: 0; }

.admin-content-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.admin-content-kind {
    font-family: 'Trispace', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.admin-content-title {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-content-title:hover { color: #FF6B35; }

.admin-content-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.admin-content-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.35rem;
}

.admin-badge {
    display: inline-block;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.admin-badge-deleted { background: rgba(255,107,107,0.2); color: #ff6b6b; }
.admin-badge-draft { background: rgba(255,217,61,0.2); color: #FFD93D; }
.admin-badge-syndicated { background: rgba(0,212,229,0.15); color: #00D4E5; }

.admin-content-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.admin-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    transition: background 0.15s;
}

.admin-btn-sm:hover { background: rgba(255,255,255,0.15); }

.admin-loading, .admin-empty, .admin-error {
    padding: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.admin-error { color: #ff6b6b; }

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.admin-page-info {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Admin Edit Page */
.admin-edit-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 5.5rem 1rem 2rem;
}

.admin-edit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-edit-header h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
}

.admin-edit-header-actions {
    display: flex;
    gap: 8px;
}

.admin-edit-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-uuid {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.admin-edit-form .form-group { margin-bottom: 1.25rem; }

.admin-alert {
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.admin-alert-warning {
    background: rgba(255,217,61,0.15);
    color: #FFD93D;
    border: 1px solid rgba(255,217,61,0.3);
}

.admin-syndication-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-syndication-link {
    font-size: 0.8rem;
    color: #00D4E5;
    text-decoration: none;
    word-break: break-all;
}

.admin-syndication-link:hover { text-decoration: underline; }

.admin-raw-json {
    margin-top: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 12px 16px;
}

.admin-raw-json summary {
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.admin-raw-json pre {
    margin-top: 12px;
    overflow-x: auto;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    max-height: 400px;
}

/* Edit button on post detail */
.admin-edit-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #FF6B35;
    text-decoration: none;
    background: rgba(255,107,53,0.1);
    border: 1px solid rgba(255,107,53,0.25);
    margin-left: auto;
    transition: background 0.15s;
}

.admin-edit-link:hover { background: rgba(255,107,53,0.25); }


/* New Post button in header */
.new-post-btn {
    background: rgba(255,107,53,0.2) !important;
    border: 1px solid rgba(255,107,53,0.35) !important;
    border-radius: 8px !important;
}
.new-post-btn:hover {
    background: rgba(255,107,53,0.35) !important;
}


/* Admin action buttons in post-card footer */
.post-admin-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    padding-left: 1rem;
}

.admin-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.15s;
}

.admin-action-btn:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.admin-action-btn.edit-btn:hover {
    background: rgba(255,107,53,0.2);
    border-color: rgba(255,107,53,0.3);
}

.admin-action-btn.delete-btn:hover {
    background: rgba(255,107,107,0.2);
    border-color: rgba(255,107,107,0.3);
}

.admin-action-btn.restore-btn:hover {
    background: rgba(74,229,74,0.2);
    border-color: rgba(74,229,74,0.3);
}

/* Admin content list using timeline cards */
.admin-content-list.timeline-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

.admin-content-list.timeline-cards .post-card {
    margin-bottom: 1rem;
}

/* Deleted posts in admin */
.admin-content-list.timeline-cards .post-card[data-deleted="true"] {
    opacity: 0.45;
}
