:root { --bg-main: #0a0a0c; --bg-panel: #141418; --bg-subpanel: #1a1a1e; --border-color: #2a2a2e; --accent: #f39c12; --text-main: #e0e0e0; --text-muted: #888888; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); font-size: 14px; min-height: 100vh; overflow-x: hidden; }
a { text-decoration: none !important; color: inherit; }
::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg-main); } ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.bg-glow { position: fixed; width: 800px; height: 800px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; pointer-events: none; opacity: 0.05; transition: background 0.5s; }
.animate-fade { animation: fadeIn 0.3s ease-out forwards; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hover-lift { transition: 0.3s ease; } .hover-lift:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.4); border-color: var(--accent); }
.shadow-hover { transition: 0.3s; } .shadow-hover:hover { box-shadow: 0 0 15px var(--accent); opacity: 0.9; }
.focus-glow:focus { box-shadow: 0 0 10px rgba(0,0,0, 0.5); border-color: var(--accent) !important; }
.text-accent { color: var(--accent); transition: color 0.3s;} .text-muted { color: var(--text-muted); } .text-xl { font-size: 1.8rem; font-weight: bold; }
.mt-10 { margin-top: 10px; } .mt-15 { margin-top: 15px; } .mt-20 { margin-top: 20px; } .mb-10 { margin-bottom: 10px; } .mb-15 { margin-bottom: 15px; } .mb-20 { margin-bottom: 20px; } .w-100 { width: 100%; }
.role-admin { color: #ff4757; font-weight: bold; text-shadow: 0 0 5px rgba(255, 71, 87, 0.3); } .role-moderator { color: #f1c40f; font-weight: bold; text-shadow: 0 0 5px rgba(241, 196, 15, 0.3); } .role-support { color: #00a8ff; font-weight: bold; text-shadow: 0 0 5px rgba(0, 168, 255, 0.3); } .role-poweruser { color: #2ecc71; font-weight: bold; text-shadow: 0 0 5px rgba(46, 204, 113, 0.3); } .role-user { color: #95a5a6; }
.badge { background: rgba(0,0,0,0.5); border: 1px solid var(--border-color); color: #fff; padding: 3px 8px; border-radius: 4px; font-size: 0.75rem; font-weight:bold;} .badge-new { background: #ff4757; color: #fff; padding: 2px 6px; border-radius: 4px; font-size: 0.7rem; font-weight: bold; margin-left: 5px; } .badge-icon { background: #111; border: 1px solid var(--accent); color: var(--accent); padding: 5px 10px; border-radius: 20px; font-weight: bold; display: flex; align-items: center; gap: 5px; font-size: 0.8rem;} .badge-tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.online-dot { width: 12px; height: 12px; background: #2ecc71; border-radius: 50%; box-shadow: 0 0 8px #2ecc71; display: inline-block;} .color-dot { width: 30px; height: 30px; border-radius: 50%; cursor: pointer; border: 2px solid #fff; transition: 0.2s; } .color-dot:hover { transform: scale(1.1); }
.glass-nav { border-bottom: 1px solid var(--border-color); background: var(--bg-panel); padding: 0 40px; height: 65px; display: flex; justify-content: space-between; align-items: center; z-index: 100; position: relative; } .glass-panel { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 8px; padding: 40px; width: 100%; max-width: 450px; } .panel, .panel-small { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 8px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); } .glass-card, .sub-panel, .solid-card { background: var(--bg-subpanel); border: 1px solid var(--border-color); border-radius: 6px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.nav-brand { font-size: 1.3rem; font-weight: 800; letter-spacing: 2px; } .nav-links { display: flex; gap: 5px; height: 100%; align-items: center; } .nav-btn { background: none; border: none; color: var(--text-main); cursor: pointer; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; padding: 0 15px; height: 100%; transition: 0.2s; border-radius: 4px;} .nav-btn:hover { color: var(--accent); } .nav-btn.active { color: var(--accent); background: rgba(255,255,255,0.05); border-bottom: 2px solid var(--accent); border-radius: 4px 4px 0 0;} .nav-user-info { font-size: 0.95rem; display: flex; align-items: center; gap: 15px; }
.board-grid { display: grid; grid-template-columns: 1fr 320px; gap: 30px; width: 100%; max-width: 1600px; margin: 40px auto; padding: 0 40px; } .panel-header { font-size: 1.15rem; font-weight: bold; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color);} .panel-header-small { color: #fff; font-size: 0.85rem; font-weight: bold; margin-bottom: 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 8px;} .sub-panel-header { color: var(--accent); font-size: 0.8rem; font-weight: bold; margin-bottom: 15px; transition: 0.3s;}
.auth-container { margin: 15vh auto; max-width: 420px; } .premium-input, .form-input, .form-textarea, .form-select { width: 100%; background: #111; border: 1px solid var(--border-color); color: #fff; padding: 12px; border-radius: 6px; } .action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.btn-solid-accent, a.btn-solid-accent { background: var(--accent); color: #000 !important; border: none; font-weight: bold; padding: 10px 15px; border-radius: 6px; cursor: pointer; text-transform: uppercase; transition: 0.3s; display: inline-block; text-align: center; } .btn-solid-accent:hover, a.btn-solid-accent:hover { opacity: 0.9; } .btn-secondary { background: rgba(255,255,255,0.05); color: var(--text-main) !important; border: 1px solid var(--border-color); border-radius: 6px; cursor: pointer; padding: 10px 15px; font-weight: bold; transition: 0.3s; display: inline-block; text-align: center; } .btn-secondary.active { border-color: var(--accent); color: var(--accent) !important; } .btn-outline-accent { background: transparent; border: 1px solid var(--accent); color: var(--accent) !important; padding: 8px 16px; border-radius: 6px; cursor: pointer; transition: 0.3s; display: inline-block; text-align: center; } .btn-dark { background: #111; border: 1px solid var(--border-color); color: var(--text-main) !important; padding: 8px 16px; border-radius: 6px; cursor: pointer; transition: 0.3s; display: inline-block; text-align: center; } .btn-dark:hover { border-color: var(--accent); } .btn-text { background: transparent; border: none; cursor: pointer; font-weight: bold; color: inherit; }
.profile-banner { width: 100%; height: 180px; background: #111; border-radius: 6px 6px 0 0; border-bottom: 2px solid var(--accent); background-size: cover; background-position: center; transition: 0.3s;} .profile-layout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 25px; padding: 20px;} .profile-avatar { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; border: 2px solid var(--accent); background:#111; transition: 0.3s;} .profile-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; } .modern-table { width: 100%; border-collapse: collapse; background: #111; border-radius: 6px; } .modern-table th { color: var(--accent); padding: 15px;} .modern-table td { padding: 15px; border-bottom: 1px solid var(--border-color); } .friends-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; } .friends-list li { background: #111; border: 1px solid var(--accent); padding: 6px 14px; border-radius: 20px; cursor: pointer; transition: 0.2s;} .friends-list li:hover { background: var(--accent); color: #000; }
.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; } .member-card { display: flex; align-items: center; gap: 15px; padding: 15px; background: var(--bg-subpanel); border: 1px solid var(--border-color); border-radius: 8px; cursor: pointer; transition: 0.3s; } .member-card:hover { border-color: var(--accent); transform: translateY(-3px); } .member-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-color); }
.release-list { display: flex; flex-direction: column; gap: 15px; } .release-card { display: flex; background: var(--bg-subpanel); border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; border-left: 4px solid var(--accent); transition: 0.3s;} .release-card:hover { transform: scale(1.01); border-color: var(--accent); box-shadow: 0 8px 25px rgba(0,0,0,0.4);} .release-cover { width: 120px; min-height: 160px; background: #000; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border-color); } .release-cover img { width: 100%; height: 100%; object-fit: cover; } .release-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } .release-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--border-color); } .like-btn { cursor: pointer; background: #111; border: 1px solid var(--border-color); color: #ff4757; padding: 5px 10px; border-radius: 20px; font-weight: bold; transition: 0.2s;} .like-btn:hover { background: rgba(255, 71, 87, 0.2); border-color: #ff4757; }
.shoutbox { height: 450px; display: flex; flex-direction: column; } .shoutbox-messages { flex-grow: 1; background: #111; border: 1px solid var(--border-color); padding: 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; border-radius: 6px; } .shoutbox-messages p { line-height: 1.5; background: var(--bg-subpanel); padding: 8px 12px; border-radius: 6px; border-left: 2px solid #333;} .shoutbox-ping { background: rgba(255,255,255,0.1) !important; border-left-color: var(--accent) !important; } .ping-mention { background: var(--accent); color: #000; padding: 0 4px; border-radius: 3px; font-weight: bold; }
#toast-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 10px; z-index: 9999; } .toast { background: var(--bg-panel); border-left: 4px solid var(--accent); color: #fff; padding: 15px 25px; border-radius: 6px; font-weight: bold; box-shadow: 0 10px 30px rgba(0,0,0,0.5); animation: slideIn 0.3s ease-out forwards; } @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } } @keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); display: flex; justify-content: center; align-items: center; z-index: 1000; } .modal-content { max-width: 900px; width: 90%; } .nfo-textarea { width: 100%; height: 400px; background: #050505; color: #2ecc71; font-family: 'Consolas', monospace; padding: 20px; border: 1px solid var(--border-color); resize: none; border-radius: 6px;}
.dm-card { background: #111; border: 1px solid var(--border-color); padding: 15px; border-radius: 4px; border-left: 3px solid #333; } .dm-card.unread { border-left-color: var(--accent); } .progress-bar-bg { width: 100%; height: 4px; background: var(--bg-main); border-radius: 2px; } .progress-bar-fill { height: 100%; width: 0%; background: var(--accent); border-radius: 2px; }