        /* Reel Modal Styles */
        .reel-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .reel-modal.active { display: flex; opacity: 1; }
        .reel-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 85vh;
            max-height: 800px;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(184, 151, 90, 0.4);
        }
        .reel-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .btn-close-reel {
            position: absolute;
            top: 15px; right: 15px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
            width: 40px; height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            z-index: 2001;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .btn-close-reel:hover { background: rgba(0,0,0,0.8); border-color: #fff; }
        
        .btn-reel {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(184, 151, 90, 0.1);
            color: var(--gold);
            border: 1px solid var(--gold);
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-family: var(--mono);
            font-size: 0.75rem;
            font-weight: bold;
            cursor: pointer;
            margin-top: 10px;
            margin-bottom: 20px;
            animation: pulse-glow 2s infinite;
            transition: all 0.2s ease;
        }
        .btn-reel:hover {
            background: var(--gold);
            color: var(--ink);
        }
        @keyframes pulse-glow {
            0% { box-shadow: 0 0 0 0 rgba(184, 151, 90, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(184, 151, 90, 0); }
            100% { box-shadow: 0 0 0 0 rgba(184, 151, 90, 0); }
        }

        /* AI Panel Styles */
        .ai-panel {
            position: fixed;
            top: 0; right: -400px;
            width: 400px; max-width: 100vw; height: 100%;
            background: var(--paper);
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: right 0.3s ease;
            display: flex; flex-direction: column;
        }
        .ai-panel.open { right: 0; }
        .ai-header {
            background: var(--ink); color: var(--gold);
            padding: 1rem;
            display: flex; justify-content: space-between; align-items: center;
            font-family: var(--mono);
        }