/* =========================================
   HIKARU LABS - CHAMPAGNE GOLD / FORMAL UI
========================================= */
:root {
    --accent: #D4AF37; 
    --accent-hover: #C5A030;
    --accent-muted: rgba(212, 175, 55, 0.15);
    
    --danger: #E57373;
    --radius: 8px; 
    --font-sans: 'Inter', system-ui, sans-serif;
    
    /* Light Theme */
    --bg-main: #F7F7F7;
    --panel-bg: #FFFFFF;
    --border-color: #E0E0E0;
    --text-main: #2C2C2C;
    --text-muted: #7D7D7D;
}

body.dark-theme {
    --bg-main: #0A0A0A;
    --panel-bg: #141414;
    --border-color: #2A2A2A;
    --text-main: #F0F0F0;
    --text-muted: #888888;
    --accent: #E6C27A; 
    --accent-hover: #D4AF37;
    --accent-muted: rgba(230, 194, 122, 0.1);
}

/* Formal Resets */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg-main); color: var(--text-main); font-family: var(--font-sans); min-height: 100vh; transition: background 0.4s ease, color 0.4s ease; letter-spacing: 0.02em; line-height: 1.6; overflow-x: hidden; }
.visually-hidden { display: none; }
.hidden { display: none !important; }

/* Header & Logo */
.top-nav { background: var(--panel-bg); border-bottom: 1px solid var(--border-color); padding: 1.5rem 0; }
.nav-content { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 1.2rem; }
.brand-logo { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,0.3); border: 1px solid var(--border-color); }
.brand-text h1 { font-size: 1.4rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.2;}
.suite-title { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* Auth Area */
.nav-controls { display: flex; align-items: center; gap: 0.5rem; }
.auth-container { display: flex; align-items: center; gap: 1rem; margin-right: 0.5rem; padding-right: 1rem; border-right: 1px solid var(--border-color); }
.auth-btn { display: flex; align-items: center; gap: 0.6rem; background: var(--bg-main); border: 1px solid var(--border-color); color: var(--text-main); padding: 0.6rem 1.2rem; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.3s; text-transform: uppercase; }
.auth-btn:hover { border-color: var(--accent); background: var(--accent-muted); }
.user-profile { display: flex; align-items: center; gap: 0.8rem; background: var(--bg-main); padding: 0.3rem 0.8rem 0.3rem 0.3rem; border-radius: 50px; border: 1px solid var(--border-color); transition: border 0.3s; }
.user-profile:hover { border-color: var(--accent); }
.user-avatar { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--accent); object-fit: cover; }
.user-name { font-size: 0.8rem; color: var(--text-main); font-weight: 500; max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.icon-btn { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-main); opacity: 0.6; transition: opacity 0.3s; }
.icon-btn:hover { opacity: 1; color: var(--accent); }

/* Modals */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.8); display: flex; justify-content: center; align-items: center; z-index: 9990; backdrop-filter: blur(8px); }
.modal-box { background: var(--panel-bg); padding: 2.5rem; border-radius: var(--radius); width: 90%; max-width: 480px; border: 1px solid var(--border-color); box-shadow: 0 20px 50px rgba(0,0,0,0.5); max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.modal-header h3 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.setting-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }

/* Auth Modal Specific */
.auth-divider { display: flex; align-items: center; text-align: center; color: var(--text-muted); font-size: 0.75rem; margin: 0.5rem 0; font-weight: 600; letter-spacing: 0.05em; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-bottom: 1px solid var(--border-color); margin: 0 0.5rem; }

/* Account Center Tabs & Avatar Upload */
.modal-tabs { display: flex; border-bottom: 1px solid var(--border-color); margin-bottom: 1.5rem; overflow-x: auto;}
.tab-btn { flex: 1; background: none; border: none; padding: 0.8rem; color: var(--text-muted); font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid transparent; transition: all 0.3s ease; white-space: nowrap; }
.tab-btn:hover { color: var(--text-main); }
.tab-btn.active { color: var(--accent); border-bottom: 2px solid var(--accent); }
.tab-content { display: flex; flex-direction: column; }
.profile-edit-header { display: flex; align-items: center; gap: 1rem; }

