@font-face { font-family: 'Zamenhof'; src: url('/fonts/zamenhof_plain.otf') format('opentype'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Zamenhof Outline'; src: url('/fonts/zamenhof_outline.otf') format('opentype'); font-weight: normal; font-style: normal; } :root { --bg: #181818; --text: #ffffff; --border: #ffffff; --accent: #4a9eff; --danger: #ff5e5e; --success: #5eff6e; --radius: 12px; --shadow: 0 0 10px rgba(255, 255, 255, 0.2); --font: 'Zamenhof', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } * { font-weight: normal; } b, strong, h1, h2, h3, h4, h5, h6, th { font-weight: normal; } body { font-family: var(--font); background-color: var(--bg); color: var(--text); min-height: 100vh; display: flex; flex-direction: column; transition: all 0.3s ease; } #app { display: flex; flex-direction: column; min-height: 100vh; } main { flex: 1; padding: 20px; max-width: 1200px; width: 100%; margin: 0 auto; } a { color: var(--accent); text-decoration: none; transition: color 0.3s ease; } a:hover { text-decoration: underline; } button, input, textarea, select { background-color: rgba(255,255,255,0.05); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 12px; font-family: inherit; transition: all 0.3s ease; outline: none; } button { cursor: pointer; } button:hover { background-color: rgba(255,255,255,0.1); box-shadow: var(--shadow); } input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,158,255,0.3); } #header { position: sticky; top: 0; z-index: 100; background: transparent; backdrop-filter: blur(10px); padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); } .nav { display: flex; align-items: center; gap: 15px; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; } .nav-link { color: var(--text); text-decoration: none; font-weight: bold; transition: color 0.3s ease, text-shadow 0.3s ease; } .nav-link:hover { color: var(--accent); text-shadow: 0 0 8px var(--accent); } .nav-user { margin-left: auto; color: var(--accent); font-weight: bold; } #logout-btn { background: none; border: 1px solid var(--danger); color: var(--danger); padding: 4px 10px; border-radius: var(--radius); } #logout-btn:hover { background: var(--danger); color: #fff; } .nav-logo { height: 60px; width: auto; } .notif-bell { position: relative; } .notif-count { background: var(--danger); color: #fff; border-radius: 50%; padding: 1px 5px; font-size: 11px; position: absolute; top: -5px; right: -10px; display: none; animation: pulse 1.5s infinite; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.2); box-shadow: 0 0 10px var(--danger); } 100% { transform: scale(1); } } #footer { background: rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.1); padding: 40px 20px; } .footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; } .footer-col { flex: 1; min-width: 200px; } .footer-col h4 { font-family: 'Zamenhof Outline'; font-size: 1.4em; margin-bottom: 15px; color: var(--accent); text-shadow: 0 0 8px var(--accent); } .footer-col a { display: block; color: var(--text); text-decoration: none; margin-bottom: 8px; opacity: 0.8; transition: opacity 0.3s; } .footer-col a:hover { opacity: 1; color: var(--accent); } .footer-copy { text-align: center; margin-top: 20px; opacity: 0.5; font-size: 0.9em; } .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; justify-content: center; align-items: center; z-index: 1000; animation: fadeIn 0.3s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .modal { background: #222; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; min-width: 300px; max-width: 500px; box-shadow: var(--shadow); animation: slideUp 0.3s ease; } @keyframes slideUp { from { transform: translateY(30px) scale(0.95); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } } .modal h3 { margin-bottom: 15px; } .modal-buttons { display: flex; gap: 10px; margin-top: 15px; justify-content: flex-end; } .modal-lg { max-width: 700px; } .auth-form { max-width: 400px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; background: rgba(255,255,255,0.03); padding: 20px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); } .form-group { display: flex; flex-direction: column; gap: 4px; } .form-group label { font-size: 14px; opacity: 0.8; } .form-error { color: var(--danger); font-size: 14px; min-height: 20px; } .form-link { text-align: center; margin-top: 12px; font-size: 14px; } .hero { text-align: center; padding: 40px 20px; } .hero h1 { font-family: 'Zamenhof Outline'; font-size: 3em; margin-bottom: 10px; text-shadow: 0 0 20px var(--accent); } .hero-desc { font-size: 1.2em; opacity: 0.7; } .home-news { margin: 30px 0; } .home-news h2 { font-family: 'Zamenhof Outline'; margin-bottom: 12px; color: var(--accent); } .home-news-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .news-date { font-size: 0.9em; opacity: 0.5; } .btn { display: inline-block; margin-top: 12px; padding: 8px 16px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); text-decoration: none; transition: all 0.3s ease; } .btn:hover { background: var(--accent); border-color: var(--accent); box-shadow: var(--shadow); } .code-display { background: #111; border: 2px dashed var(--accent); padding: 15px; border-radius: var(--radius); margin-top: 10px; } .code-value { font-family: monospace; font-size: 1.5em; letter-spacing: 2px; color: var(--accent); user-select: all; } .news-filters { margin-bottom: 20px; } .news-filters select { width: 200px; } .news-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; transition: all 0.3s ease; } .news-card:hover { box-shadow: var(--shadow); } .news-card h3 { margin-bottom: 10px; } .news-meta { font-size: 0.85em; opacity: 0.6; margin-bottom: 12px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; } .news-content { font-family: 'Finlandica Text', sans-serif; font-weight: 400; line-height: 1.6; margin: 15px 0; } .news-content img { max-width: 100%; border-radius: 8px; } .news-content ul, .news-content ol { padding-left: 20px; } .news-content b, .news-content strong { font-weight: bold; } .news-card-footer { display: flex; align-items: center; gap: 15px; margin-top: 15px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); } .like-btn { cursor: pointer; user-select: none; transition: all 0.3s ease; } .like-btn.liked { color: var(--danger); text-shadow: 0 0 10px var(--danger); } .comments-link { color: var(--text); opacity: 0.8; text-decoration: none; } .comments-link:hover { opacity: 1; color: var(--accent); } .delete-news-btn { background: none; border: 1px solid var(--danger); color: var(--danger); padding: 4px 8px; border-radius: var(--radius); cursor: pointer; transition: all 0.3s ease; } .delete-news-btn:hover { background: var(--danger); color: #fff; } .pagination { margin-top: 20px; display: flex; gap: 8px; } .page-btn { background: none; border: 1px solid var(--border); color: var(--text); padding: 6px 12px; border-radius: var(--radius); transition: all 0.3s ease; } .page-btn.active { background: var(--accent); border-color: var(--accent); box-shadow: var(--shadow); } .page-btn:hover:not(.active) { background: rgba(255,255,255,0.05); } .comments-section { margin-top: 30px; } .comment { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 12px 15px; margin-bottom: 10px; transition: all 0.3s ease; } .comment:hover { box-shadow: var(--shadow); } .comment-header { display: flex; align-items: center; gap: 8px; font-size: 0.85em; opacity: 0.8; margin-bottom: 8px; } .chat-avatar { font-size: 20px; width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); } .chat-author-link { color: var(--text); font-weight: bold; text-decoration: none; } .chat-author-link:hover { color: var(--accent); } .comment-text { margin-bottom: 8px; } .comment-actions { display: flex; gap: 8px; } .comment-actions button { background: none; border: 1px solid var(--border); padding: 2px 6px; border-radius: var(--radius); font-size: 14px; transition: all 0.3s ease; } .comment-actions button:hover { background: rgba(255,255,255,0.1); } .edit-textarea { width: 100%; margin-bottom: 8px; } .profile-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 30px; text-align: center; margin-bottom: 30px; } .profile-avatar { font-size: 64px; margin-bottom: 15px; } .profile-avatar-wrapper { display: inline-block; border-radius: 50%; border: 3px solid rgba(255,255,255,0.4); padding: 10px; background: rgba(255,255,255,0.05); } .profile-card h2 { font-family: 'Zamenhof Outline'; font-size: 2em; margin-bottom: 10px; text-shadow: 0 0 10px var(--accent); } .social-links { margin-top: 10px; font-size: 0.9em; opacity: 0.7; } .profile-edit { margin-top: 20px; display: flex; gap: 10px; justify-content: center; } .avatar-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; } .avatar-option { font-size: 28px; cursor: pointer; padding: 8px; border-radius: 50%; border: 2px solid transparent; transition: all 0.3s ease; } .avatar-option:hover { border-color: var(--accent); box-shadow: var(--shadow); } .chat-layout { display: flex; gap: 20px; height: calc(100vh - 160px); } .chat-sidebar { width: 280px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 15px; overflow-y: auto; } .chat-list-item { padding: 12px; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.1); transition: background 0.3s ease; border-radius: var(--radius); margin-bottom: 4px; } .chat-list-item:hover, .chat-list-item.active { background: rgba(255,255,255,0.08); } .chat-list-name { font-weight: bold; margin-bottom: 4px; } .chat-list-last { font-size: 0.85em; opacity: 0.6; } #create-chat-btn { width: 100%; margin-top: 10px; } .chat-main { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; } .chat-header { padding: 12px 15px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 15px; flex-wrap: wrap; } .chat-header h3 { margin: 0; } .chat-members { font-size: 0.85em; opacity: 0.6; flex: 1; } .chat-messages { flex: 1; overflow-y: auto; padding: 15px; display: flex; flex-direction: column; gap: 15px; } .chat-message { display: flex; flex-direction: column; max-width: 70%; } .chat-msg-header { display: flex; align-items: center; gap: 8px; font-size: 0.8em; opacity: 0.7; margin-bottom: 4px; } .chat-msg-bubble { background: rgba(255,255,255,0.05); padding: 10px 14px; border-radius: 18px; border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--shadow); transition: all 0.3s ease; } .chat-message.mine .chat-msg-bubble { background: rgba(74,158,255,0.15); border-color: var(--accent); } .chat-msg-text { margin-bottom: 4px; } .chat-msg-image img { max-width: 250px; max-height: 250px; border-radius: 8px; cursor: pointer; } .chat-msg-actions { display: flex; gap: 6px; margin-top: 4px; } .chat-input { display: flex; gap: 8px; padding: 10px 15px; border-top: 1px solid rgba(255,255,255,0.1); align-items: flex-end; } .chat-input textarea { flex: 1; resize: none; } .chat-input input[type="file"] { border: none; padding: 4px; font-size: 12px; max-width: 120px; } .admin-controls { display: flex; gap: 10px; margin-bottom: 20px; } .admin-controls input { flex: 1; } .admin-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.03); border-radius: var(--radius); overflow: hidden; } .admin-table th, .admin-table td { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.1); text-align: left; } .admin-table th { background: rgba(255,255,255,0.08); font-weight: bold; } .admin-detail-btn { padding: 4px 10px; font-size: 0.9em; } .admin-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; } .perm-checkbox { display: block; font-size: 14px; margin: 6px 0; cursor: pointer; } .perm-checkbox input { margin-right: 6px; } .mute-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.9em; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .unmute-btn { padding: 2px 8px; font-size: 12px; } .media-section { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; } .stream-card, .video-card { display: flex; align-items: center; gap: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .stream-live { background: var(--danger); color: white; padding: 2px 10px; border-radius: 20px; font-size: 0.8em; margin-left: auto; } .notif-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 12px; margin-bottom: 8px; } .notif-item.unread { border-left: 4px solid var(--accent); } .notif-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85em; opacity: 0.6; margin-top: 6px; } .notif-actions { margin-top: 15px; } body, p, a, span, div, li, td, th, input, textarea, select, button, label { font-weight: normal; } h1, h2, h3, h4, h5, h6 { font-weight: normal; } .nav-logo-text, .hero h1, .profile-card h2, .footer-col h4, .home-news h2 { font-family: 'Zamenhof Outline', sans-serif; font-weight: bold; } .chat-input input[type="file"] { color: transparent; width: 100px; } .chat-input input[type="file"]::file-selector-button { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 10px; color: var(--text); cursor: pointer; font-family: var(--font); transition: all 0.3s ease; } .chat-input input[type="file"]::file-selector-button:hover { background: var(--accent); border-color: var(--accent); } .toast { position: fixed; bottom: 20px; right: 20px; padding: 12px 20px; border-radius: var(--radius); color: #fff; z-index: 9999; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; pointer-events: none; } .toast.show { opacity: 1; transform: translateY(0); } .toast-error { background: var(--danger); } .toast-success { background: var(--success); } .toast-info { background: var(--accent); } #attach-btn, #chat-send-btn { background: none; border: none; font-size: 1.5em; cursor: pointer; padding: 4px 8px; transition: all 0.3s ease; } #attach-btn:hover, #chat-send-btn:hover { color: var(--accent); transform: scale(1.2); } #chat-send-btn { color: var(--accent); } .social-bind-buttons { display: flex; gap: 10px; margin-bottom: 15px; flex-wrap: wrap; } .bind-social-btn { padding: 8px 16px; border-radius: var(--radius); border: 2px solid var(--border); background: transparent; color: var(--text); cursor: pointer; transition: all 0.3s ease; } .bind-social-btn:hover:not([disabled]) { background: var(--accent); border-color: var(--accent); } .bind-social-btn.bound { border-color: #5eff6e; color: #5eff6e; cursor: not-allowed; opacity: 0.9; } .bind-social-btn:disabled { cursor: not-allowed; opacity: 0.7; } .bind-result { margin: 12px 0; } .hero-logo { display: block; margin: 0 auto 20px; max-width: 100%; height: auto; } .rules-text { max-width: 900px; margin: 0 auto; line-height: 1.6; } .rules-text h3 { margin: 20px 0 10px; color: var(--accent); } .rules-text ul { padding-left: 20px; } .rules-text li { margin-bottom: 8px; } .rules-text { max-width: 900px; margin: 0 auto; line-height: 1.6; } .rules-text h3 { margin: 20px 0 10px; color: var(--accent); } .rules-text ul { padding-left: 20px; } .rules-text li { margin-bottom: 8px; } #community-rules-page h2, #rules-page h2 { text-align: center; margin-bottom: 20px; } .bind-instructions { margin: 15px 0; } .bind-instructions .btn { display: inline-block; margin: 5px 0; background: var(--accent); color: #fff; padding: 6px 12px; border-radius: var(--radius); text-decoration: none; } .bind-instructions .btn:hover { background: #3a7fd4; } select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-color: #1a1a1a; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 32px 8px 12px; font-family: inherit; font-size: 14px; cursor: pointer; 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='%23e6e6e6' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 12px; transition: border-color 0.3s ease, box-shadow 0.3s ease; } select:hover { border-color: var(--accent); } select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.3); } #invite-code-input { margin-top: 20px; } select option { background-color: #1a1a1a; color: var(--text); padding: 8px; } .chat-msg-text { word-wrap: break-word; white-space: pre-wrap; } @media (max-width: 768px) { .chat-layout { flex-direction: column; height: auto; } .chat-sidebar { width: 100%; max-height: 200px; } .chat-main { height: 60vh; } .admin-detail-grid { grid-template-columns: 1fr; } .nav { flex-wrap: wrap; gap: 10px; } .hero h1 { font-size: 2em; } main { padding: 10px; } } .profile-security { margin-top: 20px; padding: 15px; background: rgba(255,255,255,0.03); border-radius: var(--radius); text-align: left; } .security-item { margin: 10px 0; } .security-label { display: flex; align-items: center; gap: 8px; cursor: pointer; } .twofactor-settings { margin-top: 8px; display: flex; gap: 8px; align-items: center; } #login-history-container { margin-top: 10px; font-size: 14px; } .comment .comment { border-left: 2px solid rgba(255, 255, 255, 0.1); padding-left: 10px; margin-left: 10px; } .aside-stream-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14px; } .btn-sm { padding: 2px 6px; font-size: 12px; } .chat-search { display: flex; align-items: center; gap: 6px; margin-left: auto; } .chat-search input { width: 160px; padding: 4px 8px; font-size: 13px; } .chat-search button { background: none; border: none; font-size: 18px; cursor: pointer; padding: 2px 4px; } .reply-preview { display: flex; align-items: flex-start; gap: 6px; background: rgba(255, 255, 255, 0.04); border-left: 3px solid var(--accent); border-radius: 6px; padding: 6px 10px; margin-bottom: 8px; font-size: 13px; cursor: pointer; transition: background 0.2s, border-color 0.2s; line-height: 1.3; } .reply-preview:hover { background: rgba(74, 158, 255, 0.08); border-color: #6db3ff; } .reply-preview::before { content: "↩"; font-size: 14px; color: var(--accent); margin-right: 4px; flex-shrink: 0; opacity: 0.7; } .reply-header { display: flex; align-items: center; gap: 4px; opacity: 0.7; margin-bottom: 2px; font-weight: 500; } .reply-header .chat-avatar { font-size: 14px; width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); } .reply-text { opacity: 0.6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; } .reply-preview[data-reply-id] { user-select: none; } .msg-reactions { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; } .reaction { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 2px 8px; font-size: 14px; cursor: default; transition: background 0.2s; } .reaction:hover { background: rgba(255,255,255,0.15); } .add-reaction-btn { background: none; border: none; font-size: 18px; cursor: pointer; padding: 2px 4px; opacity: 0.6; transition: opacity 0.2s; } .add-reaction-btn:hover { opacity: 1; } .emoji-picker-overlay { position: fixed; z-index: 9999; top: 0; left: 0; right: 0; bottom: 0; display: flex; justify-content: center; align-items: center; } .emoji-picker { background: #1e1e1e; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; display: flex; gap: 8px; box-shadow: var(--shadow); } .emoji-opt { font-size: 24px; cursor: pointer; padding: 4px; border-radius: 6px; transition: background 0.2s; } .emoji-opt:hover { background: rgba(255,255,255,0.1); } .search-results { max-height: 400px; overflow-y: auto; margin-bottom: 15px; } .search-item { padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: background 0.2s; } .search-item:hover { background: rgba(255,255,255,0.05); } .search-item mark { background: var(--accent); color: #fff; padding: 0 2px; border-radius: 2px; } .chat-message { transition: background 0.3s; } * { scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, 0.2) transparent; } ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.35); } ::-webkit-scrollbar-corner { background: transparent; } .form-row { display: flex; gap: 15px; margin-bottom: 10px; align-items: center; flex-wrap: wrap; } .checkbox-label { display: flex; align-items: center; gap: 5px; cursor: pointer; } .profile-bio { margin-top: 15px; padding: 10px; background: rgba(255,255,255,0.03); border-radius: var(--radius); } .bio-empty { opacity: 0.5; font-style: italic; } .activity-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .activity-icon { font-size: 18px; width: 24px; text-align: center; } .activity-date { margin-left: auto; font-size: 13px; opacity: 0.6; } .server-online { text-align: center; padding: 15px; background: rgba(255,255,255,0.03); border-radius: var(--radius); margin: 20px 0; font-size: 16px; } .footer-online { text-align: center; margin: 10px 0 0; opacity: 0.7; font-size: 14px; } .ban-controls { display: flex; gap: 10px; align-items: center; margin: 10px 0; } .ban-controls input { flex: 1; padding: 8px 12px; background: #1a1a1a; border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); } .ban-btn, .unban-btn { padding: 8px 16px; border-radius: var(--radius); border: none; cursor: pointer; font-weight: bold; } .ban-btn { background: var(--danger); color: #fff; } .unban-btn { background: var(--success); color: #000; } .ban-btn:hover, .unban-btn:hover { opacity: 0.9; } .profile-activity { margin-bottom: 20px; margin-top: 20px; } .stats-table { width: 100%; border-collapse: collapse; } .stats-table td { padding: 4px 8px; vertical-align: top; } .stats-table td:first-child { font-weight: 500; opacity: 0.9; } .stats-table td:last-child { text-align: right; font-family: monospace; } .stats-toggle-btn { text-align: center; margin-top: 8px; } .stats-toggle-btn .btn { font-size: 1.1em; padding: 10px 24px; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text); cursor: pointer; transition: background 0.2s; } .stats-toggle-btn .btn:hover { background: rgba(255,255,255,0.1); } .stats-extra { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; margin-bottom: 20px; } .stats-extra table { margin-top: 0; } #map-page { display: flex; flex-direction: column; height: calc(100vh - 120px); } .map-container { flex: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); } .map-container iframe { width: 100%; height: 100%; border: none; } .chat-list-item .chat-list-name i { margin-left: 5px; opacity: 0.5; } .poll-block { margin-top: 15px; padding: 10px; background: rgba(255,255,255,0.03); border-radius: var(--radius); } .poll-block h4 { margin-bottom: 5px; } .poll-total { font-size: 13px; opacity: 0.7; margin-bottom: 8px; } .poll-option-row { margin-bottom: 6px; } .poll-option-label { cursor: pointer; } .poll-bar { background: rgba(255,255,255,0.1); height: 8px; border-radius: 4px; margin: 4px 0; overflow: hidden; } .poll-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width 0.3s; } .poll-percent { font-size: 13px; opacity: 0.8; } .poll-option-row.selected .poll-option-text { font-weight: bold; color: var(--accent); } img[loading="lazy"] { opacity: 0; transition: opacity 0.3s; } img[loading="lazy"]:loaded { opacity: 1; }