/**
 * RIFT - Hub Page Styles
 * Unified Canvas Design System
 */

/* ═══════════════════════════════════════════════════════════
   UNIFIED CANVAS - Clean Background
   ═══════════════════════════════════════════════════════════ */

.main--hub {
    position: relative;
    background: #0a0a0a;
    min-height: 100vh;
}

/* Full-width backdrop behind content */
.main--hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--content-max-width, 1500px);
    height: 100%;
    background: #111111;
    z-index: 0;
}

/* Content container - 1500px wide background, elements stay at ~1400px */
.main--hub .main__content {
    position: relative;
    z-index: 1;
    max-width: var(--content-max-width, 1500px);
    margin: 0 auto;
    padding: 130px 50px 0 50px; /* TopNav (66px) + MegaNav (55px) + 9px spacing */
}

/* ═══════════════════════════════════════════════════════════
   HUB GREETING - Guten Morgen/Tag/Abend [Username]
   ═══════════════════════════════════════════════════════════ */

.hub-greeting {
    margin: 30px 0 16px 0;
}

/* Hide page header completely */
.page-header {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   HUB DIVIDER - Section Separator
   ═══════════════════════════════════════════════════════════ */

.hub-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
    margin: 32px 0;
}

/* ═══════════════════════════════════════════════════════════
   HUB SECTION TITLE
   ═══════════════════════════════════════════════════════════ */

.hub-section__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hub-divider {
        margin: 24px 0;
    }
    
    .hub-section__title {
        font-size: 26px;
        margin-bottom: 16px;
    }
}