.avatar-wrapper { position: relative; display: inline-block; cursor: pointer; border-radius: 50%; overflow: hidden; border: 2px solid var(--border-color); flex-shrink: 0; }
.acct-avatar-lg { width: 90px; height: 90px; display: block; object-fit: cover; }
.avatar-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: #fff; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.avatar-wrapper:hover .avatar-overlay { opacity: 1; }
.crop-container { max-height: 400px; width: 100%; display: flex; justify-content: center; background: #000; overflow: hidden; border-radius: var(--radius); }
.crop-container img { max-width: 100%; display: block; }
.usage-stats-box { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.5rem; font-size: 0.85rem; }

/* Workspace UI Elements */
.ws-team-group { margin-bottom: 1.5rem; }
.ws-team-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color); }
.ws-team-header h5 { font-size: 0.9rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }
.ws-team-header span { font-size: 0.7rem; background: var(--bg-main); padding: 0.2rem 0.6rem; border-radius: 12px; border: 1px solid var(--border-color); }
.ws-member-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem; background: var(--bg-main); border: 1px solid var(--border-color); border-radius: var(--radius); margin-bottom: 0.8rem; }
.ws-member-info { display: flex; flex-direction: column; }
.ws-member-name { font-size: 0.9rem; color: var(--text-main); font-weight: 600; }
.ws-member-email { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
.ws-member-usage { font-size: 0.75rem; color: var(--accent); margin-top: 0.4rem;}
.team-select { background: var(--panel-bg); border: 1px solid var(--border-color); color: var(--text-main); padding: 0.5rem; border-radius: var(--radius); font-size: 0.8rem; outline: none; cursor: pointer; transition: 0.3s; }
.team-select:focus { border-color: var(--accent); }

/* PRICING MODAL */
.pricing-modal-box { max-width: 1000px !important; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.pricing-card { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; position: relative; }
.pricing-card.popular { border: 2px solid var(--accent); transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #000; font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 20px; text-transform: uppercase; }
.pricing-card h4 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;}
.pricing-card .price { font-size: 1.8rem; font-weight: 700; color: var(--text-main); margin-bottom: 1.2rem; }
.pricing-card .price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-card .features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.pricing-card .features li { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
.pricing-card .features li::before { content: '✓'; color: var(--accent); position: absolute; left: 0; font-weight: bold; }

/* AD BANNER */
.ad-banner { position: fixed; bottom: 20px; right: 20px; background: var(--panel-bg); border: 1px solid var(--accent); border-radius: var(--radius); padding: 1.2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 9800; display: flex; gap: 1rem; align-items: center; max-width: 380px; animation: slideUp 0.4s ease forwards; }
@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ad-content { display: flex; flex-direction: column; gap: 0.5rem; }
.ad-text strong { color: var(--accent); font-size: 0.95rem; }
.ad-text p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* DOCKS & WIDGETS */
.peacock-widget { position: fixed; bottom: 25px; left: 25px; z-index: 9900; }
.peacock-toggle { width: 56px; height: 56px; border-radius: 50%; background: var(--panel-bg); border: 2px solid var(--accent); font-size: 1.6rem; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,0.4); transition: transform 0.3s, background 0.3s; display: flex; justify-content: center; align-items: center; }
.peacock-toggle:hover { transform: scale(1.1); background: var(--accent-muted); }
.peacock-chat { position: absolute; bottom: 80px; left: 0; width: 340px; height: 480px; background: var(--panel-bg); border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.6); display: flex; flex-direction: column; overflow: hidden; animation: slideUp 0.3s ease; }
.peacock-header { background: var(--panel-bg); padding: 1rem 1.2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); }
.peacock-header h4 { font-size: 0.95rem; color: var(--accent); margin: 0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.peacock-body { flex: 1; padding: 1.5rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1.2rem; background: var(--bg-main); }
.peacock-footer { padding: 1rem; border-top: 1px solid var(--border-color); display: flex; gap: 0.8rem; background: var(--panel-bg); flex-shrink: 0; }

/* TEAM COLLAB DOCK SPECIFIC */
#team-dock .peacock-chat {
    left: auto;
    right: 0;
    width: 550px;
    height: 650px;
    transform-origin: bottom right;
}

.chat-sidebar { width: 150px; background: var(--panel-bg); border-right: 1px solid var(--border-color); padding: 1.2rem 0.8rem; display: flex; flex-direction: column; gap: 1.5rem; overflow-y: auto; flex-shrink: 0; }
.sidebar-section h6 { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 0.8rem; letter-spacing: 1px; }
.channel-item { font-size: 0.8rem; padding: 0.5rem 0.8rem; border-radius: 6px; cursor: pointer; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; transition: background 0.2s; margin-bottom: 0.2rem; }
.channel-item:hover { background: var(--bg-main); color: var(--text-main); }
.channel-item.active { background: var(--accent-muted); color: var(--accent); font-weight: 700; }

