        /* Live page specific styles */
        .live-container {
            display: flex;
            gap: 1rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem;
        }

        .live-content {
            background: var(--live-bg);
        }

        .stream-section {
            flex: 1;
            min-width: 0;
        }

        .chat-section {
            width: 380px;
            flex-shrink: 0;
        }

        .stream-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background: #000;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        /* ── Live Page Theme Variables ── */
        /* Updated 2026-03-06: Fixed light mode chat contrast (gold on light bg) */
        :root {
            --live-bg: var(--cream);
            --live-panel: #ffffff;
            --live-panel-alt: var(--gray-100);
            --live-text: var(--navy);
            --live-text-secondary: var(--gray-600);
            --live-text-muted: #52525B;  /* zinc-600: 7:1 on white, 6.4:1 on gray-100 */
            --live-border: var(--gray-200);
            --live-input-bg: var(--gray-100);
            --live-chat-bg: #ffffff;
            --live-chat-msg: var(--gray-100);
            --live-chat-system: #f0f0f8;
            --live-gold: #996F00;  /* darkened gold for light mode: 5.5:1 on white, 5:1 on gray-100 */
        }

        [data-theme="dark"] {
            --live-bg: #111827;
            --live-panel: #1F2937;
            --live-panel-alt: #111827;
            --live-text: var(--cream);
            --live-text-secondary: var(--gray-300);
            --live-text-muted: var(--gray-400);
            --live-border: var(--gray-700);
            --live-input-bg: #111827;
            --live-chat-bg: #111827;
            --live-chat-msg: #1F2937;
            --live-chat-system: #1a1a2e;
            --live-gold: var(--gold);  /* original gold is fine on dark backgrounds */
        }

        .stream-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Unmute overlay - shown when stream autoplays muted */
        .unmute-overlay {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            border: 2px solid var(--gold, #D4AF37);
            border-radius: 30px;
            padding: 0.625rem 1.25rem;
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
            animation: unmutePulse 2s ease-in-out infinite;
            font-family: inherit;
        }

        .unmute-overlay:hover {
            background: rgba(0, 0, 0, 0.95);
            border-color: #fff;
            transform: translateX(-50%) scale(1.05);
        }

        .unmute-overlay i {
            font-size: 1.125rem;
        }

        @keyframes unmutePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
            50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
        }

        .chat-wrapper {
            height: calc(100vh - 200px);
            min-height: 500px;
            max-height: 700px;
            background: var(--live-chat-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .chat-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--error);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            animation: pulse-live 2s infinite;
        }

        .live-badge i {
            font-size: 0.5rem;
        }

        @keyframes pulse-live {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .stream-info {
            margin-top: 1rem;
            padding: 1rem;
            background: var(--live-panel);
            border-radius: var(--radius-md);
        }

        .stream-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.5rem;
        }

        .stream-title h1 {
            font-size: 1.5rem;
            margin: 0;
            color: var(--live-text);
        }

        .stream-meta {
            display: flex;
            gap: 1.5rem;
            color: var(--live-text-secondary);
            font-size: 0.875rem;
        }

        .offline-message {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--gray-400);
        }

        .offline-message i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.3;
        }

        /* Placeholder styles - remove when you add real embeds */
        .placeholder-embed {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--live-panel);
            color: var(--live-text-muted);
            text-align: center;
            padding: 2rem;
        }

        .placeholder-embed.stream {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .placeholder-embed.chat {
            height: 100%;
        }

        /* Chat Interface Styles */
        .mead-hall {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: var(--live-chat-bg);
        }

        .mead-hall-header {
            padding: 1rem;
            background: var(--live-panel);
            color: var(--live-gold);
            border-bottom: 2px solid var(--live-gold);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

        [data-theme="dark"] .mead-hall-header {
            background: var(--navy);
        }

        .mead-hall-messages {
            flex: 1;
            overflow-y: auto;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .chat-message {
            padding: 0.5rem 0.75rem;
            background: var(--live-chat-msg);
            border-radius: var(--radius-md);
            border-left: 3px solid var(--live-border);
            position: relative;
            display: flex;
            gap: 0.5rem;
            align-items: flex-start;
        }

        /* Chat avatar */
        .chat-avatar-link {
            flex-shrink: 0;
            text-decoration: none;
            border-radius: 50%;
            transition: transform 0.15s;
        }

        .chat-avatar-link:hover {
            transform: scale(1.1);
        }

        .chat-avatar-img {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
        }

        .chat-avatar-initial {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.7rem;
        }

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

        /* Chat badges */
        .chat-badge {
            display: inline-flex;
            align-items: center;
            font-size: 0.65rem;
            color: var(--gold);
            margin-left: 3px;
            opacity: 0.85;
        }

        .chat-badge i {
            font-size: 0.6rem;
        }

        .chat-message.superchat {
            background: linear-gradient(135deg, var(--fill-accent) 0%, #cd7f32 100%);
            border-left: 3px solid var(--gold);
            color: var(--navy);
            font-weight: 600;
        }

        .chat-message.system-message {
            background: var(--live-chat-system);
            border-left: 3px solid var(--error);
            font-style: italic;
            color: var(--live-text-muted);
            font-size: 0.8125rem;
        }

        .chat-message.sticker-paid {
            border-left: 3px solid var(--gold);
        }

        .chat-message-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
        }

        .chat-username {
            font-weight: 600;
            color: var(--live-gold);
        }

        .chat-text,
        .chat-content {
            color: var(--live-text);
            word-wrap: break-word;
        }

        .chat-message.superchat .chat-username {
            color: var(--navy);
        }

        .chat-timestamp {
            font-size: 0.75rem;
            color: var(--live-text-muted);
        }

        .chat-message.superchat .chat-timestamp {
            color: rgba(26, 26, 26, 0.7);
        }

        /* .chat-text is defined above with theme-aware color */

        .chat-message.superchat .chat-text,
        .chat-message.superchat .chat-content {
            color: var(--navy);
        }

        @keyframes superchatGlow {
            0%, 100% { box-shadow: 0 0 8px rgba(212, 175, 55, 0.4); }
            50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
        }

        .chat-message.superchat-highlight {
            animation: superchatGlow 2s ease-in-out 3;
        }

        .chat-message.tip-message {
            background: linear-gradient(135deg, #2d5016 0%, #1a3a0a 100%);
            border-left: 3px solid #4ade80;
            color: var(--cream);
            font-weight: 600;
        }

        .chat-message.tip-message .chat-username {
            color: #4ade80;
        }

        .chat-message.tip-message .chat-timestamp {
            color: rgba(74, 222, 128, 0.7);
        }

        @keyframes tipGlow {
            0%, 100% { box-shadow: 0 0 6px rgba(74, 222, 128, 0.3); }
            50% { box-shadow: 0 0 14px rgba(74, 222, 128, 0.6); }
        }

        .chat-message.tip-highlight {
            animation: tipGlow 1.5s ease-in-out 3;
        }

        .mead-hall-input {
            padding: 1rem;
            border-top: 2px solid var(--live-border);
            background: var(--live-panel);
        }

        .chat-input-wrapper {
            display: flex;
            gap: 0.35rem;
            align-items: center;
        }

        .chat-input {
            flex: 1;
            min-width: 0;
            padding: 0.75rem;
            background: var(--live-input-bg);
            border: 2px solid var(--live-border);
            border-radius: var(--radius-md);
            color: var(--live-text);
            font-size: 0.875rem;
            transition: border-color 0.3s;
        }

        .chat-input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .chat-input.muted-flash {
            border-color: var(--error);
            animation: flash-red 0.5s ease;
        }

        @keyframes flash-red {
            0%, 100% { border-color: var(--error); }
            50% { border-color: #ff6b6b; }
        }

        .btn-send {
            padding: 0.75rem;
            flex-shrink: 0;
            background: var(--fill-accent);
            color: var(--navy);
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-send:hover {
            background: var(--peach);
            transform: translateY(-2px);
        }

        .btn-send:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .btn-sticker-toggle {
            padding: 0.75rem;
            flex-shrink: 0;
            background: transparent;
            border: 2px solid var(--live-border);
            border-radius: var(--radius-md);
            color: var(--live-text-muted);
            cursor: pointer;
            font-size: 1.125rem;
            transition: all 0.2s;
        }

        .btn-sticker-toggle:hover,
        .btn-sticker-toggle.active {
            border-color: var(--live-gold);
            color: var(--live-gold);
        }

        .warrior-count {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--live-panel);
            border-radius: var(--radius-md);
            margin-bottom: 0.5rem;
            color: var(--live-text-secondary);
            font-size: 0.875rem;
        }

        /* Mute button on chat messages */
        .mute-btn {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background: rgba(239, 68, 68, 0.8);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            padding: 0.2rem 0.4rem;
            font-size: 0.6875rem;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .chat-message:hover .mute-btn {
            opacity: 1;
        }

        .mute-btn:hover {
            background: var(--error);
        }

        /* Delete button on chat messages */
        .delete-btn {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background: rgba(239, 68, 68, 0.8);
            color: white;
            border: none;
            border-radius: var(--radius-sm);
            padding: 0.2rem 0.4rem;
            font-size: 0.6875rem;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .chat-message:hover .delete-btn {
            opacity: 1;
        }

        .delete-btn:hover {
            background: var(--error);
        }

        /* When both mute and delete buttons exist, offset delete to the left of mute */
        .chat-message .mute-btn ~ .delete-btn {
            right: 4.5rem;
        }

        /* Deleted message placeholder */
        .deleted-message {
            opacity: 0.5;
            padding: 0.5rem 0.75rem;
        }

        .deleted-message .deleted-content {
            font-style: italic;
            color: var(--live-text-muted);
            font-size: 0.8125rem;
        }

        .muted-user .chat-username {
            opacity: 0.5;
        }

        .muted-user .chat-content {
            opacity: 0.5;
        }

        /* Sticker picker */
        .sticker-picker {
            display: none;
            position: absolute;
            bottom: 100%;
            left: 0;
            right: 0;
            background: var(--live-panel);
            border: 2px solid var(--live-border);
            border-radius: var(--radius-md);
            margin-bottom: 0.5rem;
            max-height: 320px;
            overflow: hidden;
            z-index: 100;
        }

        .sticker-picker.open {
            display: flex;
            flex-direction: column;
        }

        .sticker-picker-header {
            display: flex;
            gap: 0.25rem;
            padding: 0.5rem;
            border-bottom: 1px solid var(--live-border);
            overflow-x: auto;
        }

        .sticker-tab {
            padding: 0.25rem 0.625rem;
            background: transparent;
            border: 1px solid var(--live-border);
            border-radius: var(--radius-sm);
            color: var(--live-text-muted);
            font-size: 0.75rem;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
        }

        .sticker-tab.active,
        .sticker-tab:hover {
            background: var(--fill-accent);
            color: var(--navy);
            border-color: var(--gold);
        }

        .sticker-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.5rem;
            padding: 0.5rem;
            overflow-y: auto;
            flex: 1;
        }

        .sticker-item {
            position: relative;
            aspect-ratio: 1;
            cursor: pointer;
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.2s;
            background: var(--live-panel-alt);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sticker-item:hover {
            border-color: var(--gold);
            transform: scale(1.05);
        }

        .sticker-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .sticker-cost {
            position: absolute;
            bottom: 2px;
            right: 2px;
            background: var(--fill-accent);
            color: var(--navy);
            font-size: 0.625rem;
            font-weight: 700;
            padding: 1px 4px;
            border-radius: 3px;
        }

        .sticker-picker-footer {
            padding: 0.5rem;
            border-top: 1px solid var(--live-border);
            text-align: center;
        }

        .sticker-picker-footer a {
            color: var(--gold);
            font-size: 0.75rem;
            text-decoration: none;
            cursor: pointer;
        }

        .sticker-picker-footer a:hover {
            text-decoration: underline;
        }

        .sticker-empty {
            padding: 2rem;
            text-align: center;
            color: var(--live-text-muted);
            font-size: 0.8125rem;
            grid-column: 1 / -1;
        }

        /* Sticker in chat */
        .chat-sticker-img {
            max-width: 128px;
            max-height: 128px;
            border-radius: var(--radius-sm);
            margin-top: 0.25rem;
        }

        /* Broken sticker in chat */
        .chat-sticker-broken {
            display: inline-block;
            padding: 0.5rem 0.75rem;
            background: rgba(255,255,255,0.05);
            border: 1px dashed var(--live-text-muted);
            border-radius: var(--radius-sm);
            color: var(--live-text-muted);
            font-size: 0.75rem;
            font-style: italic;
            margin-top: 0.25rem;
        }

        /* Broken sticker in picker grid */
        .sticker-item.broken {
            opacity: 0.5;
            border-color: var(--error);
            position: relative;
        }

        .sticker-item.broken::after {
            content: '\f00d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            color: var(--error);
            pointer-events: none;
        }

        .sticker-delete-btn {
            position: absolute;
            top: 2px;
            left: 2px;
            background: var(--error);
            color: white;
            border: none;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.6rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.15s;
        }

        .sticker-item:hover .sticker-delete-btn {
            opacity: 1;
        }

        .chat-sticker-cost {
            display: inline-block;
            background: var(--fill-accent);
            color: var(--navy);
            font-size: 0.6875rem;
            font-weight: 700;
            padding: 1px 6px;
            border-radius: 3px;
            margin-left: 0.5rem;
        }

        /* Video player styles */
        video {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Fleet Grid Styles */
        .fleet-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

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

        .fleet-header h1 {
            font-size: 2.5rem;
            color: var(--live-text);
            margin-bottom: 0.5rem;
        }

        .fleet-header p {
            color: var(--live-text-secondary);
            font-size: 1.125rem;
        }

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

        .fleet-card {
            background: var(--live-panel);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .fleet-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
        }

        .fleet-card-thumbnail {
            position: relative;
            padding-bottom: 56.25%;
            background: var(--live-panel-alt);
        }

        .fleet-card-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .fleet-card-thumbnail .live-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
        }

        .fleet-card-thumbnail .viewer-count {
            position: absolute;
            bottom: 0.75rem;
            right: 0.75rem;
            background: rgba(0, 0, 0, 0.8);
            padding: 0.25rem 0.5rem;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            color: white;
        }

        .fleet-card-body {
            padding: 1rem;
        }

        .fleet-card-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--live-text);
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .fleet-card-creator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--live-text-muted);
            font-size: 0.875rem;
        }

        .fleet-card-creator img {
            width: 24px;
            height: 24px;
            border-radius: 50%;
        }

        .fleet-empty {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--live-text-secondary);
        }

        .fleet-empty i {
            font-size: 4rem;
            opacity: 0.3;
            margin-bottom: 1rem;
            color: var(--live-text);
        }

        .fleet-empty h3 {
            color: var(--live-text);
            margin-bottom: 0.5rem;
        }

        .chat-welcome {
            text-align: center;
            padding: 2rem 1rem;
            color: var(--live-text-muted);
        }

        /* Stream about card + fleet content */
        .stream-about-card {
            background: var(--live-panel);
        }

        .stream-about-title {
            color: var(--live-text);
        }

        .stream-about-text {
            color: var(--live-text-secondary);
        }

        .fleet-content {
            background: var(--live-bg);
            color: var(--live-text);
        }

        .fleet-content .fleet-header h1,
        .fleet-content .fleet-header p {
            color: var(--live-text);
        }

        /* Theatre Mode */
        .theatre-mode .live-container {
            max-width: 100%;
            padding: 0;
        }

        .theatre-mode .stream-section {
            flex: 1;
        }

        .theatre-mode .chat-section {
            width: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0;
            transition: width 0.3s ease, opacity 0.2s ease;
        }

        .theatre-mode .stream-wrapper {
            border-radius: 0;
        }

        .theatre-mode .stream-info,
        .theatre-mode .stream-section > .card {
            display: none;
        }

        .theatre-mode .site-header,
        .theatre-mode footer,
        .theatre-mode .sidebar {
            display: none;
        }

        .theatre-mode .live-content {
            min-height: 100vh;
            background: #000;
        }

        .theatre-mode #streamerControls {
            display: none;
        }

        .theatre-toggle-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 50;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-md);
            cursor: pointer;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
            opacity: 0;
        }

        .stream-wrapper:hover .theatre-toggle-btn {
            opacity: 1;
        }

        .theatre-toggle-btn:hover {
            background: rgba(212, 175, 55, 0.9);
            color: var(--navy);
            border-color: var(--gold);
        }

        .theatre-mode .theatre-toggle-btn {
            opacity: 1;
            background: var(--fill-accent);
            color: var(--navy);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .live-container {
                flex-direction: column;
            }

            .chat-section {
                width: 100%;
            }

            .chat-wrapper {
                height: 400px;
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .stream-title {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .stream-meta {
                flex-wrap: wrap;
                gap: 1rem;
            }
        }

        /* ── Voice Chat Styles ── */
        .voice-panel {
            background: var(--live-panel);
            border: 2px solid var(--live-border);
            border-radius: var(--radius-md);
            padding: 1rem;
            margin-top: 1rem;
        }

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

        .voice-panel-header h4 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0;
            color: var(--live-text);
            font-size: 1rem;
        }

        .voice-capacity {
            font-size: 0.75rem;
            color: var(--live-text-muted);
            background: var(--live-panel-alt);
            padding: 0.2rem 0.5rem;
            border-radius: var(--radius-sm);
        }

        .voice-speaker {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            background: var(--live-panel-alt);
            border-radius: var(--radius-md);
            margin-bottom: 0.5rem;
            transition: box-shadow 0.3s;
        }

        .voice-speaker.speaking {
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
            border: 1px solid var(--gold);
        }

        .voice-speaker-name {
            flex: 1;
            color: var(--live-text);
            font-weight: 500;
            font-size: 0.875rem;
        }

        .voice-speaker-icon {
            color: var(--gold);
            font-size: 0.875rem;
        }

        .voice-speaker-icon.muted {
            color: var(--error);
        }

        .voice-speaker .voice-kick-btn {
            background: none;
            border: none;
            color: var(--error);
            cursor: pointer;
            font-size: 0.75rem;
            opacity: 0;
            transition: opacity 0.2s;
            padding: 0.25rem;
        }

        .voice-speaker:hover .voice-kick-btn {
            opacity: 1;
        }

        .voice-request-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.75rem;
            background: var(--live-panel-alt);
            border-radius: var(--radius-md);
            margin-bottom: 0.5rem;
            border-left: 3px solid var(--gold);
        }

        .voice-request-name {
            flex: 1;
            color: var(--live-text);
            font-size: 0.875rem;
        }

        .voice-request-actions {
            display: flex;
            gap: 0.25rem;
        }

        .voice-request-actions button {
            border: none;
            border-radius: var(--radius-sm);
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
            cursor: pointer;
            font-weight: 600;
        }

        .voice-approve-btn {
            background: var(--fill-accent);
            color: var(--navy);
        }

        .voice-deny-btn {
            background: rgba(239, 68, 68, 0.2);
            color: var(--error);
        }

        .btn-voice {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            font-size: 0.875rem;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-voice-open {
            background: var(--fill-accent);
            color: var(--navy);
        }

        .btn-voice-open:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .btn-voice-close {
            background: var(--error);
            color: white;
        }

        .btn-voice-raise {
            background: var(--fill-accent);
            color: var(--navy);
        }

        .btn-voice-raise:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .btn-voice-leave {
            background: rgba(239, 68, 68, 0.15);
            color: var(--error);
        }

        .btn-voice-mute {
            background: var(--live-panel-alt);
            color: var(--live-text);
            border: 1px solid var(--live-border);
        }

        .btn-voice-mute.active {
            background: rgba(239, 68, 68, 0.15);
            color: var(--error);
            border-color: var(--error);
        }

        .voice-status {
            font-size: 0.8125rem;
            color: var(--live-text-muted);
            margin-top: 0.5rem;
        }

        .voice-controls {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 0.75rem;
        }

        /* Chat mic badge for voice speakers */
        .voice-badge {
            display: inline-flex;
            align-items: center;
            margin-left: 0.25rem;
            color: var(--gold);
            font-size: 0.6875rem;
        }

        @keyframes voice-pulse {
            0%, 100% { box-shadow: 0 0 4px rgba(212, 175, 55, 0.3); }
            50% { box-shadow: 0 0 16px rgba(212, 175, 55, 0.6); }
        }

        .voice-speaker.speaking {
            animation: voice-pulse 1.5s ease-in-out infinite;
        }

        /* ── Runegold Alert Overlay (Viking Themed) ── */
        .rune-alert-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 20;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 12%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .rune-alert-overlay.visible {
            opacity: 1;
        }

        .rune-alert-box {
            text-align: center;
            padding: 1.25rem 2.5rem;
            border-radius: 8px;
            position: relative;
            min-width: 320px;
            max-width: 500px;
            transform: scale(0.8) translateY(-20px);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .rune-alert-overlay.visible .rune-alert-box {
            transform: scale(1) translateY(0);
        }

        /* Tier: Bronze (10-25 ᚱ) */
        .rune-alert-box.tier-bronze {
            background: linear-gradient(135deg, rgba(139, 90, 43, 0.92) 0%, rgba(92, 57, 24, 0.95) 100%);
            border: 2px solid #cd7f32;
            box-shadow: 0 0 20px rgba(205, 127, 50, 0.4), inset 0 0 15px rgba(205, 127, 50, 0.1);
        }

        /* Tier: Silver (26-50 ᚱ) */
        .rune-alert-box.tier-silver {
            background: linear-gradient(135deg, rgba(100, 110, 130, 0.92) 0%, rgba(60, 68, 85, 0.95) 100%);
            border: 2px solid #c0c0c0;
            box-shadow: 0 0 30px rgba(192, 192, 192, 0.5), inset 0 0 20px rgba(192, 192, 192, 0.1);
        }

        /* Tier: Gold (51-100 ᚱ) */
        .rune-alert-box.tier-gold {
            background: linear-gradient(135deg, rgba(120, 90, 20, 0.95) 0%, rgba(80, 55, 10, 0.97) 100%);
            border: 2px solid var(--gold);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.2), inset 0 0 25px rgba(212, 175, 55, 0.15);
            animation: valhallaGlow 2s ease-in-out infinite;
        }

        @keyframes valhallaGlow {
            0%, 100% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.2); }
            50% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.8), 0 0 120px rgba(212, 175, 55, 0.3); }
        }

        .rune-alert-runes {
            font-size: 1.5rem;
            letter-spacing: 0.5rem;
            margin-bottom: 0.5rem;
            opacity: 0.7;
        }

        .tier-bronze .rune-alert-runes { color: #cd7f32; }
        .tier-silver .rune-alert-runes { color: #e0e0e0; }
        .tier-gold .rune-alert-runes { color: var(--gold); animation: runeFlicker 0.8s ease-in-out infinite alternate; }

        @keyframes runeFlicker {
            0% { opacity: 0.6; text-shadow: 0 0 4px rgba(212, 175, 55, 0.3); }
            100% { opacity: 1; text-shadow: 0 0 12px rgba(212, 175, 55, 0.8); }
        }

        .rune-alert-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.25rem;
        }

        .rune-alert-username {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .rune-alert-amount {
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0.25rem 0;
        }

        .tier-bronze .rune-alert-amount { color: #cd7f32; }
        .tier-silver .rune-alert-amount { color: #e0e0e0; }
        .tier-gold .rune-alert-amount { color: var(--gold); text-shadow: 0 0 10px rgba(212, 175, 55, 0.6); }

        .rune-alert-message {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            font-style: italic;
            margin-top: 0.4rem;
            max-width: 400px;
            word-wrap: break-word;
        }