.hub-greeting__text {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.hub-greeting__time {
    color: var(--accent);
}

.hub-greeting__name {
    color: #fff;
}

@media (max-width: 768px) {
    .hub-greeting__text {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hub-greeting__text {
        font-size: 28px;
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO PANELS - Character + Session Cards
   ═══════════════════════════════════════════════════════════ */

.hero-panels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

/* ─────────────────────────────────────────
   CHARACTER PANEL
   ───────────────────────────────────────── */

.character-panel {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 275px;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.character-panel:hover {
    background: linear-gradient(135deg, #1e1e1e 0%, #181818 100%);
    transform: translateY(-2px);
}

/* Background gradient based on ruleset */
.character-panel__bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.character-panel--5e .character-panel__bg {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, transparent 60%);
}

.character-panel--htbah .character-panel__bg {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, transparent 60%);
}

.character-panel--cyberpunk .character-panel__bg {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, transparent 60%);
}

/* Portrait (2:3 like session cover) */
.character-panel__portrait {
    position: relative;
    width: 180px;
    flex-shrink: 0;
    z-index: 2;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.character-panel__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.character-panel__portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Content */
.character-panel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 28px;
    z-index: 2;
    min-width: 0;
}

.character-panel__label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.character-panel__name {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0 0 8px;
}

/* Character Meta Info - alle als Badges */
.character-panel__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.character-panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.character-panel__badge--fokus {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.character-panel__fokus-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* Attribute Row - einzelne Boxen */
.character-panel__attributes {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.character-panel__attr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    min-width: 44px;
}

.character-panel__attr-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.character-panel__attr-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Row */
.character-panel__stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.character-panel__stat {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.character-panel__stat-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.character-panel__stat--hp .character-panel__stat-icon { color: #ef4444; }
.character-panel__stat--mp .character-panel__stat-icon { color: #3b82f6; }
.character-panel__stat--resonanz .character-panel__stat-icon { color: #a78bfa; }

.character-panel__stat-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.character-panel__stat-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.character-panel__stat-fill--hp { background: linear-gradient(90deg, #dc2626, #ef4444); }
.character-panel__stat-fill--mp { background: linear-gradient(90deg, #1d4ed8, #3b82f6); }
.character-panel__stat-fill--resonanz { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

.character-panel__stat-value {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    min-width: 28px;
    text-align: right;
}

/* CTA Button - Top Right */
.character-panel__cta {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: #1a1a1a;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    z-index: 10;
}

.character-panel__cta svg {
    display: none;
}

.character-panel__cta:hover {
    background: #242424;
    color: white;
    transform: scale(1.05);
}

/* Empty State / CTA - linksbündig */
.character-panel--empty {
    align-items: stretch;
}

.character-panel--empty .character-panel__portrait {
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-panel--empty .character-panel__content {
    justify-content: center;
}

.character-panel--empty .character-panel__name {
    font-size: 32px;
}

.character-panel--empty .character-panel__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.character-panel__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    transition: background 0.2s ease;
    align-self: flex-start;
}

.character-panel:hover .character-panel__cta-btn {
    background: rgba(255, 255, 255, 0.12);
}

.character-panel__cta-btn svg {
    width: 16px;
    height: 16px;
}

/* ─────────────────────────────────────────
   SESSION PANEL (Adventure Panel)
   ───────────────────────────────────────── */

.adventure-panel {
    position: relative;
    display: flex;
    min-height: 240px;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.adventure-panel:hover {
    background: linear-gradient(135deg, #1e1e1e 0%, #181818 100%);
    transform: translateY(-2px);
}

/* Background gradient */
.adventure-panel__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.4;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.adventure-panel--5e .adventure-panel__bg {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
}

.adventure-panel--htbah .adventure-panel__bg {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, transparent 50%);
}

.adventure-panel--cyberpunk .adventure-panel__bg {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, transparent 50%);
}

/* Cover Image (2:3 Portrait) */
.adventure-panel__cover {
    position: relative;
    width: 180px;
    flex-shrink: 0;
    z-index: 2;
    overflow: hidden;
}

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

.adventure-panel__cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.15);
}

.adventure-panel__cover-placeholder svg {
    width: 48px;
    height: 48px;
}

/* Content */
.adventure-panel__inner {
    flex: 1;
    display: flex;
    z-index: 2;
    min-width: 0;
}

.adventure-panel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 32px;
    min-width: 0;
}

.adventure-panel__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.adventure-panel__label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.adventure-panel__gm-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #F59E0B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adventure-panel__gm-badge svg {
    width: 12px;
    height: 12px;
}

.adventure-panel__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
    line-height: 1;
}

.adventure-panel__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 16px;
    max-width: 500px;
}

/* Meta Row */
.adventure-panel__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.adventure-panel__ruleset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.adventure-panel__ruleset img {
    width: 16px;
    height: 16px;
}

.adventure-panel__session-num {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Schedule inline */
.adventure-panel__schedule {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.adventure-panel__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.adventure-panel__date svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.adventure-panel__countdown {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 6px;
}

.adventure-panel--5e .adventure-panel__countdown {
    background: rgba(239, 68, 68, 0.15);
}

.adventure-panel__countdown-item {
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.adventure-panel__countdown-num {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.adventure-panel__countdown-unit {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.adventure-panel__countdown-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 2px;
    font-size: 12px;
}

/* Tags */
.adventure-panel__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
}

.adventure-panel__tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}

/* CTA Side */
.adventure-panel__side {
    display: flex;
    align-items: center;
    padding: 28px 32px 28px 0;
    margin-left: auto;
    flex-shrink: 0;
}

.adventure-panel__cta {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: #1a1a1a;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    z-index: 10;
}

.adventure-panel__cta svg {
    display: none;
}

.adventure-panel__cta:hover {
    background: #242424;
    color: white;
    transform: scale(1.05);
}

/* Empty State */
.adventure-panel--empty {
    align-items: stretch;
}

.adventure-panel--empty .adventure-panel__cover {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.adventure-panel--empty .adventure-panel__cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.adventure-panel--empty .adventure-panel__inner {
    display: flex;
    align-items: center;
}

.adventure-panel--empty .adventure-panel__content {
    justify-content: center;
}

.adventure-panel--empty .adventure-panel__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.adventure-panel--empty .adventure-panel__title {
    font-size: 32px;
    margin-bottom: 4px;
}

.adventure-panel--empty .adventure-panel__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.adventure-panel__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    transition: background 0.2s ease;
    align-self: flex-start;
}

.adventure-panel:hover .adventure-panel__cta-btn {
    background: rgba(255, 255, 255, 0.12);
}

.adventure-panel__cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Mobile */
@media (max-width: 900px) {
    .adventure-panel {
        flex-direction: column;
    }
    
    .adventure-panel__cover {
        width: 100%;
        height: 120px;
    }
    
    .adventure-panel__content {
        padding: 20px;
    }
    
    .adventure-panel__title {
        font-size: 32px;
    }
    
    .adventure-panel__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .adventure-panel__schedule {
        padding-left: 0;
        border-left: none;
    }
    
    .adventure-panel__side {
        padding: 0 20px 20px;
    }
    
    .adventure-panel__cta {
        width: 100%;
        justify-content: center;
    }
    
    .character-panel {
        flex-direction: column;
        min-height: auto;
    }
    
    .character-panel__portrait {
        width: 100%;
        height: 180px;
    }
    
    .character-panel__content {
        padding: 20px;
    }
    
    .character-panel__name {
        font-size: 32px;
    }
    
    .character-panel__meta {
        gap: 10px;
    }
    
    .character-panel__stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .character-panel__attributes {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .character-panel__attr {
        min-width: 50px;
        padding: 6px 10px;
    }
    
    .character-panel__arrow {
        display: none;
    }
}

/* Page Header - Minimal */
.page-header {
    display: none; /* Versteckt - Topnav zeigt bereits "Hub" */
}

.page-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.page-header__icon svg {
    width: 20px;
    height: 20px;
}

.page-header__divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
}

.page-header__title {
    font-style: italic;
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header__tagline {
    color: var(--accent);
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0 0 16px 0;
    width: 100%;
}

/* Continue Cards Container */
#continueCardsContainer {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   STATUS BANNER - Unified Canvas Style
   ═══════════════════════════════════════════════ */
.status-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Subtle top gradient line */
.status-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Remove old accent border */
.status-banner::after {
    display: none;
}

.status-banner:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.status-banner__icon {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.status-banner__icon svg {
    width: 24px;
    height: 24px;
}

.status-banner__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.status-banner__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-banner__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.status-banner__actions {
    position: relative;
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.status-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.status-banner__btn svg {
    width: 16px;
    height: 16px;
}

.status-banner__btn--primary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.status-banner__btn--primary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.status-banner__btn--secondary {
    color: rgba(255, 255, 255, 0.7);
}

.status-banner__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Status Banner - Mobile */
@media (max-width: 768px) {
    .status-banner {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
    }
    
    .status-banner__actions {
        margin-left: 0;
        width: 100%;
    }
    
    .status-banner__btn {
        flex: 1;
        justify-content: center;
    }
}

/* Hero Banner - Primary (fixed width) */
.hero {
    position: relative;
    width: 520px;
    flex-shrink: 0;
    height: 260px;
    margin: 0;
    background: linear-gradient(135deg, #FF4655 0%, #e63e4d 100%);
    border-radius: 16px;
    overflow: visible;
    transition: transform 0.2s ease;
}

.hero:hover {
    transform: scale(1.015);
}

.hero__inner {
    position: absolute;
    left: 16px;
    top: 16px;
    bottom: 16px;
    width: 280px;
    padding: 20px 22px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.hero__tag {
    margin-bottom: 2px;
    color: rgba(255,255,255,0.5);
    font-family: 'Dharma Gothic', 'Impact', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__title {
    margin: 0 0 10px 0;
    font-family: 'Dharma Gothic', 'Impact', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__desc {
    margin: 0 0 16px 0;
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 23px;
    font-weight: 300;
    line-height: 1.2;
    color: rgba(255,255,255,0.9);
    flex: 1;
}

.hero__btn {
    align-self: flex-start;
    padding: 8px 32px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s;
}

.hero__btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.hero__btn:active {
    transform: scale(0.98);
}

.hero__image {
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 240px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.hero__character {
    height: 320px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero,
    .hero--secondary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin: 24px 16px;
    }
    
    .hero {
        height: auto;
        min-height: 260px;
    }
    
    .hero__inner {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: auto;
        margin: 16px;
    }
    
    .hero__image {
        display: none;
    }
}

/* ========================================
   WIDGET GRID
   ======================================== */

/* Section Divider */
.section-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 24px;
}

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

.quick-nav {
    display: flex;
    gap: 12px;
    padding: 8px 24px;
    margin: -8px 0 16px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quick-nav::-webkit-scrollbar {
    display: none;
}

.quick-nav__item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
    max-width: 280px;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.quick-nav__item:hover {
    background: var(--bg-card);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.quick-nav__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-dim);
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.quick-nav__item:hover .quick-nav__icon {
    transform: scale(1.1);
}

.quick-nav__icon svg {
    width: 22px;
    height: 22px;
    color: var(--text-primary);
}

.quick-nav__icon--purple {
    background: rgba(139, 92, 246, 0.15);
}

.quick-nav__icon--purple svg {
    color: #8b5cf6;
}

.quick-nav__icon--gold {
    background: rgba(255, 171, 0, 0.15);
}

.quick-nav__icon--gold svg {
    color: #ffab00;
}

.quick-nav__icon--blue {
    background: rgba(59, 130, 246, 0.15);
}

.quick-nav__icon--blue svg {
    color: #3b82f6;
}

.quick-nav__icon--green {
    background: var(--green-dim);
}

.quick-nav__icon--green svg {
    color: var(--success);
}

.quick-nav__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.quick-nav__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.quick-nav__desc {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Quick Nav */
@media (max-width: 1024px) {
    .quick-nav__item {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .quick-nav {
        padding: 0 16px;
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .quick-nav__item {
        min-width: 140px;
        padding: 12px 14px;
        gap: 10px;
    }
    
    .quick-nav__icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .quick-nav__icon svg {
        width: 18px;
        height: 18px;
    }
    
    .quick-nav__title {
        font-size: 13px;
    }
    
    .quick-nav__desc {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .quick-nav__item {
        min-width: 120px;
        flex-direction: column;
        text-align: center;
        padding: 14px 10px;
        gap: 8px;
    }
    
    .quick-nav__text {
        align-items: center;
    }
    
    .quick-nav__desc {
        display: none;
    }
}

.widgets {
    display: grid;
    grid-template-columns: 1fr 1.4fr 0.8fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 0 0 40px 0;
}

/* ═══════════════════════════════════════════════════════════
   UNIFIED CARD SYSTEM - Glassmorphism Widgets
   ═══════════════════════════════════════════════════════════ */

/* Widget Base - Clean style */
.widget {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    overflow: hidden;
    position: relative;
}

.widget:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: #1e1e1e;
    transform: translateY(-1px);
}

/* Widget Sizes */
.widget--tall {
    grid-row: span 2;
}

.widget--wide {
    grid-column: span 2;
}

.widget--full {
    grid-column: 1 / -1;
}

/* Widget Header */
.widget__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.widget__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.widget__action {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.widget__action:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.widget__action svg {
    width: 13px;
    height: 13px;
    opacity: 0.5;
}

/* Widget Content */
.widget__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 4px 16px 16px;
}

/* Widget Empty State */
.widget__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.widget__empty svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    opacity: 0.2;
}

.widget__empty p {
    font-size: 12px;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.widget__empty-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
}

.widget__empty-btn {
    margin-top: 12px;
    padding: 8px 16px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.widget__empty-btn:hover {
    background: #e63946;
    transform: translateY(-1px);
}

.widget__empty-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.widget__empty-text {
    font-size: 13px;
}

/* Widget List */
.widget__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Party Member in List */
#partyList .party-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s, border-color 0.2s;
}

#partyList .party-member:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

#partyList .party-member__avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

#partyList .party-member__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: white;
    overflow: hidden;
}

#partyList .party-member__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#partyList .party-member__status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
}

#partyList .party-member__status--online {
    background: #22c55e;
}

#partyList .party-member__status--offline {
    background: #6b7280;
}

#partyList .party-member__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

#partyList .party-member__name {
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#partyList .party-member__role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.widget__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.widget__item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.widget__item-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid rgba(255, 70, 85, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget__item:hover .widget__item-icon {
    /* No transform */
}

.widget__item-icon svg {
    width: 18px;
    height: 18px;
    color: var(--text-primary);
}

.widget__item-icon--green {
    background: rgba(76, 175, 80, 0.15);
}

.widget__item-icon--green svg {
    color: #4caf50;
}

.widget__item-icon--blue {
    background: rgba(59, 130, 246, 0.15);
}

.widget__item-icon--blue svg {
    color: #3b82f6;
}

.widget__item-icon--purple {
    background: rgba(139, 92, 246, 0.15);
}

.widget__item-icon--purple svg {
    color: #8b5cf6;
}

/* Ruleset Badges */
.ruleset-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 6px;
    border-radius: 6px;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ruleset-badge img {
    width: auto;
    height: 18px;
    max-width: 28px;
    object-fit: contain;
}

.ruleset-badge span {
    font-size: inherit;
    font-weight: inherit;
    white-space: nowrap;
}

.ruleset-badge--worldsapart {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ruleset-badge--5e {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.ruleset-badge--htbah {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.ruleset-badge--cyberpunk {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

/* Session Item (inline layout) */
.session-item__title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.session-item__title:hover {
    color: var(--text-primary);
}

.session-item__meta {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Character Item */
.character-item__name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
}

.widget__item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.widget__item-title {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget__item-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.widget__item-badge {
    padding: 3px 8px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4caf50;
}

/* Widget Avatar */
.widget__item-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
    position: relative;
}

.widget__item-avatar--online::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
    background: #4caf50;
    border: 2px solid #1b1b1b;
    border-radius: 50%;
}

/* Widget Status */
.widget__status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.widget__status--online {
    color: #4caf50;
}

/* ========================================
   ACTIVITY FEED
   ======================================== */

.widget__feed {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feed__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background 0.15s;
}

.feed__item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.feed__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feed__icon svg {
    width: 14px;
    height: 14px;
}

.feed__icon--dice {
    background: var(--red-dim);
    color: var(--text-primary);
}

.feed__icon--chat {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.feed__icon--join {
    background: var(--green-dim);
    color: var(--success);
}

.feed__icon--session {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.feed__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feed__text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.feed__text strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.feed__highlight {
    color: var(--accent) !important;
    font-weight: 600;
}

.feed__time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* Widget Footer */
.widget__footer {
    padding: 10px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.widget__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.widget__link:hover {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
}

.widget__link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.widget__link:hover svg {
    transform: translateX(3px);
}

/* ========================================
   WIDGET: Nächste / Letzte Session
   ======================================== */

.w-session-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(196,54,42,0.1), rgba(196,54,42,0.03));
    border: 1px solid rgba(196,54,42,0.12);
    border-left: 3px solid var(--accent, #ff4655);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.w-session-card:hover {
    background: linear-gradient(135deg, rgba(196,54,42,0.14), rgba(196,54,42,0.05));
    border-color: rgba(196,54,42,0.2);
    border-left-color: var(--accent, #ff4655);
}

.w-session-card--past {
    opacity: 0.7;
}

.w-session-card__date {
    width: 48px;
    height: 52px;
    background: rgba(255, 70, 85, 0.15);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.w-session-card__date--past {
    background: rgba(255, 255, 255, 0.06);
}

.w-session-card__day {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.w-session-card__month {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.w-session-card__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.w-session-card__name {
    font-size: 14px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.w-session-card__meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.w-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 4px;
}

.w-countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 10px 0;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: border-color 0.2s;
}

.w-countdown__block:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.w-countdown__num {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent, #ff4655);
}

.w-countdown__label {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 4px;
}

.w-countdown__sep {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    margin-top: -10px;
}

/* ========================================
   WIDGET: Party Avatars (Rework)
   ======================================== */

.party-avatars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 210px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.party-avatars::-webkit-scrollbar {
    width: 4px;
}

.party-avatars::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.party-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    min-width: 72px;
    flex: 1;
    max-width: 100px;
    transition: all 0.2s ease;
    cursor: default;
}

.party-avatar:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.party-avatar__img-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.party-avatar__img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: white;
    overflow: hidden;
    flex-shrink: 0;
}

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

.party-avatar__status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #252525;
    background: #6b7280;
    z-index: 2;
}

.party-avatar__status--online {
    background: #22c55e;
}

.party-avatar__name {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.party-avatar__role {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent, #ff4655);
    background: rgba(255, 70, 85, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ========================================
   WIDGET: Chat Preview
   ======================================== */

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-preview__msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.15s;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 4px;
}

.chat-preview__msg:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.06);
}

.chat-preview__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

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

.chat-preview__body {
    flex: 1;
    min-width: 0;
}

.chat-preview__name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.chat-preview__text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chat-preview__time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================
   WIDGET: Pinned Notes
   ======================================== */

.pinned-notes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.pinned-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 8px;
    border-left: 3px solid var(--accent, #8B5CF6);
    position: relative;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pinned-note__text {
    flex: 1;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.45;
    word-break: break-word;
}

.pinned-note__meta {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

.pinned-note__delete {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s;
    padding: 0;
}

.pinned-note:hover .pinned-note__delete {
    opacity: 1;
}

.pinned-note__delete:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.pinned-note__delete svg {
    width: 12px;
    height: 12px;
}

/* Note Add Dialog (inline) */
.note-add {
    display: flex;
    gap: 8px;
    padding: 0;
}

.note-add__input {
    flex: 1;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: white;
    resize: none;
    min-height: 38px;
    max-height: 80px;
    font-family: inherit;
}

.note-add__input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.note-add__input:focus {
    outline: none;
    border-color: var(--accent, #ff4655);
}

.note-add__submit {
    width: 38px;
    height: 38px;
    background: var(--accent, #ff4655);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.note-add__submit:hover {
    filter: brightness(1.15);
}

.note-add__submit svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   WIDGET: Map Preview
   ======================================== */

.map-preview {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.map-preview__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
}

.map-preview__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.map-preview__markers {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.map-preview__markers::before {
    content: '📍';
    font-size: 12px;
}

.map-preview__open {
    font-size: 11px;
    color: var(--accent, #ff4655);
    text-decoration: none;
    font-weight: 500;
}

.map-preview__open:hover {
    text-decoration: underline;
}

/* ========================================
   WIDGET: Achievements (Rework)
   ======================================== */

.w-ach-counter {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

.w-ach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 6px;
    margin-bottom: 12px;
}

.w-ach-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.w-ach-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.w-ach-item--locked {
    opacity: 0.25;
    filter: grayscale(1);
}

.w-ach-item--locked:hover {
    opacity: 0.4;
}

.w-ach-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.w-ach-progress__bar {
    flex: 1;
    height: 3px;
    background: #0f0f0f;
    border-radius: 2px;
    overflow: hidden;
}

.w-ach-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent, #ff4655), #ff8f00);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.w-ach-progress__label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    min-width: 32px;
    text-align: right;
}

/* Responsive Widgets */
@media (max-width: 768px) {
    .section-divider {
        margin: 8px 16px 24px 16px;
    }
    
    .widgets {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 0 32px 0;
    }
    
    .widget--wide,
    .widget--tall {
        grid-column: auto;
        grid-row: auto;
    }
    
    .widget__header {
        padding: 12px 16px;
    }
    
    .widget__content {
        padding: 8px;
    }
    
    .widget__footer {
        padding: 10px 16px;
    }
    
    .party-avatar {
        min-width: 60px;
    }
    
    .w-countdown__num {
        font-size: 24px;
    }
}

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

@media (max-width: 560px) {
    .widgets {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   NEWS CARD (Secondary Hero)
   ======================================== */

.hero-news-grid {
    flex: 1;
    display: flex;
    gap: 24px;
}

.hero-news-grid .hero--secondary {
    flex: 1;
}

.hero--secondary {
    background: var(--bg-elevated);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease;
}

.hero--secondary:hover {
    border-color: var(--border-hover);
}


/* Admin Edit Button */
.news-admin-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 10;
}

.hero--secondary:hover .news-admin-btn {
    opacity: 1;
}

.news-admin-btn:hover {
    background: var(--accent);
}

.news-admin-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive News */
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero {
        width: 100%;
    }
    
    .hero-news-grid {
        width: 100%;
    }
    
    .hero--secondary {
        min-height: 140px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin: 16px;
        gap: 16px;
    }
    
    .hero {
        height: 220px;
    }
    
    .hero-news-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero--secondary {
        min-height: 120px;
    }
    
    .news-card__image {
        width: 100px;
        min-width: 100px;
    }
    
    .news-card__content {
        padding: 12px 16px;
    }
    
    .news-card__title {
        font-size: 1rem;
    }
    
    .news-card__excerpt {
        display: none;
    }
}

/* ========================================
   GM FLOATING ACTION BUTTON
   ======================================== */

.gm-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(109, 40, 217, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 50px;
    color: white;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.gm-fab:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.gm-fab svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .gm-fab {
        bottom: 80px;
        right: 16px;
        padding: 12px;
    }
    
    .gm-fab span {
        display: none;
    }
}

/* ========================================
   CONTINUE PLAYING CARD (Rulebook Card Style)
   ======================================== */

.continue-card {
    position: relative;
    width: 420px;
    flex-shrink: 0;
    height: 280px;
    border-radius: 18px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.continue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Card Background mit Gradient */
.continue-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: var(--card-gradient, linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%));
    z-index: 1;
}

/* RIFT R Watermark */
.continue-card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background-image: url('../icons/icon_rift_r.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    z-index: 2;
    pointer-events: none;
}

/* Color Variants */
.continue-card--worldsapart {
    --card-gradient: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.continue-card--5e {
    --card-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.continue-card--htbah {
    --card-gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.continue-card--cyberpunk {
    --card-gradient: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

/* Badge oben links */
.continue-card__badge {
    position: absolute;
    top: 38px;
    left: 108px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    z-index: 10;
}

.continue-card__badge svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

/* Character Image (Fallback für Full-Body) */
.continue-card__character {
    position: absolute;
    right: -15px;
    bottom: 0;
    width: 240px;
    height: 320px;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.continue-card__character img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.continue-card__character img.loaded {
    opacity: 1;
}

.continue-card:hover .continue-card__character img {
    transform: translateY(-5px) scale(1.02);
}

/* Glassmorphism Footer */
.continue-card__glass {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    z-index: 10;
}

/* ═══════════════════════════════════════════════
   MAGISCHES MEDAILLON - Character Avatar
   ═══════════════════════════════════════════════ */
.continue-card__avatar {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    z-index: 15;
    
    /* Der magische Glow */
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.15),
        0 0 16px var(--medallion-glow, rgba(139, 92, 246, 0.3)),
        0 0 32px var(--medallion-glow, rgba(139, 92, 246, 0.15)),
        0 6px 24px rgba(0, 0, 0, 0.4);
    
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.continue-card:hover .continue-card__avatar {
    transform: scale(1.06);
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.25),
        0 0 20px var(--medallion-glow, rgba(139, 92, 246, 0.5)),
        0 0 40px var(--medallion-glow, rgba(139, 92, 246, 0.25)),
        0 10px 32px rgba(0, 0, 0, 0.5);
}

/* Subtiler animierter Schimmer */
.continue-card__avatar::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--medallion-color, #8b5cf6) 0%,
        transparent 40%,
        transparent 60%,
        var(--medallion-color, #8b5cf6) 100%
    );
    opacity: 0.5;
    animation: medallionShimmer 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes medallionShimmer {
    0%, 100% { transform: rotate(0deg); opacity: 0.4; }
    50% { transform: rotate(180deg); opacity: 0.7; }
}

.continue-card:hover .continue-card__avatar::before {
    animation-duration: 2s;
}

/* Avatar Inhalt */
.continue-card__avatar img,
.continue-card__avatar-initial {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.continue-card__avatar img {
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.continue-card__avatar img.loaded {
    opacity: 1;
}

/* Regelwerk-Icon wenn kein Charakter */
.continue-card__avatar img.continue-card__avatar-ruleset {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0 !important;
}

.continue-card__avatar:has(.continue-card__avatar-ruleset) {
    position: relative;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, transparent 50%),
        linear-gradient(145deg, 
            color-mix(in srgb, var(--medallion-color, #8b5cf6) 60%, white) 0%, 
            var(--medallion-color, #8b5cf6) 40%,
            color-mix(in srgb, var(--medallion-color, #8b5cf6) 70%, black) 100%
        );
}

.continue-card__avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, transparent 50%),
        linear-gradient(145deg, 
            color-mix(in srgb, var(--medallion-color, #8b5cf6) 60%, white) 0%, 
            var(--medallion-color, #8b5cf6) 40%,
            color-mix(in srgb, var(--medallion-color, #8b5cf6) 70%, black) 100%
        );
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Ruleset-spezifische Medaillon-Farben */
.continue-card--worldsapart {
    --medallion-color: #8b5cf6;
    --medallion-glow: rgba(139, 92, 246, 0.4);
}

.continue-card--5e {
    --medallion-color: #ef4444;
    --medallion-glow: rgba(239, 68, 68, 0.4);
}

.continue-card--htbah {
    --medallion-color: #22c55e;
    --medallion-glow: rgba(34, 197, 94, 0.4);
}

.continue-card--cyberpunk {
    --medallion-color: #eab308;
    --medallion-glow: rgba(234, 179, 8, 0.4);
}

.continue-card__glass-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.continue-card__info {
    flex: 1;
    min-width: 0;
}

.continue-card__label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.continue-card__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    color: white;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.continue-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.continue-card__session {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.continue-card__progress {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.continue-card__progress-bar {
    height: 100%;
    background: white;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.continue-card__actions {
    flex-shrink: 0;
}

.continue-card__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.continue-card__btn--primary {
    background: white;
    color: #1a1a1a;
}

.continue-card__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.continue-card__btn--primary svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   HERO LOADING SKELETON
   ======================================== */

.hero-loading {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.hero-loading__card {
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.hero-loading__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        transparent 100%);
    animation: shimmer 1.5s infinite;
}

.hero-loading__card--small {
    width: 220px;
    height: 300px;
    flex-shrink: 0;
}

.hero-loading__card--large {
    flex: 1;
    min-width: 500px;
    height: 300px;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 1000px) {
    .hero-loading {
        flex-direction: column;
    }
    
    .hero-loading__card--small,
    .hero-loading__card--large {
        width: 100%;
        min-width: 0;
        height: 200px;
    }
}

/* ========================================
   CHARACTER HERO CARD - Unified Canvas Style
   Links von der Session Hero Card
   ======================================== */

.character-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 220px;
    flex-shrink: 0;
    height: 300px;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Subtle top gradient line */
.character-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 5;
}

.character-hero:hover::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.character-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Portrait Section (Top) */
.character-hero__portrait {
    position: relative;
    flex: 1;
    min-height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.character-hero__portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
    /* Bessere Bildqualität bei Skalierung */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.character-hero:hover .character-hero__portrait-img {
    transform: scale(1.05);
}

/* Subtle bottom gradient for text readability */
.character-hero__portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, #1a1a1a 100%);
    pointer-events: none;
}

.character-hero__portrait-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.character-hero__portrait-placeholder svg {
    width: 48px;
    height: 48px;
}

.character-hero__portrait-initial {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
}

/* GM Badge on portrait */
.character-hero__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.character-hero__badge svg {
    width: 12px;
    height: 12px;
}

/* Content Section (Bottom) */
.character-hero__content {
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.character-hero__label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.character-hero__name {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin: 0 0 4px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.character-hero__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.character-hero__class {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* LP & Moral Stats */
.character-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 6px;
}

.character-hero__stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.character-hero__stat-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.character-hero__stat-icon--lp {
    color: #ef4444;
}

.character-hero__stat-icon--moral {
    color: #3b82f6;
}

.character-hero__stat-icon svg {
    width: 14px;
    height: 14px;
}

.character-hero__stat-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.character-hero__stat-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.character-hero__stat-fill--lp {
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
}

.character-hero__stat-fill--moral {
    background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
}

.character-hero__stat-value {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    min-width: 24px;
    text-align: right;
}

/* Ruleset Color Variants - Subtle */
.character-hero--worldsapart .character-hero__portrait { background: rgba(139, 92, 246, 0.08); }
.character-hero--worldsapart .character-hero__label { color: rgba(139, 92, 246, 0.7); }

.character-hero--5e .character-hero__portrait { background: rgba(239, 68, 68, 0.08); }
.character-hero--5e .character-hero__label { color: rgba(239, 68, 68, 0.7); }

.character-hero--htbah .character-hero__portrait { background: rgba(34, 197, 94, 0.15); }
.character-hero--htbah .character-hero__label { color: #22c55e; }

.character-hero--cyberpunk .character-hero__portrait { background: rgba(234, 179, 8, 0.15); }
.character-hero--cyberpunk .character-hero__label { color: #eab308; }

/* Character Hero - Empty State */
.character-hero--empty {
    border-color: rgba(255, 255, 255, 0.08);
}

.character-hero--empty:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.character-hero--empty .character-hero__portrait-placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.character-hero--empty .character-hero__portrait-placeholder svg {
    width: 56px;
    height: 56px;
}

.character-hero--empty .character-hero__name {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
}

.character-hero--empty .character-hero__class {
    color: rgba(255, 255, 255, 0.4);
}

.character-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
}

.character-hero--empty:hover .character-hero__cta {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.character-hero__cta svg {
    width: 16px;
    height: 16px;
}

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

.hero-cards-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1000px) {
    .hero-cards-container {
        flex-direction: column;
    }
    
    .character-hero {
        width: 100%;
        max-width: 400px;
        height: auto;
        flex-direction: row;
    }
    
    .character-hero__portrait {
        width: 120px;
        min-height: auto;
    }
    
    .character-hero__content {
        flex: 1;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* ========================================
   SESSION HERO CARD - Unified Canvas Style
   Kombiniert Continue + Kalender + Countdown
   ======================================== */

.session-hero {
    position: relative;
    display: flex;
    gap: 0;
    flex: 1;
    min-width: 500px;
    height: 300px;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Subtle top gradient line */
.session-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 10;
}

.session-hero:hover::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.session-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Cover Section (Left) */
.session-hero__cover {
    position: relative;
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.session-hero__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.session-hero:hover .session-hero__cover-img {
    transform: scale(1.05);
}

/* Placeholder wenn kein Cover */
.session-hero__cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient, linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%));
}

.session-hero__cover-placeholder svg {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.3);
}

/* Ruleset Variants for placeholder */
.session-hero--worldsapart { --hero-gradient: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); --hero-accent: #8b5cf6; }
.session-hero--5e { --hero-gradient: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); --hero-accent: #ef4444; }
.session-hero--htbah { --hero-gradient: linear-gradient(135deg, #22c55e 0%, #15803d 100%); --hero-accent: #22c55e; }
.session-hero--cyberpunk { --hero-gradient: linear-gradient(135deg, #eab308 0%, #a16207 100%); --hero-accent: #eab308; }

/* Content Section (Middle) */
.session-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-width: 0;
}

.session-hero__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.session-hero__gm-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.session-hero__gm-badge svg {
    width: 14px;
    height: 14px;
}

.session-hero__label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.session-hero__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
    line-height: 1;
}

.session-hero__subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: italic;
}

.session-hero__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: auto;
}

.session-hero__ruleset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.session-hero__ruleset img {
    width: 16px;
    height: 16px;
}

.session-hero__session-num {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Tags */
.session-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.session-hero__tag {
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: capitalize;
}

/* Footer with Button */
.session-hero__footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.session-hero__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.2s;
}

.session-hero__btn svg {
    width: 16px;
    height: 16px;
}

.session-hero__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Calendar Section (Right) */
.session-hero__calendar {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.session-hero__calendar-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.session-hero__date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: var(--hero-gradient, linear-gradient(135deg, var(--accent) 0%, #cc3844 100%));
    border-radius: 14px;
    margin-bottom: 12px;
}

.session-hero__day {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.session-hero__num {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.session-hero__month {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.session-hero__time {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

/* Countdown */
.session-hero__countdown {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.session-hero__countdown-value {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.session-hero__countdown-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-right: 8px;
}

.session-hero__countdown-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px;
    margin: 0 2px;
}

/* No date state */
.session-hero__no-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.session-hero__no-date svg {
    width: 32px;
    height: 32px;
    opacity: 0.5;
}

.session-hero__no-date span {
    font-size: 12px;
}

/* ========================================
   SESSION HERO - RESPONSIVE
   ======================================== */

@media (max-width: 1000px) {
    .session-hero {
        flex-direction: column;
        height: auto;
        min-width: 0;
        width: 100%;
    }
    
    .session-hero__cover {
        width: 100%;
        height: 160px;
    }
    
    .session-hero__calendar {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 20px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .session-hero__calendar-label {
        display: none;
    }
    
    .session-hero__date-box {
        flex-direction: row;
        gap: 12px;
        padding: 12px 20px;
        margin-bottom: 0;
    }
    
    .session-hero__num {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .session-hero__title {
        font-size: 28px;
    }
    
    .session-hero__content {
        padding: 16px;
    }
    
    .session-hero__calendar {
        flex-direction: column;
        gap: 12px;
    }
    
    .session-hero__footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .session-hero__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   NEXT SESSION CARD (Legacy - kept for compatibility)
   ======================================== */

.next-session-card {
    width: 300px;
    height: 280px;
    flex-shrink: 0;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    justify-content: space-between;
}

.next-session-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.next-session-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-session-card__header svg {
    width: 14px;
    height: 14px;
}

.next-session-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, #cc3844 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(255, 70, 85, 0.3);
}

.next-session-card__day {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-session-card__num {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.next-session-card__month {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.next-session-card__time {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.next-session-card__countdown {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 20px;
    background: #252525;
    border-radius: 10px;
    width: 100%;
    justify-content: center;
}

.countdown__value {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.countdown__label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-left: 4px;
    margin-right: 6px;
}

.countdown__sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    font-size: 18px;
}

/* ========================================
   PARTY STATUS CARD
   ======================================== */

.party-card {
    width: 300px;
    flex-shrink: 0;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.party-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}

.party-card__header svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.party-card__status {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.party-card__ready {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.party-card__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.party-card__members {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 160px;
}

.party-member {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.party-member__initial {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.party-member__indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #1b1b1b;
}

.party-member--online {
    border-color: #22c55e;
}

.party-member--online .party-member__indicator {
    background: #22c55e;
}

.party-member--away {
    border-color: #eab308;
}

.party-member--away .party-member__indicator {
    background: #eab308;
}

.party-member--offline {
    opacity: 0.5;
}

.party-member--offline .party-member__indicator {
    background: #6b7280;
}

.party-card__gm {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: auto;
}

.party-card__gm svg {
    color: #eab308;
    opacity: 0.8;
}

/* Party Card Minimal */
.party-card--minimal {
    width: auto;
    padding: 14px 20px;
    gap: 10px;
}

.party-card--minimal .party-card__members--row {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: none;
}

.party-card--minimal .party-member {
    width: 36px;
    height: 36px;
}

.party-card--minimal .party-member__initial {
    font-size: 13px;
}

.party-card--minimal .party-member__indicator {
    width: 10px;
    height: 10px;
}

/* ========================================
   QUICK ACTION BAR
   ======================================== */

.quick-action-bar {
    display: flex;
    gap: 8px;
    margin: 0 24px;
    padding: 12px 16px;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}

.quick-action-bar::-webkit-scrollbar {
    display: none;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

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

.quick-action__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.quick-action__icon svg {
    width: 18px;
    height: 18px;
}

.quick-action:hover .quick-action__icon {
    background: var(--accent);
    color: white;
}

.quick-action__icon--gold {
    color: #eab308;
}

.quick-action:hover .quick-action__icon--gold {
    background: #eab308;
    color: #1b1b1b;
}

.quick-action__icon--blue {
    color: #3b82f6;
}

.quick-action:hover .quick-action__icon--blue {
    background: #3b82f6;
    color: white;
}

.quick-action__icon--green {
    color: #22c55e;
}

.quick-action:hover .quick-action__icon--green {
    background: #22c55e;
    color: white;
}

.quick-action__icon--purple {
    color: #8b5cf6;
}

.quick-action:hover .quick-action__icon--purple {
    background: #8b5cf6;
    color: white;
}

.quick-action__icon--cyan {
    color: #06b6d4;
}

.quick-action:hover .quick-action__icon--cyan {
    background: #06b6d4;
    color: white;
}

.quick-action__icon--red {
    color: #FF4655;
}

.quick-action:hover .quick-action__icon--red {
    background: #FF4655;
    color: white;
}

.quick-action__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.quick-action:hover .quick-action__label {
    color: white;
}

/* ========================================
   QUICK ACTIONS CARD
   ======================================== */

.quick-card {
    width: 180px;
    flex-shrink: 0;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.quick-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
}

.quick-card__header svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.quick-card__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.quick-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.quick-card__btn svg {
    width: 24px;
    height: 24px;
}

.quick-card__btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.quick-card__btn--gold:hover {
    background: #eab308;
}

.quick-card__btn--blue:hover {
    background: #3b82f6;
}

.quick-card__btn--green:hover {
    background: #22c55e;
}

.quick-card__btn--purple:hover {
    background: #8b5cf6;
}

/* ========================================
   SECTION TITLES
   ======================================== */

.section-title--news {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 24px 12px 24px;
}

/* ========================================
   NEWS CARD (Medium)
   ======================================== */

/* ═══════════════════════════════════════════════
   NEWS SECTION - Horizontal Carousel
   ═══════════════════════════════════════════════ */

.news-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    margin-bottom: 16px;
    max-width: 100%;
    box-sizing: border-box;
}

.news-carousel-header .section-title {
    margin: 0;
    padding: 0;
    flex-shrink: 1;
    min-width: 0;
}

.news-carousel-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.news-carousel-nav__btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.news-carousel-nav__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.news-carousel-nav__btn svg {
    width: 20px;
    height: 20px;
}

/* Carousel Container */
.news-carousel {
    position: relative;
    padding: 0 24px;
    margin-bottom: 16px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Hide useless dots */
.news-carousel__dots {
    display: none;
}

.news-carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
}

.news-carousel__track::-webkit-scrollbar {
    display: none;
}

/* News Cards */
.news-carousel__card {
    position: relative;
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.news-carousel__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Card Image */
.news-carousel__image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.news-carousel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-carousel__card:hover .news-carousel__image img {
    transform: scale(1.08);
}

.news-carousel__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--accent);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 2;
}

/* Icon variant for changelog/discord cards */
.news-carousel__image--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.news-carousel__image--icon svg {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.news-carousel__card:hover .news-carousel__image--icon svg {
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Card Content */
.news-carousel__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    flex: 1;
}

.news-carousel__date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-carousel__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.news-carousel__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Muted variant */
.news-carousel__card--muted {
    background: rgba(255, 255, 255, 0.02);
}

.news-carousel__card--muted:hover {
    background: var(--bg-card);
}

/* Carousel Dots */
.news-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
}

.news-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.news-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.news-carousel__dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent);
}

/* Category Meta */
.news-carousel__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.news-carousel__category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-carousel__category::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.news-carousel__category--update {
    background: rgba(34, 197, 94, 0.15);
    color: #4ADE80;
}

.news-carousel__category--news {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
}

.news-carousel__category--guide {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
}

/* Image Placeholder */
.news-carousel__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
}

.news-carousel__image-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    opacity: 0.3;
}

/* Featured Card */
.news-carousel__card--featured {
    min-width: 340px;
    border-color: rgba(139, 92, 246, 0.3);
}

.news-carousel__card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #A78BFA);
    z-index: 1;
}

.news-carousel__card--featured .news-carousel__title {
    font-size: 28px;
}

/* Edit Button */
.news-card__edit {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    opacity: 0;
}

/* Only show on hover when admin */
.admin-mode .news-carousel__card:hover .news-card__edit {
    display: flex;
    opacity: 1;
}

/* Add News Button */
.news-carousel-nav__btn--add {
    background: rgba(255, 70, 85, 0.15);
    border-color: rgba(255, 70, 85, 0.3);
    color: var(--accent);
    margin-right: 8px;
}

.news-carousel-nav__btn--add:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Skeleton Loading */
.news-carousel__card--skeleton {
    pointer-events: none;
}

.news-carousel__card--skeleton .skeleton {
    background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-card) 50%, var(--bg-elevated) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 8px;
}

.news-carousel__card--skeleton .news-carousel__image {
    background: var(--bg-elevated);
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty News Card */
.news-carousel__card--empty {
    pointer-events: none;
    opacity: 0.6;
}

/* ========================================
   NEWS EDITOR MODAL STYLES
   ======================================== */

.md-editor-meta {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.md-editor-meta__row {
    display: flex;
    gap: 12px;
}

.md-editor-meta__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.md-editor-meta__field label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.md-editor-meta__field input {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.md-editor-meta__field input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.md-editor-meta__field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.md-editor {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 300px;
}

.md-editor-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.md-editor-toolbar__group {
    display: flex;
    gap: 2px;
    padding-right: 8px;
    margin-right: 8px;
    border-right: 1px solid var(--border);
}

.md-editor-toolbar__group:last-child {
    border-right: none;
    margin-right: 0;
}

.md-editor-toolbar__group--right {
    margin-left: auto;
}

.md-editor-toolbar button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.md-editor-toolbar button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.md-editor-toolbar button.active {
    background: var(--accent);
    color: white;
}

.md-editor-toolbar button[data-action="preview"] {
    width: auto;
    padding: 0 12px;
    font-size: 13px;
    gap: 6px;
}

.md-editor-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.md-editor-pane--edit {
    background: var(--bg-card);
}

.md-editor-pane--preview {
    background: var(--bg-card);
    padding: 20px;
    overflow-y: auto;
}

.md-editor-pane textarea {
    flex: 1;
    width: 100%;
    min-height: 250px;
    padding: 16px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
}

.md-editor-pane textarea:focus {
    outline: none;
}

.md-editor-pane textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.md-preview {
    color: var(--text-primary);
    line-height: 1.7;
}

.md-preview h1, .md-preview h2, .md-preview h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.md-preview p {
    margin-bottom: 12px;
}

.md-preview ul, .md-preview ol {
    margin-left: 24px;
    margin-bottom: 12px;
}

.md-preview a {
    color: var(--accent);
}

.md-preview code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.news-card__edit:hover {
    background: rgba(255, 70, 85, 0.8);
    color: white;
}

.news-card__edit svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-carousel__card {
        flex: 0 0 280px;
    }
    
    .news-carousel__image {
        height: 140px;
    }
    
    .news-carousel-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .news-carousel {
        padding: 0 16px;
    }
    
    .news-carousel__card {
        flex: 0 0 260px;
    }
    
    .news-carousel__content {
        padding: 16px;
    }
}

/* ========================================
   SESSION ITEM IMPROVEMENTS
   ======================================== */

.session-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.session-item__left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.session-item__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.session-item__progress {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.session-item__progress-bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.session-item__progress-bar > div {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}

/* ========================================
   CHARACTER ITEM IMPROVEMENTS
   ======================================== */

.character-item__portrait {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.character-item__portrait img[style*="display: none"] + .character-item__initial,
.character-item__initial {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.character-item__portrait img:not([style*="display: none"]) + .character-item__initial {
    display: none;
}

/* Main Character Highlight */
.character-item--main {
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
}

.character-item--main:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: #FFC107;
}

.character-item--main .character-item__name {
    color: #FFC107;
}

.character-item__main-badge {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFC107;
    color: #1a1a1a;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 1px 5px;
    border-radius: 3px;
    line-height: 1.3;
    z-index: 2;
    white-space: nowrap;
}

.character-item__xp {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.character-item__xp-bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.character-item__xp-bar > div {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
    border-radius: 2px;
}

.character-item__xp span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* Ruleset Badge Small */
.ruleset-badge--sm {
    padding: 4px 8px;
    font-size: 10px;
}

.ruleset-badge--sm img {
    width: auto;
    height: 16px;
    max-width: 24px;
}

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

@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
    }
    
    .continue-card {
        min-width: 100%;
        height: 280px;
    }
    
    .continue-card__character {
        right: 10px;
        width: 200px;
        height: 280px;
    }
    
    .next-session-card {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 24px;
    }
    
    .next-session-card__date {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
    }
    
    .next-session-card__num {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .continue-card {
        height: 320px;
    }
    
    .continue-card__character {
        right: -20px;
        width: 180px;
        height: 260px;
    }
    
    .continue-card__glass {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 14px 16px;
    }
    
    .continue-card__glass-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .continue-card__title {
        font-size: 22px;
    }
    
    .continue-card__btn {
        width: 100%;
        justify-content: center;
    }
    
    .session-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .session-item__right {
        align-items: flex-start;
        flex-direction: row;
        gap: 12px;
    }
}

/* ========================================
   GM MESSAGE BOARD
   ======================================== */

.message-board {
    margin: 0 24px;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.message-board__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.message-board__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #cc3844 100%);
    border-radius: 10px;
}

.message-board__icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.message-board__meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.message-board__label {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.message-board__date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.message-board__edit {
    width: 32px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-mode .message-board__edit {
    display: flex;
}

.message-board__edit:hover {
    background: var(--accent);
    color: white;
}

.message-board__edit svg {
    width: 16px;
    height: 16px;
}

.message-board__content {
    padding: 16px 20px;
}

.message-board__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.message-board__content strong {
    color: white;
    font-weight: 600;
}

.message-board__content a {
    color: var(--accent);
    text-decoration: none;
}

.message-board__content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .message-board {
        margin: 0 16px;
    }
    
    .message-board__content {
        padding: 14px 16px;
    }
}

/* ========================================
   PARTY CARD ENHANCEMENTS
   ======================================== */

.party-member {
    position: relative;
}

.party-member__tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 140px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 50;
}

.party-member__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #252525;
}

.party-member:hover .party-member__tooltip {
    opacity: 1;
    visibility: visible;
}

.party-member__tooltip strong {
    display: block;
    font-size: 13px;
    color: white;
    margin-bottom: 2px;
}

.party-member__tooltip span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.party-member__tooltip small {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.party-card__chat-preview {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 11px;
    overflow: hidden;
}

.party-card__chat-author {
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
}

.party-card__chat-msg {
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   QUICK CARD 3-COLUMN GRID
   ======================================== */

.quick-card__grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.quick-card__btn--purple:hover {
    background: #8b5cf6;
}

.quick-card__btn--cyan:hover {
    background: #06b6d4;
}

/* ========================================
   DICE LUCK WIDGET
   ======================================== */

.dice-luck {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.dice-luck__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.dice-luck__value {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.dice-luck__value--crit {
    color: #22c55e;
}

.dice-luck__value--fumble {
    color: var(--accent);
}

.dice-luck__label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

/* ========================================
   SESSION TIMER WIDGET
   ======================================== */

.session-timer__live {
    font-size: 11px;
    color: #22c55e;
    animation: pulse 2s infinite;
}

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

.session-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.session-timer__display {
    flex: 1;
}

.session-timer__value {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.session-timer__controls {
    display: flex;
    gap: 8px;
}

.session-timer__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.session-timer__btn.active {
    background: rgba(234, 179, 8, 0.2);
    border-color: #eab308;
    color: #eab308;
}

.session-timer__btn--stop:hover {
    background: rgba(255, 70, 85, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.session-timer__btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   ACHIEVEMENTS WIDGET
   ======================================== */

.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.achievement {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    opacity: 0.3;
    filter: grayscale(1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.achievement--unlocked {
    opacity: 1;
    filter: none;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.achievement:hover {
    transform: scale(1.1);
}

.achievement__icon {
    font-size: 20px;
}

.widget__link--small {
    font-size: 12px;
}

.widget--compact {
    max-width: none;
}

.widget__period {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   QUICK ACTION BAR RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .quick-action-bar {
        margin: 0 16px;
        padding: 10px 12px;
        gap: 6px;
    }
    
    /* Quick Actions: nur Icons auf Mobile */
    .quick-action {
        padding: 10px;
        gap: 0;
        flex-direction: column;
        min-width: auto;
    }
    
    .quick-action__icon {
        width: 36px;
        height: 36px;
    }
    
    .quick-action__icon svg {
        width: 18px;
        height: 18px;
    }
    
    .quick-action__label {
        display: none;
    }
    
    .party-card--minimal {
        padding: 12px 16px;
    }
    
    .party-card--minimal .party-member {
        width: 32px;
        height: 32px;
    }
    
    .party-card--minimal .party-member__initial {
        font-size: 12px;
    }
}

/* ========================================
   HUB SHOWCASE - News + Feature Stacked
   ======================================== */

.hub-showcase {
    display: block;
    padding: 0;
    margin-bottom: 0;
}

.hub-showcase__divider {
    display: none;
}

/* Feature Showcase Fullwidth Variant */
.feature-showcase--fullwidth {
    width: 100%;
}

.feature-showcase--fullwidth .feature-panel__inner {
    gap: 60px;
}

.feature-showcase--fullwidth .feature-panel__image {
    width: 40%;
    min-height: 320px;
}

/* ========================================
   NEWS SECTION - Full Width
   ======================================== */

.news-section {
    width: 100%;
}

.news-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.news-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    margin: 0;
}

.news-section__icon {
    color: var(--accent);
    font-size: 12px;
}

.news-section__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-section__link:hover {
    color: white;
}

.news-section__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.news-section__link:hover svg {
    transform: translateX(4px);
}

/* Category Tabs - Minimal */
.news-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.news-tab {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.news-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.news-tab.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
}

/* News Layout - Featured + List */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
    min-height: 420px;
}

.news-layout--loading {
    opacity: 0.6;
}

/* Featured Article - Clean Design */
.news-featured {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #1a1a1a;
    transition: transform 0.3s ease;
}

.news-featured:hover {
    transform: translateY(-4px);
}

.news-featured__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    transition: transform 0.4s ease;
}

.news-featured:hover .news-featured__image {
    transform: scale(1.03);
}

.news-featured__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-featured__placeholder svg {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.1);
}

.news-featured__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
    transition: background 0.3s ease;
}

.news-featured:hover .news-featured__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.news-featured__content {
    position: relative;
    padding: 28px;
    z-index: 1;
}

.news-featured__category {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Category Colors - Subtle */
.news-featured__category--news { background: rgba(59, 130, 246, 0.3); }
.news-featured__category--update { background: rgba(34, 197, 94, 0.3); }
.news-featured__category--guide { background: rgba(168, 85, 247, 0.3); }

.news-featured__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-featured__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 500px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured__arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.news-featured:hover .news-featured__arrow {
    opacity: 1;
    transform: translateX(0);
}

.news-featured__arrow svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* News List (right side) - Dark Cards */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 420px;
    padding-right: 8px;
}

.news-list::-webkit-scrollbar {
    width: 4px;
}

.news-list::-webkit-scrollbar-track {
    background: transparent;
}

.news-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.news-list-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: #1a1a1a;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.news-list-item:hover {
    background: #222222;
    transform: translateX(4px);
}

.news-list-item__image {
    width: 72px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #252525;
    position: relative;
    overflow: hidden;
}

.news-list-item__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-list-item__placeholder svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.1);
}

.news-list-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.news-list-item__category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
}

/* Category Colors for List Items */
.news-list-item__category--news { color: #60a5fa; }
.news-list-item__category--update { color: #4ade80; }
.news-list-item__category--guide { color: #c084fc; }

.news-list-item__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Skeletons */
.news-featured--skeleton {
    background: #1a1a1a;
}

.news-featured--skeleton .skeleton,
.news-list-item--skeleton .skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #252525 50%,
        #1a1a1a 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.news-list-item--skeleton {
    position: relative;
    height: 68px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty State */
.news-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 300px;
    background: #1a1a1a;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.news-empty svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

.news-empty p {
    font-size: 14px;
    margin: 0;
}

/* ========================================
   NEWS SECTION - RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
    .news-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
    }
    
    .news-featured {
        min-height: 300px;
    }
    
    .news-list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        gap: 12px;
        padding-right: 0;
        padding-bottom: 8px;
    }
    
    .news-list-item {
        flex-shrink: 0;
        width: 280px;
    }
    
    .news-featured__title {
        font-size: 28px;
    }
    
    .news-featured__content {
        padding: 24px;
    }
    
    .news-featured__arrow {
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 640px) {
    .news-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .news-section__title {
        font-size: 28px;
    }
    
    .news-tabs {
        width: 100%;
        overflow-x: auto;
    }
    
    .news-featured__title {
        font-size: 24px;
    }
    
    .news-featured__arrow {
        display: none;
    }
    
    .news-list-item {
        width: 240px;
    }
}

/* ========================================
   FEATURE SHOWCASE - Full Width
   ======================================== */

.feature-showcase {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Feature Content */
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-panel {
    display: none;
    flex: 1;
}

.feature-panel.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

/* Panel Layout - Image Left, Text Right */
.feature-panel__inner {
    display: flex;
    flex: 1;
    gap: 40px;
}

.feature-panel__image {
    width: 45%;
    min-height: 360px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.feature-panel__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.feature-panel__image--placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    opacity: 0.2;
}

/* Feature Panel - Reverse Layout (Bild rechts) */
.feature-panel--reverse .feature-panel__inner {
    flex-direction: row-reverse;
}

/* Feature Panel - Highlight */
.feature-panel--highlight .feature-panel__inner {
    background: rgba(255, 70, 85, 0.05);
    border: 1px solid rgba(255, 70, 85, 0.15);
    border-radius: 16px;
    padding: 32px;
}

/* Feature Panel - Icon Container */
.feature-panel__image--icon {
    background: rgba(255, 255, 255, 0.03);
}

.feature-panel__icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

/* Feature Panel - Badge im Titel */
.feature-panel__badge {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    color: white;
    vertical-align: middle;
}

/* Feature Tab - Badge */
.feature-tab__badge {
    display: inline-flex;
    margin-left: 6px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 3px;
    color: white;
}

.feature-panel__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Feature Tabs - Unified Canvas Style */
.feature-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.feature-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.feature-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 70, 85, 0.3);
}

.feature-panel__title {
    font-family: 'Dharma Gothic', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--text);
    margin: 0 0 16px 0;
}

.feature-panel__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 24px 0;
}

.feature-panel__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-panel__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
}

.feature-panel__list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-panel__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(255, 70, 85, 0.3);
}

.feature-panel__cta:hover {
    background: #ff5a6a;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(255, 70, 85, 0.4),
        0 0 40px rgba(255, 70, 85, 0.2);
}

.feature-panel__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.feature-panel__cta:hover svg {
    transform: translateX(4px);
}

/* ========================================
   HUB SHOWCASE - Responsive
   ======================================== */

@media (max-width: 1200px) {
    .feature-panel__inner {
        gap: 32px;
    }
    
    .feature-panel__image {
        min-height: 280px;
    }
}

@media (max-width: 900px) {
    .feature-panel__inner {
        flex-direction: column;
        gap: 24px;
    }
    
    .feature-panel__image {
        width: 100%;
        min-height: 200px;
    }
    
    .feature-tabs {
        justify-content: center;
    }
    
    .feature-panel__title {
        text-align: center;
    }
    
    .feature-panel__desc {
        text-align: center;
    }
    
    .feature-panel__list {
        align-items: center;
    }
    
    .feature-panel__cta {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .feature-tabs {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .feature-tab {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .feature-panel__title {
        font-size: 28px;
    }
    
    .feature-panel__image {
        min-height: 160px;
    }
}