.chat-main { flex: 1; display: flex; flex-direction: column; background: var(--bg-main); overflow: hidden; }
.chat-messages { flex: 1 1 auto; padding: 1.5rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1.2rem; background: var(--bg-main); scroll-behavior: smooth; }
.chat-input-area { flex: 0 0 auto; display: flex; gap: 0.8rem; padding: 1rem 1.2rem; background: var(--panel-bg); border-top: 1px solid var(--border-color); align-items: center; }

.chat-bubble-wrap { display: flex; flex-direction: column; max-width: 85%; }
.chat-bubble-wrap.mine { align-self: flex-end; }
.chat-bubble-wrap.theirs { align-self: flex-start; }

.chat-sender { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.4rem; opacity: 0.8; font-weight: 500; }
.chat-bubble-wrap.mine .chat-sender { text-align: right; }

.chat-bubble { padding: 0.8rem 1.2rem; border-radius: 12px; font-size: 0.85rem; line-height: 1.6; word-wrap: break-word; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.chat-bubble-wrap.mine .chat-bubble { background: var(--accent); color: #000; border-bottom-right-radius: 2px; }
.chat-bubble-wrap.theirs .chat-bubble { background: var(--panel-bg); border: 1px solid var(--border-color); color: var(--text-main); border-bottom-left-radius: 2px; }
.chat-bubble-wrap.announcement { border-left: 4px solid var(--accent); background: rgba(212, 175, 55, 0.05); padding-left: 0.8rem; border-radius: 4px; }

.chat-attachment { max-width: 250px; max-height: 200px; border-radius: 8px; margin-top: 0.8rem; border: 1px solid rgba(0,0,0,0.2); cursor: pointer; display: block; object-fit: cover; transition: transform 0.2s; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.chat-attachment:hover { transform: scale(1.02); }
.chat-file-link { font-size: 0.8rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 0.8rem; padding: 8px 14px; background: rgba(128,128,128,0.15); border-radius: 6px; text-decoration: none; color: inherit; font-weight: 600; transition: background 0.2s; border: 1px solid var(--border-color); }
.chat-file-link:hover { background: rgba(128,128,128,0.3); }

.role-badge { font-size: 0.65rem; padding: 3px 8px; border-radius: 12px; background: var(--accent); color: #000; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.presence-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; margin-bottom: 0.6rem; color: var(--text-muted); font-weight: 500; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #444; border: 2px solid var(--panel-bg); }
.status-dot.online { background: #4CAF50; box-shadow: 0 0 6px #4CAF50; }
.mention { background: var(--accent-muted); color: var(--accent); font-weight: 700; padding: 2px 4px; border-radius: 4px; }

/* Animated Dots for AI */
.typing-indicator span { display: inline-block; width: 6px; height: 6px; background-color: var(--accent); border-radius: 50%; margin: 0 3px; animation: typing 1s infinite alternate; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0% { transform: translateY(0); opacity: 0.5; } 100% { transform: translateY(-4px); opacity: 1; } }

/* Layout & Panels */
.app-container { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.dashboard-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; }
.left-column, .right-column { display: flex; flex-direction: column; gap: 2.5rem; }

.panel { background: var(--panel-bg); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.panel h2 { font-size: 0.95rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--text-main); letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; }

/* Upload Area */
.upload-area { border: 2px dashed var(--border-color); border-radius: var(--radius); height: 160px; display: flex; flex-direction: column; justify-content: center; align-items: center; cursor: pointer; background: var(--bg-main); transition: all 0.3s ease; }
.upload-area:hover { border-color: var(--accent); background: var(--accent-muted); }
.upload-text { font-size: 1rem; color: var(--text-muted); pointer-events: none; margin-bottom: 1rem; font-weight: 500; }
.text-btn { background: none; border: none; color: var(--accent); cursor: pointer; font-weight: 600; letter-spacing: 0.05em; transition: color 0.3s; text-transform: uppercase; font-size: 0.8rem; }
.text-btn:hover { color: var(--accent-hover); }

.preview-container { max-height: 200px; overflow-y: auto; margin-top: 1.5rem; padding-right: 0.5rem; }
.preview-list { list-style: none; font-size: 0.85rem; }
.preview-list li { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--border-color); color: var(--text-muted); font-weight: 500; }

/* Operations */
.operations-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.op-card { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.5rem; background: var(--bg-main); transition: box-shadow 0.3s; }
.op-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.op-header { display: flex; gap: 1rem; align-items: flex-start; }
.op-title h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text-main); }
.op-title p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.op-settings { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border-color); }
.op-settings.collapsed { display: none; }

/* Toggles */
.toggle-switch { position: relative; width: 40px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--border-color); border-radius: 20px; transition: 0.3s; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px; background-color: var(--panel-bg); border-radius: 50%; transition: 0.3s; }
input:checked + .slider { background-color: var(--accent); }
input:checked + .slider:before { transform: translateX(18px); }

