:root{--bg-primary: #0f1419;--bg-secondary: #1a1f29;--bg-tertiary: #242b38;--bg-hover: #2d3748;--bg-input: #1e2532;--text-primary: #e8eaed;--text-secondary: #9ca3af;--text-muted: #6b7280;--accent-primary: #3b82f6;--accent-hover: #2563eb;--accent-light: #1e3a8a;--success: #10b981;--success-light: #065f46;--danger: #ef4444;--danger-hover: #dc2626;--danger-light: #7f1d1d;--warning: #f59e0b;--info: #06b6d4;--border: #374151;--border-light: #4b5563;--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, .5);--shadow: 0 4px 6px -1px rgba(0, 0, 0, .7), 0 2px 4px -1px rgba(0, 0, 0, .6);--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .8), 0 4px 6px -2px rgba(0, 0, 0, .7);--radius-sm: 4px;--radius: 8px;--radius-lg: 12px;--radius-xl: 16px;--transition: all .2s ease;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*{margin:0;padding:0;box-sizing:border-box}body{margin:0;background:var(--bg-primary);color:var(--text-primary);min-height:100vh;line-height:1.6}#root{min-height:100vh}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:var(--bg-secondary);border-radius:var(--radius)}::-webkit-scrollbar-thumb{background:var(--border-light);border-radius:var(--radius)}::-webkit-scrollbar-thumb:hover{background:var(--text-muted)}h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.2;color:var(--text-primary)}h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.25rem}input,textarea,select{font-family:inherit;font-size:1rem;color:var(--text-primary);background:var(--bg-input);border:1px solid var(--border);border-radius:var(--radius);padding:.75rem 1rem;transition:var(--transition);width:100%}input:focus,textarea:focus,select:focus{outline:none;border-color:var(--accent-primary);box-shadow:0 0 0 3px #3b82f61a}input::placeholder,textarea::placeholder{color:var(--text-muted)}button{font-family:inherit;font-size:1rem;font-weight:500;cursor:pointer;border:none;border-radius:var(--radius);padding:.75rem 1.5rem;transition:var(--transition);display:inline-flex;align-items:center;justify-content:center;gap:.5rem}button:disabled{opacity:.5;cursor:not-allowed}.btn-primary{background:var(--accent-primary);color:#fff}.btn-primary:hover:not(:disabled){background:var(--accent-hover);transform:translateY(-1px);box-shadow:var(--shadow)}.btn-danger{background:var(--danger);color:#fff}.btn-danger:hover:not(:disabled){background:var(--danger-hover);transform:translateY(-1px);box-shadow:var(--shadow)}.btn-secondary{background:var(--bg-tertiary);color:var(--text-primary);border:1px solid var(--border)}.btn-secondary:hover:not(:disabled){background:var(--bg-hover);border-color:var(--border-light)}.btn-sm{padding:.5rem 1rem;font-size:.875rem}.card{background:var(--bg-secondary);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.5rem;box-shadow:var(--shadow)}.card:hover{border-color:var(--border-light)}.badge{display:inline-flex;align-items:center;padding:.25rem .75rem;border-radius:9999px;font-size:.75rem;font-weight:600}.badge-success{background:var(--success-light);color:var(--success)}.badge-danger{background:var(--danger-light);color:var(--danger)}.text-center{text-align:center}.flex{display:flex}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-center{justify-content:center}.gap-2{gap:.5rem}.gap-4{gap:1rem}.w-full{width:100%}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.p-4{padding:1rem}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.fade-in{animation:fadeIn .3s ease-out}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}.pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes slideInRight{0%{opacity:0;transform:translate(100px)}to{opacity:1;transform:translate(0)}}@media(max-width:768px){:root{--mobile-padding: .75rem;--mobile-gap: .5rem}body{font-size:14px}h1{font-size:1.5rem}h2{font-size:1.25rem}h3{font-size:1rem}button{min-height:44px;padding:.625rem 1rem}.btn-sm{min-height:36px;padding:.5rem .75rem}.card{padding:1rem;border-radius:var(--radius)}input,textarea,select{min-height:44px;padding:.625rem .875rem;font-size:16px!important}.badge{font-size:.625rem;padding:.125rem .5rem}}.mobile-only{display:none}.desktop-only{display:block}@media(max-width:768px){.mobile-only{display:block}.desktop-only{display:none!important}}.mobile-nav{position:fixed;bottom:0;left:0;right:0;display:flex;background:var(--bg-secondary);border-top:1px solid var(--border);padding:.5rem;gap:.25rem;z-index:100;padding-bottom:calc(.5rem + env(safe-area-inset-bottom))}.mobile-nav button{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.25rem;padding:.5rem;background:transparent;border:none;color:var(--text-secondary);font-size:.75rem;min-height:56px;border-radius:var(--radius);transition:var(--transition)}.mobile-nav button.active{background:var(--accent-light);color:var(--accent-primary)}.mobile-nav button:hover{background:var(--bg-hover)}.mobile-nav-icon{font-size:1.25rem}.mobile-content{padding-bottom:calc(72px + env(safe-area-inset-bottom))}@media(max-width:768px){.modal-fullscreen-mobile{position:fixed!important;inset:0!important;max-width:none!important;max-height:none!important;border-radius:0!important;margin:0!important}}.room-container{display:flex;flex-direction:row;min-height:100vh;padding:1.5rem;gap:1.5rem;max-width:1600px;margin:0 auto;align-items:flex-start}.room-sidebar-left{width:320px;display:flex;flex-direction:column;gap:.5rem;flex-shrink:0}.room-center{flex:1;display:flex;flex-direction:column;gap:1rem;min-width:0}.room-sidebar-right{width:320px;display:flex;flex-direction:column;flex-shrink:0}.room-info-card{display:flex;flex-direction:column;gap:1rem}.room-sidebar-left .card{max-height:400px;overflow-y:auto}.room-sidebar-left .room-info-card{max-height:none;overflow:visible}.room-sidebar-left .participants-card{max-height:1200px}.room-sidebar-left .settings-card{max-height:900px;overflow-y:auto;min-height:0}.room-sidebar-left .admin-panel-card{max-height:800px;overflow-y:auto}.invite-code-display{display:flex;gap:.5rem}.invite-code-text{flex:1;padding:.75rem;background:var(--bg-tertiary);border:1px solid var(--border);border-radius:var(--radius);font-weight:700;font-size:1.25rem;text-align:center;letter-spacing:3px;color:var(--accent-primary)}.users-list{display:flex;flex-direction:column;gap:.5rem;max-height:400px;overflow-y:auto;padding-right:.25rem}.user-item{padding:.75rem;background:var(--bg-tertiary);border:2px solid var(--border);border-radius:var(--radius);display:flex;flex-direction:column;gap:.5rem;transition:var(--transition)}.user-item.is-current{background:var(--accent-light);border-color:var(--accent-primary)}.user-item.is-active{background:var(--warning);border-color:var(--warning);box-shadow:0 0 20px #fbbf2466}.user-item.is-dead{opacity:.5}.video-section{height:300px;min-height:200px}.game-content-section{flex:1;display:flex;flex-direction:column;gap:1rem;overflow-y:auto}@media(max-width:768px){.room-container{flex-direction:column;padding:var(--mobile-padding);gap:var(--mobile-gap);height:100dvh;min-height:0;overflow:hidden;padding-bottom:0;align-items:stretch;width:100%}.room-sidebar-left,.room-sidebar-right{display:none}.room-sidebar-left.mobile-active,.room-sidebar-right.mobile-active,.room-center.mobile-active{display:flex}.room-sidebar-left.mobile-active,.room-sidebar-right.mobile-active{width:100%;max-height:calc(100vh - 72px - env(safe-area-inset-bottom) - 2rem);height:auto;flex:1;overflow-y:auto;padding-bottom:calc(90px + env(safe-area-inset-bottom));box-sizing:border-box}.room-center{flex:1;min-height:0;overflow-y:auto;padding-bottom:100px}.room-info-compact{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.5rem;background:var(--bg-secondary);border-radius:var(--radius);margin-bottom:.5rem}.room-info-compact h2{font-size:1rem;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.invite-code-text{font-size:.875rem;padding:.5rem;letter-spacing:2px}.video-section{height:200px;min-height:150px}.users-list{max-height:none}.user-item{padding:.625rem}.game-phase-compact{display:flex;align-items:center;justify-content:space-between;padding:.5rem .75rem;background:var(--bg-secondary);border-radius:var(--radius);font-size:.875rem}.timer-compact{font-size:1.25rem;font-weight:700;color:var(--accent-primary)}}.mobile-tab-panel{display:none;flex-direction:column;flex:1;overflow:hidden}.mobile-tab-panel.active{display:flex}.mobile-header{display:none}@media(max-width:768px){.mobile-header{display:flex;align-items:center;justify-content:space-between;padding:.5rem .75rem;background:var(--bg-secondary);border-radius:var(--radius);margin-bottom:.5rem;flex-shrink:0}.mobile-header h2{font-size:1rem;margin:0;flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mobile-header-actions{display:flex;gap:.5rem}.mobile-header-actions button{padding:.375rem .625rem;min-height:36px;font-size:.75rem}.mobile-nav{display:flex;position:fixed;bottom:0;left:0;width:100%;background:var(--bg-secondary);border-top:1px solid var(--border);padding-bottom:env(safe-area-inset-bottom);z-index:9999!important;height:auto;box-shadow:0 -4px 20px #0000004d}.mobile-nav button{flex:1;background:none;border:none;padding:.75rem;display:flex;flex-direction:column;align-items:center;gap:.25rem;color:var(--text-muted);font-size:.75rem}.mobile-nav button.active{color:var(--accent-primary)}.mobile-nav-icon{font-size:1.25rem}}@media(min-width:769px){.mobile-header{display:none!important}}
