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

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Ken Burns Background */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .background-image {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 110%;
            height: 110%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 3s ease-in-out;
            animation: kenBurns 20s ease-in-out infinite;
        }

        .background-image.active {
            opacity: 0.7;
        }

        @keyframes kenBurns {
            0% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-45%, -45%) scale(1.1); }
            100% { transform: translate(-50%, -50%) scale(1); }
        }

        /* Pages */
        .page {
            display: none;
            min-height: 100vh;
            overflow-x: hidden;
            width: 100vw;
        }

        .page.active {
            display: block;
        }

        /* Content Overlay */
        .overlay {
            background: linear-gradient(to bottom,
                rgba(0,0,0,0.7) 0%,
                rgba(0,0,0,0.9) 100%);
            min-height: 100vh;
            padding: 40px 0;
            position: relative;
            z-index: 1;
            overflow-x: hidden;
            width: 100%;
        }

        /* Header - Small Logo Top Left */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            background: transparent;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 36px;
            letter-spacing: 2px;
            cursor: pointer;
        }

        .logo .latent {
            font-weight: 400;
        }

        .logo .flow {
            font-weight: 700;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Language Selector */
        .language-selector {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            color: #fff;
            padding: 8px 12px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center;
            padding-right: 28px;
        }

        .language-selector:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .language-selector:focus {
            outline: none;
            border-color: #fff;
        }

        .language-selector option {
            background: #1a1a1a;
            color: #fff;
            padding: 8px;
        }

        /* Main Content - offset for fixed header */
        #main-content {
            padding-top: 80px;
        }

        /* Hero Section */
        .hero-section {
            display: flex;
            gap: 20px;
            padding: 0 40px;
            margin-bottom: 40px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .hero-section::-webkit-scrollbar {
            display: none;
        }

        .hero-card {
            flex-shrink: 0;
            width: 441px;  /* 2x 200px + 20px gap + 5% */
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(10px);
        }

        .hero-card.landscape {
            width: 720px;  /* 2x 350px + 20px gap */
        }

        .hero-card:hover {
            transform: scale(1.02);
        }

        .hero-image {
            width: 100%;
            aspect-ratio: 9/16;
            object-fit: cover;
            background: #1a1a1a;
        }

        .hero-image.landscape {
            aspect-ratio: 21/9;
        }

        .hero-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px;
            padding-top: 150px;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
        }

        .hero-card.landscape .hero-info {
            padding: 20px 30px;
            padding-top: 80px;
        }

        .hero-name {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            line-height: 1.0;
            letter-spacing: -2px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.9);
        }

        .hero-card.landscape .hero-name {
            font-size: 36px;
        }

        .hero-meta {
            font-size: 24px;
            color: #ccc;
            margin-top: 10px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }

        .hero-card.landscape .hero-meta {
            font-size: 18px;
        }

        .nav-link {
            padding: 8px 16px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 13px;
            cursor: pointer;
            border-radius: 18px;
            transition: all 0.3s;
            opacity: 0.6;
            text-decoration: none;
        }

        .nav-link:hover {
            opacity: 1;
            background: rgba(255,255,255,0.2);
        }

        /* Main Category Section */
        .main-category {
            margin-bottom: 60px;
        }

        .main-category-header {
            display: none; /* Hidden */
        }

        /* Subcategory Row */
        .subcategory-row {
            margin-bottom: 15px;
        }

        /* Subcategory Header with Controls */
        .subcategory-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            margin-bottom: 5px;
            gap: 20px;
        }

        .subcategory-title {
            font-size: 30px;
            font-weight: 500;
            color: #888;
            margin: 0;
        }

        .subcategory-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Sort Toggle */
        .sort-toggle {
            display: flex;
            gap: 6px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            padding: 4px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .sort-btn {
            padding: 9px 21px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            border-radius: 24px;
            transition: all 0.3s;
            opacity: 0.6;
        }

        .sort-btn.active {
            background: rgba(255,255,255,0.2);
            opacity: 1;
        }

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

        /* Offline Button */
        .offline-btn {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px 21px;
            border: none;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
            opacity: 0.6;
        }

        .offline-btn:hover {
            opacity: 1;
            background: rgba(50,150,50,0.4);
            border-color: rgba(50,150,50,0.5);
        }

        .offline-btn.saved {
            background: rgba(50,150,50,0.3);
            border-color: rgba(50,150,50,0.5);
            opacity: 1;
        }

        .offline-btn .icon {
            font-size: 21px;
        }

        /* Filter Dropdown */
        .filter-dropdown {
            position: relative;
        }

        .filter-btn {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 9px 21px;
            border: none;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            color: #fff;
            font-size: 18px;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
            opacity: 0.6;
        }

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

        .filter-btn.active {
            opacity: 1;
            background: rgba(100,100,255,0.3);
            border-color: rgba(100,100,255,0.5);
        }

        .filter-btn .arrow {
            font-size: 15px;
            transition: transform 0.3s;
        }

        .filter-btn.open .arrow {
            transform: rotate(180deg);
        }

        .filter-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 8px;
            background: rgba(20,20,20,0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            min-width: 180px;
            padding: 8px 0;
            z-index: 100;
            display: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .filter-menu.open {
            display: block;
        }

        .filter-option {
            padding: 10px 16px;
            font-size: 13px;
            cursor: pointer;
            transition: background 0.2s;
            color: #ccc;
        }

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

        .filter-option.active {
            color: #fff;
            background: rgba(100,100,255,0.2);
        }

        .filter-option.all {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 4px;
            padding-bottom: 12px;
        }

        /* Header Buttons - Share & Colour */
        .header-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border: none;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            color: #fff;
            font-size: 13px;
            cursor: pointer;
            border-radius: 18px;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
            opacity: 0.8;
        }

        .header-btn:hover {
            opacity: 1;
            background: rgba(255,255,255,0.2);
        }

        .share-btn:hover {
            background: rgba(100,200,100,0.3);
            border-color: rgba(100,200,100,0.5);
        }

        /* Colour Dropdown */
        .colour-dropdown {
            position: relative;
        }

        .colour-btn .colour-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
        }

        .colour-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: rgba(20,20,20,0.95);
            backdrop-filter: blur(20px);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            padding: 12px;
            z-index: 1001;
            display: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }

        .colour-menu.open {
            display: block;
        }

        .colour-options {
            display: flex;
            gap: 10px;
        }

        .colour-option {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 3px solid transparent;
        }

        .colour-option:hover {
            transform: scale(1.15);
        }

        .colour-option.active {
            border-color: #fff;
            box-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

        .colour-option.white { background: #ffffff; }
        .colour-option.red { background: #ff4444; }
        .colour-option.blue { background: #4488ff; }
        .colour-option.yellow { background: #ffdd44; }
        .colour-option.green { background: #44dd66; }

        /* Download Progress Modal */
        .download-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .download-modal.active {
            display: flex;
        }

        .download-modal-content {
            background: rgba(30,30,30,0.95);
            border-radius: 24px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .download-modal-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .download-modal-subtitle {
            font-size: 16px;
            color: #888;
            margin-bottom: 30px;
        }

        .download-progress-container {
            background: rgba(0,0,0,0.5);
            border-radius: 12px;
            height: 24px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .download-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #44dd66, #22aa44);
            border-radius: 12px;
            transition: width 0.3s ease;
            width: 0%;
        }

        .download-progress-text {
            font-size: 14px;
            color: #888;
            margin-bottom: 10px;
        }

        .download-progress-detail {
            font-size: 12px;
            color: #666;
            margin-bottom: 20px;
        }

        .download-modal-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .download-modal-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .download-modal-btn.cancel {
            background: rgba(100,100,100,0.5);
            color: #fff;
        }

        .download-modal-btn.cancel:hover {
            background: rgba(150,100,100,0.6);
        }

        .download-modal-btn.done {
            background: rgba(50,150,50,0.8);
            color: #fff;
        }

        .download-modal-btn.done:hover {
            background: rgba(50,180,50,0.9);
        }

        /* Offline Button States */
        .offline-btn.downloading {
            background: rgba(100,150,255,0.4);
            border-color: rgba(100,150,255,0.6);
            opacity: 1;
            animation: downloadPulse 1.5s infinite;
        }

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

        .offline-btn .progress-text {
            font-size: 10px;
            margin-left: 4px;
        }

        /* Offline Status Badge */
        .offline-status {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(50,150,50,0.3);
            color: #6f6;
            margin-left: 10px;
        }

        .offline-status .size {
            color: #888;
        }

        /* Slider Container */
        .slider-container {
            position: relative;
            padding: 0 40px;
        }

        .slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .slider::-webkit-scrollbar {
            display: none;
        }

        /* Format Toggle */
        .format-toggle {
            display: flex;
            gap: 10px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            padding: 6px;
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .format-btn {
            padding: 8px 16px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 13px;
            cursor: pointer;
            border-radius: 18px;
            transition: all 0.3s;
            opacity: 0.6;
        }

        .format-btn.active {
            background: rgba(255,255,255,0.2);
            opacity: 1;
        }

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

        /* Character Card */
        .character-card {
            flex-shrink: 0;
            width: 200px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(10px);
        }

        .character-card.landscape {
            width: 350px;
        }

        .character-card:hover {
            transform: scale(1.05);
            z-index: 10;
        }

        .character-image {
            width: 100%;
            aspect-ratio: 9/16;
            object-fit: cover;
            background: #1a1a1a;
        }

        .character-image.landscape {
            aspect-ratio: 21/9;
        }

        .character-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 20px;
            padding-top: 120px;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
        }

        .character-name {
            font-size: 30px;
            font-weight: 700;
            color: #fff;
            line-height: 1.0;
            letter-spacing: -1px;
            text-shadow: 0 3px 15px rgba(0,0,0,0.8);
        }

        .character-meta {
            font-size: 20px;
            color: #ccc;
            margin-top: 6px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }

        /* Landscape mode - less padding */
        .character-card.landscape .character-info {
            padding: 15px 20px;
            padding-top: 60px;
        }

        /* Favorite Indicator (small heart on card) */
        .favorite-indicator {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 28px;
            height: 28px;
            background: rgba(255, 80, 80, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            z-index: 5;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* Long-Press Context Menu */
        .context-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .context-menu.active {
            display: flex;
        }

        .context-menu-header {
            text-align: center;
            padding: 40px 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .context-menu-name {
            font-size: 48px;
            font-weight: 700;
            color: white;
        }

        /* Context menu inner container */
        .context-menu-container {
            background: rgba(30, 30, 30, 0.95);
            border-radius: 32px;
            overflow: hidden;
            min-width: 500px;
            max-width: 90vw;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: contextMenuIn 0.2s ease-out;
        }

        @keyframes contextMenuIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .context-menu-options {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .context-menu-btn {
            display: flex;
            align-items: center;
            gap: 32px;
            padding: 40px 60px;
            border: none;
            background: transparent;
            color: white;
            font-size: 36px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
            width: 100%;
        }

        .context-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .context-menu-btn:active {
            background: rgba(255, 255, 255, 0.2);
        }

        .context-menu-icon {
            font-size: 56px;
            width: 80px;
            text-align: center;
        }

        .context-menu-label {
            font-size: 36px;
        }

        /* Favorite action active state */
        .context-menu-btn.favorite-action.active {
            background: rgba(255, 80, 80, 0.2);
        }

        .context-menu-btn.favorite-action.active .context-menu-icon {
            color: #ff5050;
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            .context-menu-container {
                min-width: 90vw;
            }

            .context-menu-btn {
                padding: 48px 60px;
            }

            .context-menu-icon {
                font-size: 64px;
            }

            .context-menu-label {
                font-size: 40px;
            }

            .context-menu-name {
                font-size: 56px;
            }
        }

        /* Slider Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 80%;
            background: rgba(0,0,0,0.7);
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 5;
        }

        .slider-container:hover .slider-arrow {
            opacity: 1;
        }

        .slider-arrow:hover {
            background: rgba(0,0,0,0.9);
        }

        .slider-arrow.left {
            left: 0;
            border-radius: 0 8px 8px 0;
        }

        .slider-arrow.right {
            right: 0;
            border-radius: 8px 0 0 8px;
        }

        /* Detail Page */
        .back-button {
            position: fixed;
            top: 30px;
            left: 30px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 24px;
            cursor: pointer;
            font-size: 16px;
            z-index: 100;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .back-button:hover {
            background: rgba(0,0,0,0.8);
        }

        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.95);
            z-index: 1000;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .modal-overlay.active {
            display: block;
        }

        .modal-content {
            width: 100%;
            margin: 40px 0;
            padding: 0;
            background: #000;
        }

        .modal-close {
            position: fixed;
            top: 20px;
            right: 30px;
            font-size: 36px;
            color: #fff;
            cursor: pointer;
            z-index: 1001;
            opacity: 0.7;
            transition: opacity 0.3s;
            background: rgba(0,0,0,0.6);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        /* Modal Ken Burns Hero */
        .modal-hero-container {
            position: sticky;
            top: 0;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 40px;
            aspect-ratio: 9/16;
            border-radius: 24px;
            overflow: hidden;
            z-index: 1;
        }

        .modal-hero-container.landscape {
            aspect-ratio: 21/9;
        }

        /* Horizontal Mode - Smaller Text */
        .modal-hero-container.landscape .modal-hero-logo {
            font-size: 22px; /* 70% smaller */
        }

        .modal-hero-container.landscape .modal-hero-name {
            font-size: 72px; /* 50% smaller */
        }

        .modal-hero-container.landscape .modal-hero-meta {
            font-size: 20px; /* 50% smaller */
        }

        .modal-hero-container.landscape .modal-hero-overlay {
            padding: 30px; /* Smaller padding */
        }

        /* Landscape mode for scrolling overlay */
        .modal-hero-overlay-scroll.landscape {
            padding: 0 30px 30px 30px;
            margin-top: -200px;
        }

        .modal-hero-overlay-scroll.landscape .modal-hero-name {
            font-size: 72px;
        }

        .modal-hero-overlay-scroll.landscape .modal-hero-meta {
            font-size: 20px;
        }

        /* Modal Navigation Arrows */
        .modal-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 200px;
            background: rgba(0,0,0,0.3);
            border: none;
            color: #fff;
            font-size: 48px;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s, background 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-hero-container:hover .modal-nav-arrow {
            opacity: 1;
        }

        .modal-nav-arrow:hover {
            background: rgba(0,0,0,0.6);
        }

        .modal-nav-arrow.left {
            left: 0;
            border-radius: 0 16px 16px 0;
        }

        .modal-nav-arrow.right {
            right: 0;
            border-radius: 16px 0 0 16px;
        }

        /* Action Buttons Container - below image */
        .modal-action-buttons {
            display: none;
        }

        /* Regenerate Button */
        .regenerate-btn {
            background: rgba(255,100,100,0.8);
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 24px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .regenerate-btn:hover {
            background: rgba(255,50,50,0.9);
            transform: scale(1.05);
        }

        .regenerate-btn:disabled {
            background: rgba(100,100,100,0.8);
            cursor: not-allowed;
            transform: none;
        }

        .regenerate-btn.loading {
            animation: pulse 1s infinite;
        }

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

        /* Small Regenerate Button */
        .regenerate-btn-small {
            background: #000;
            color: #fff;
            border: 1px solid #333;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .regenerate-btn-small:hover {
            background: #222;
            border-color: #555;
        }

        .regenerate-btn-small:disabled {
            background: #111;
            border-color: #222;
            cursor: not-allowed;
            opacity: 0.5;
        }

        .regenerate-btn-small.loading {
            animation: pulse 1s infinite;
        }

        /* Upload Drop Zone */
        .upload-drop-zone {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 150, 255, 0.3);
            border: 4px dashed rgba(0, 150, 255, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 20;
            backdrop-filter: blur(5px);
        }

        .upload-drop-zone.active {
            display: flex;
        }

        .upload-drop-zone-text {
            font-size: 32px;
            font-weight: 600;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            pointer-events: none;
        }

        .upload-btn {
            background: rgba(0, 150, 255, 0.8);
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 24px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .upload-btn:hover {
            background: rgba(0, 120, 255, 0.9);
            transform: scale(1.05);
        }

        .upload-btn:disabled {
            background: rgba(100,100,100,0.8);
            cursor: not-allowed;
            transform: none;
        }

        .upload-btn.loading {
            animation: pulse 1s infinite;
        }

        .paste-btn {
            background: rgba(100, 200, 100, 0.8);
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 24px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .paste-btn:hover {
            background: rgba(80, 180, 80, 0.9);
            transform: scale(1.05);
        }

        .paste-btn:disabled {
            background: rgba(100,100,100,0.8);
            cursor: not-allowed;
            transform: none;
        }

        .paste-btn.loading {
            animation: pulse 1s infinite;
        }

        .copy-prompt-btn {
            display: block;
            margin: 10px auto 30px;
            background: rgba(150, 150, 150, 0.6);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .copy-prompt-btn:hover {
            background: rgba(100, 200, 100, 0.8);
            transform: scale(1.05);
        }

        /* No Image Placeholder */
        .modal-hero-container.no-image {
            aspect-ratio: 21/9;
        }

        .no-image-placeholder {
            width: 100%;
            height: 100%;
            background: rgba(50,50,50,0.5);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(255,255,255,0.2);
            border-radius: 24px;
        }

        .no-image-placeholder-text {
            font-size: 48px;
            font-weight: 700;
            color: rgba(255,255,255,0.6);
            margin-bottom: 15px;
            text-align: center;
        }

        .no-image-placeholder-hint {
            font-size: 18px;
            color: rgba(255,255,255,0.4);
        }

        /* Wiki Thumbnail */
        .wiki-thumbnail-container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 auto;
            max-width: 1200px;
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            border-radius: 0;
        }

        .wiki-thumbnail {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid rgba(255,255,255,0.2);
            cursor: pointer;
            transition: all 0.3s;
        }

        .wiki-thumbnail:hover {
            border-color: rgba(100,200,255,0.8);
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(100,200,255,0.3);
        }

        .wiki-thumbnail:active {
            transform: scale(0.98);
        }

        .wiki-thumbnail-label {
            display: none;
        }

        .modal-hero {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: modalKenBurns 20s ease-in-out infinite;
        }

        .modal-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 60px;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            pointer-events: none;
        }

        /* Scrolling overlay for name/meta - positioned after sticky image */
        .modal-hero-overlay-scroll {
            position: relative;
            z-index: 2;
            padding: 0 60px 20px 60px;
            margin-top: -350px;
            margin-bottom: 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 50%);
        }

        .modal-hero-name {
            font-size: 144px;
            font-weight: 700;
            letter-spacing: -4px;
            line-height: 1.0;
            margin-bottom: 30px;
            text-shadow: 0 6px 30px rgba(0,0,0,0.6);
        }

        .modal-hero-meta {
            font-size: 40px;
            font-weight: 400;
            opacity: 0.8;
            text-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        .modal-hero-logo {
            position: absolute;
            top: 40px;
            left: 40px;
            font-size: 72px;
            letter-spacing: -2px;
            color: #fff;
            pointer-events: none;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            z-index: 10;
        }

        .modal-hero-logo .latent {
            font-weight: 400;
        }

        .modal-hero-logo .flow {
            font-weight: 700;
        }

        @keyframes modalKenBurns {
            0%, 100% {
                transform: scale(1) translate(0, 0);
            }
            25% {
                transform: scale(1.15) translate(-3%, -3%);
            }
            50% {
                transform: scale(1.2) translate(2%, -2%);
            }
            75% {
                transform: scale(1.1) translate(-1%, 1%);
            }
        }

        .modal-title {
            font-size: 56px;
            font-weight: 700;
            letter-spacing: -2px;
            margin-bottom: 20px;
        }

        .modal-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            color: #888;
            font-size: 18px;
        }

        .modal-prompt {
            position: relative;
            z-index: 2;
            font-size: 47px;
            line-height: 1.2;
            color: #ccc;
            background: rgba(0,0,0,0.7);
            padding: 30px;
            border-radius: 0;
            margin: 0 auto;
            max-width: 1200px;
        }

        .modal-images {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            background: #000;
            padding: 20px;
            border-radius: 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .modal-images img {
            width: 100%;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .modal-images img:hover {
            transform: scale(1.02);
        }

        /* Loading State */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
            font-size: 18px;
            color: #666;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 60px 40px;
            opacity: 0.5;
            font-size: 14px;
        }

        /* Search Overlay */
        .search-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.98);
            z-index: 3000;
            backdrop-filter: blur(20px);
            overflow-y: auto;
        }

        .search-overlay.active {
            display: block;
        }

        .search-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 40px;
        }

        .search-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .search-input-wrapper {
            flex: 1;
            position: relative;
        }

        .search-input {
            width: 100%;
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 24px;
            padding: 20px 60px 20px 24px;
            font-size: 24px;
            color: #fff;
            outline: none;
            transition: all 0.3s;
        }

        .search-input:focus {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.4);
        }

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

        .search-clear {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255,255,255,0.6);
            font-size: 24px;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .search-clear:hover {
            background: rgba(255,255,255,0.2);
            color: #fff;
        }

        .search-close {
            background: rgba(255,255,255,0.1);
            border: none;
            color: #fff;
            padding: 12px 24px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-close:hover {
            background: rgba(255,255,255,0.2);
        }

        .search-hint {
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 14px;
            margin-bottom: 40px;
        }

        .search-hint kbd {
            background: rgba(255,255,255,0.1);
            padding: 4px 8px;
            border-radius: 4px;
            font-family: monospace;
            margin: 0 4px;
        }

        .search-results {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }

        .search-result-card {
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(10px);
        }

        .search-result-card:hover {
            transform: scale(1.05);
        }

        .search-result-image {
            width: 100%;
            aspect-ratio: 9/16;
            object-fit: cover;
            background: #1a1a1a;
        }

        .search-result-info {
            padding: 16px;
        }

        .search-result-name {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .search-result-meta {
            font-size: 12px;
            color: #888;
        }

        .search-no-results {
            text-align: center;
            padding: 60px 20px;
            color: rgba(255,255,255,0.5);
            font-size: 18px;
        }

        .search-stats {
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            margin-bottom: 30px;
        }

        /* Mobile Responsive for Search */
        @media (max-width: 768px) {
            .hero-section {
                padding: 0 20px;
                flex-direction: column;
                gap: 15px;
            }

            .hero-card {
                width: 100%;
            }

            .hero-card.landscape {
                width: 100%;
            }

            .hero-name {
                font-size: 32px;
            }

            .hero-card.landscape .hero-name {
                font-size: 28px;
            }

            .hero-meta {
                font-size: 18px;
            }

            .search-container {
                padding: 40px 20px;
            }

            .search-input {
                font-size: 18px;
                padding: 16px 50px 16px 20px;
            }

            .search-results {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 15px;
            }

            .search-result-name {
                font-size: 16px;
            }

            .search-result-meta {
                font-size: 11px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 48px;
            }

            .main-category-header {
                font-size: 32px;
                padding: 0 20px;
            }

            .subcategory-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 0 20px;
            }

            .subcategory-title {
                font-size: 16px;
            }

            .subcategory-controls {
                width: 100%;
                justify-content: flex-start;
            }

            .sort-btn, .offline-btn, .filter-btn {
                font-size: 11px;
                padding: 5px 10px;
            }

            .filter-menu {
                min-width: 150px;
            }

            .filter-option {
                padding: 8px 12px;
                font-size: 12px;
            }

            .slider-container {
                padding: 0 20px;
            }

            .character-card {
                width: 140px;
            }

            .character-card.landscape {
                width: 260px;
            }

            .character-name {
                font-size: 18px;
            }

            .character-meta {
                font-size: 12px;
            }

            .character-info {
                padding: 12px;
            }

            .modal-hero-container {
                max-width: 100%;
            }

            .modal-hero-overlay {
                padding: 30px;
            }

            .modal-hero-name {
                font-size: 56px;
            }

            .modal-hero-meta {
                font-size: 24px;
            }

            .modal-hero-logo {
                font-size: 36px;
                top: 20px;
                left: 20px;
            }

            .slider-arrow {
                display: none;
            }

            .modal-title {
                font-size: 36px;
            }

            .top-nav {
                right: 20px;
            }

            .header-btn {
                font-size: 11px;
                padding: 6px 12px;
            }

            .colour-dot {
                width: 10px !important;
                height: 10px !important;
            }

            .colour-option {
                width: 28px;
                height: 28px;
            }
        }

/* === AUDIO PLAYERS === */
.audio-section {
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 10;
    background: #000;
    max-width: 1200px;
}

.audio-players {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1040px;
}

.audio-player-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 13px 20px;
    transition: background 0.3s ease;
}

.audio-player-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.audio-player-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: white;
}

.audio-chapter-num {
    font-size: 18px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    min-width: 31px;
}

.audio-chapter-name {
    font-size: 20px;
    font-weight: 500;
}

/* In-Progress State - Chapter wurde angefangen aber nicht beendet */
.audio-player-title.in-progress .audio-chapter-num,
.audio-player-title.in-progress .audio-chapter-name {
    color: #ff4444;
}

/* Completed State - Chapter wurde komplett gehört */
.audio-player-title.completed .audio-chapter-num,
.audio-player-title.completed .audio-chapter-name {
    color: #44ff44;
}

.audio-element {
    display: none;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.audio-btn-play {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.audio-btn-play:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.audio-btn-play.playing {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.audio-seek {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.audio-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.audio-seek::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.audio-seek::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.audio-seek::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.audio-time {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    min-width: 130px;
    text-align: right;
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .audio-players {
        max-width: 100%;
    }

    .audio-chapter-name {
        font-size: 13px;
    }

    .audio-btn-play {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .audio-time {
        font-size: 11px;
        min-width: 85px;
    }
}

/* === BIOGRAPHY TEXT SECTION === */
.biography-text-section {
    background: #000;
    padding: 20px;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 1200px;
}

.biography-text-container {
    position: relative;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.biography-text-container.collapsed {
    max-height: 400px;
}

.biography-text-container.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    pointer-events: none;
}

.biography-text-container.expanded {
    max-height: none;
}

.biography-text-content {
    max-width: 1040px;
}

.text-size-controls {
    display: flex;
    gap: 10px;
}

.text-size-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 72px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.text-size-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.biography-expand-btn {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.biography-expand-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .biography-text-section {
        padding: 15px;
    }

    .biography-text-content h2 {
        font-size: 24px !important;
    }

    .biography-text-content p {
        font-size: 16px !important;
    }
}

/* Video Biography Section */
.video-section {
    position: relative;
    z-index: 10;
    background: #000;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.video-section h3 {
    margin: 0 0 20px 0;
}

.video-section video {
    position: relative;
    z-index: 11;
}

/* Video Container with Play Overlay */
.video-container {
    position: relative;
    cursor: pointer;
    border-radius: 24px;
    overflow: hidden;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 20;
    transition: background 0.3s;
}

.video-container:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 8px;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.video-container:hover .video-play-btn {
    transform: scale(1.1);
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.video-container:active .video-play-btn {
    transform: scale(0.95);
}

/* Sources Section */
.sources-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
    user-select: none;
    -webkit-user-select: none;
}

.sources-header:active {
    opacity: 0.7;
}

.sources-toggle {
    font-size: 48px;
    color: white;
    transition: transform 0.3s ease;
}

.sources-content {
    padding: 20px 0;
}

.source-category {
    margin-bottom: 30px;
}

.source-item {
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.source-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.source-item a {
    word-break: break-word;
}

.source-item a:hover {
    text-decoration: underline;
}

.source-type,
.source-reliability {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 20px;
    margin-right: 8px;
}

.source-type {
    background: rgba(102, 170, 255, 0.2);
    color: #6af;
}

.source-reliability {
    background: rgba(102, 255, 170, 0.2);
    color: #6fa;
}

.license-item {
    background: rgba(255, 200, 100, 0.05);
    border-color: rgba(255, 200, 100, 0.1);
}

/* ========== ALIGNMENT VOTING WIDGET ========== */
.alignment-widget {
    margin: 40px auto;
    padding: 30px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.alignment-title {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.alignment-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.alignment-btn {
    padding: 16px 32px;
    font-size: 22px;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alignment-btn.good {
    background: white;
    color: black;
}

.alignment-btn.good:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.05);
}

.alignment-btn.evil {
    background: black;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.alignment-btn.evil:hover {
    background: rgba(30, 30, 30, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.alignment-btn.voted {
    animation: pulse 0.5s ease;
}

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

.alignment-emoji {
    font-size: 28px;
}

.alignment-bar-container {
    display: flex;
    height: 16px;
    background: rgba(50, 50, 50, 0.5);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.alignment-bar {
    height: 100%;
    transition: width 0.5s ease;
}

.alignment-bar.good-bar {
    background: white;
}

.alignment-bar.evil-bar {
    background: rgba(0, 0, 0, 0.8);
}

.alignment-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.alignment-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.alignment-badge.good {
    background: white;
    color: black;
}

.alignment-badge.evil {
    background: black;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
/* ========== END ALIGNMENT VOTING WIDGET ========== */