.checkbox-label { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: var(--text-main); cursor: pointer; font-weight: 500; }

/* Inputs & Presets */
.flat-input { width: 100%; background: var(--bg-main); border: 1px solid var(--border-color); color: var(--text-main); padding: 0.8rem 1rem; border-radius: 8px; font-family: inherit; font-size: 0.85rem; letter-spacing: 0.02em; transition: all 0.3s; }
.flat-input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 2px var(--accent-muted); }
.split-inputs { display: flex; gap: 1rem; }
.radio-group { display: flex; gap: 1.2rem; font-size: 0.85rem; font-weight: 500; }

.preset-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 1.2rem; }
.preset-btn { background: var(--bg-main); border: 1px solid var(--border-color); padding: 0.6rem; border-radius: 6px; font-size: 0.75rem; cursor: pointer; color: var(--text-muted); font-family: inherit; transition: all 0.3s ease; font-weight: 600; text-transform: uppercase; }
.preset-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-muted); }

/* Stats & Spectator */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; }
.stat-box { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1.5rem 0.5rem; text-align: center; background: var(--bg-main); }
.stat-val { display: block; font-size: 1.4rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.4rem; }
.stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

.live-monitor { border: 1px solid var(--border-color); border-radius: var(--radius); padding: 1rem; margin-bottom: 1.5rem; background: var(--bg-main); box-shadow: inset 0 2px 10px rgba(0,0,0,0.2); }
.monitor-screen { height: 180px; background: #000; border-radius: var(--radius); display: flex; justify-content: center; align-items: center; overflow: hidden; position: relative; border: 1px solid #222; }
.monitor-screen img { width: 100%; height: 100%; object-fit: contain; }
#monitor-placeholder { color: #555; font-size: 0.85rem; font-weight: 600; font-family: monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.monitor-feed { font-family: monospace; font-size: 0.8rem; color: var(--accent); margin-top: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 0.5rem; letter-spacing: 0.05em; font-weight: 500; }

.progress-bar-bg { width: 100%; height: 6px; background: var(--border-color); border-radius: 3px; overflow: hidden; }
.progress-bar-fill { width: 0%; height: 100%; background: var(--accent); transition: width 0.1s linear; box-shadow: 0 0 10px var(--accent); }

/* Buttons */
.action-btn { width: 100%; padding: 1rem 1.2rem; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.85rem; transition: all 0.3s ease; display: inline-flex; justify-content: center; align-items: center; }
.action-btn.primary { background: var(--text-main); color: var(--panel-bg); }
.action-btn.primary:disabled { opacity: 0.3; cursor: not-allowed; }
.action-btn.primary:not(:disabled):hover { background: var(--accent); color: #000; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }

.action-btn.secondary { background: transparent; border: 2px solid var(--border-color); color: var(--text-main); }
.action-btn.secondary:hover { background: var(--border-color); }
.action-btn.secondary:disabled { opacity: 0.4; cursor: not-allowed; }

.action-btn.danger { background: transparent; color: var(--danger); border: 2px solid var(--danger); }
.action-btn.danger:hover { background: rgba(229, 115, 115, 0.15); }

.post-actions-group { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

/* Footer */
.app-footer { margin-top: 3rem; text-align: center; padding: 2rem 0; border-top: 1px solid var(--border-color); font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.app-footer a { color: var(--accent); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.app-footer a:hover { color: var(--accent-hover); text-decoration: underline; }

@media (max-width: 900px) {
    .dashboard-layout { grid-template-columns: 1fr; }
    .operations-list { grid-template-columns: 1fr; }
    .nav-content { flex-direction: column; gap: 1rem; text-align: center; }
    .brand { justify-content: center; }
    .auth-container { border-right: none; margin-right: 0; padding-right: 0; }
    .pricing-grid { grid-template-columns: 1fr; }
    
    #team-dock .peacock-chat { width: 100vw; height: 80vh; bottom: 0; position: fixed; border-radius: 12px 12px 0 0; }
    .chat-sidebar { width: 100px; }
}