:root { --bg-deep: #05010f; --bg-panel: rgba(18, 12, 45, 0.72); --bg-panel-solid: #140c2e; --border: rgba(122, 92, 255, 0.28); --neon: #7a5cff; --neon-2: #20e3ff; --neon-pink: #ff4d8a; --accent: #20e3ff; --accent-pink: #ff4d8a; --text: #e7e3ff; --text-dim: #9b93c7; --open: #20e3ff; --progress: #ffcb47; --closed: #4ad991; --critical: #ff3b6b; --high: #ff8a3d; --medium: #ffcb47; --low: #4ad991; } * { box-sizing: border-box; } html, body { margin: 0; padding: 0; min-height: 100%; } body { font-family: 'Exo 2', system-ui, sans-serif; color: var(--text); background: radial-gradient(1200px 600px at 80% -10%, rgba(122, 92, 255, 0.25), transparent 60%), radial-gradient(1000px 500px at 10% 110%, rgba(32, 227, 255, 0.18), transparent 55%), var(--bg-deep); min-height: 100vh; overflow-x: hidden; } #starfield { position: fixed; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; } a { color: inherit; text-decoration: none; } /* ---------- Top bar ---------- */ .topbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; background: rgba(10, 6, 26, 0.55); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; } .brand { display: flex; align-items: center; gap: 12px; font-family: 'Orbitron', sans-serif; font-weight: 900; letter-spacing: 2px; font-size: 1.2rem; } .brand-glyph { font-size: 1.5rem; filter: drop-shadow(0 0 8px var(--neon-2)); } .brand-accent { color: var(--accent); } .nav { display: flex; align-items: center; gap: 22px; font-size: 0.95rem; } .nav a:hover { color: var(--accent); } .pilot { color: var(--text-dim); } .logout { color: var(--accent-pink); } /* ---------- Buttons ---------- */ .btn-launch { display: inline-block; padding: 10px 20px; border: none; border-radius: 999px; background: linear-gradient(135deg, var(--neon), var(--accent)); color: #06021a; font-weight: 700; font-family: 'Orbitron', sans-serif; letter-spacing: 1px; cursor: pointer; box-shadow: 0 0 18px rgba(122, 92, 255, 0.55); transition: transform 0.15s ease, box-shadow 0.2s ease; } .btn-launch:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 0 28px rgba(32, 227, 255, 0.8); } .btn-launch.wide { width: 100%; } .btn-ghost { display: inline-block; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); color: var(--text-dim); transition: 0.2s; } .btn-ghost:hover { color: var(--text); border-color: var(--accent); } /* ---------- Layout ---------- */ .content { max-width: 1080px; margin: 0 auto; padding: 32px; } .page-title { font-family: 'Orbitron', sans-serif; font-weight: 700; letter-spacing: 1px; margin: 0 0 18px; text-shadow: 0 0 18px rgba(122, 92, 255, 0.6); } /* ---------- Flash messages ---------- */ .flashes { margin-bottom: 18px; display: grid; gap: 10px; } .flash { padding: 12px 18px; border-radius: 12px; border: 1px solid var(--border); backdrop-filter: blur(8px); animation: drop 0.4s ease; } .flash-success { background: rgba(74, 217, 145, 0.12); border-color: rgba(74, 217, 145, 0.5); } .flash-error { background: rgba(255, 59, 107, 0.12); border-color: rgba(255, 59, 107, 0.5); } @keyframes drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } } /* ---------- Login ---------- */ .login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; } .login-card { position: relative; width: 380px; max-width: 100%; padding: 48px 36px 28px; border-radius: 24px; background: var(--bg-panel); border: 1px solid var(--border); backdrop-filter: blur(16px); box-shadow: 0 0 60px rgba(122, 92, 255, 0.3); text-align: center; overflow: hidden; } .planet { position: absolute; width: 160px; height: 160px; border-radius: 50%; top: -70px; right: -50px; background: radial-gradient(circle at 30% 30%, var(--accent), #1b1450 70%); box-shadow: 0 0 40px rgba(32, 227, 255, 0.6), inset -10px -10px 30px rgba(0,0,0,0.5); animation: float 6s ease-in-out infinite; } @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } } .login-title { font-family: 'Orbitron', sans-serif; font-weight: 900; letter-spacing: 2px; margin: 0 0 4px; } .login-sub { color: var(--text-dim); margin: 0 0 24px; } .login-form { display: grid; gap: 16px; text-align: left; } .login-foot { color: var(--text-dim); font-size: 0.8rem; margin-top: 20px; } /* ---------- Form fields ---------- */ label { display: grid; gap: 6px; font-size: 0.85rem; color: var(--text-dim); } input, textarea, select { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: rgba(5, 2, 18, 0.6); color: var(--text); font-family: inherit; font-size: 0.95rem; transition: border 0.2s, box-shadow 0.2s; } input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(32, 227, 255, 0.18); } select option { background: var(--bg-panel-solid); } /* ---------- Board ---------- */ .board-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; } .stats { display: flex; gap: 14px; } .stat { min-width: 92px; padding: 14px 18px; border-radius: 16px; border: 1px solid var(--border); background: var(--bg-panel); text-align: center; backdrop-filter: blur(8px); } .stat-num { display: block; font-family: 'Orbitron', sans-serif; font-size: 1.6rem; font-weight: 700; } .stat-label { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; } .stat-open .stat-num { color: var(--open); } .stat-progress .stat-num { color: var(--progress); } .stat-closed .stat-num { color: var(--closed); } .filter-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin: 24px 0; } .tabs { display: flex; gap: 8px; flex-wrap: wrap; } .tab { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); color: var(--text-dim); font-size: 0.85rem; transition: 0.2s; } .tab:hover { color: var(--text); } .tab.active { color: #06021a; background: linear-gradient(135deg, var(--neon), var(--accent)); border-color: transparent; font-weight: 700; } .search { display: flex; gap: 8px; } .search input { width: 240px; } .search button { border-radius: 12px; border: 1px solid var(--border); background: rgba(5,2,18,0.6); cursor: pointer; width: 48px; } /* ---------- Issue cards ---------- */ .issue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; } .issue-card { display: flex; flex-direction: column; gap: 10px; padding: 18px; border-radius: 18px; background: var(--bg-panel); border: 1px solid var(--border); backdrop-filter: blur(8px); position: relative; overflow: hidden; transition: transform 0.18s ease, box-shadow 0.2s ease, border 0.2s; } .issue-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--medium); } .issue-card.prio-low::before { background: var(--low); } .issue-card.prio-medium::before { background: var(--medium); } .issue-card.prio-high::before { background: var(--high); } .issue-card.prio-critical::before { background: var(--critical); box-shadow: 0 0 14px var(--critical); } .issue-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(32, 227, 255, 0.22); } .issue-card-top { display: flex; justify-content: space-between; align-items: center; } .issue-id { font-family: 'Orbitron', sans-serif; color: var(--text-dim); font-size: 0.85rem; } .issue-id.big { font-size: 1.1rem; color: var(--accent); } .issue-title { margin: 0; font-size: 1.05rem; } .issue-title.big { font-size: 1.6rem; margin: 6px 0 10px; } .issue-snippet { margin: 0; color: var(--text-dim); font-size: 0.88rem; line-height: 1.5; } .issue-card-foot { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; margin-top: auto; } .prio { text-transform: uppercase; letter-spacing: 1px; font-weight: 600; } .prio-dot-low { color: var(--low); } .prio-dot-medium { color: var(--medium); } .prio-dot-high { color: var(--high); } .prio-dot-critical { color: var(--critical); } .assignee { color: var(--text-dim); } /* ---------- Badges ---------- */ .badge { padding: 4px 12px; border-radius: 999px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; border: 1px solid; } .badge-open { color: var(--open); border-color: var(--open); } .badge-in_progress { color: var(--progress); border-color: var(--progress); } .badge-closed { color: var(--closed); border-color: var(--closed); } /* ---------- Panels / detail ---------- */ .panel { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 20px; padding: 26px; backdrop-filter: blur(10px); } .back { color: var(--text-dim); display: inline-block; margin-bottom: 16px; } .back:hover { color: var(--accent); } .detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 20px; } .issue-head { display: flex; align-items: center; gap: 14px; } .meta { color: var(--text-dim); font-size: 0.85rem; margin: 0 0 18px; } .description { white-space: pre-wrap; line-height: 1.6; padding: 16px; border-radius: 14px; background: rgba(5,2,18,0.4); border: 1px solid var(--border); } .section-label { font-family: 'Orbitron', sans-serif; font-size: 1rem; letter-spacing: 1px; margin: 28px 0 14px; } .comments { display: grid; gap: 12px; margin-bottom: 18px; } .comment { padding: 14px 16px; border-radius: 14px; background: rgba(5,2,18,0.45); border: 1px solid var(--border); } .comment-head { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 6px; } .comment-author { color: var(--accent); } .comment-time { color: var(--text-dim); } .comment-body { line-height: 1.5; white-space: pre-wrap; } .comment-form { display: grid; gap: 12px; } .muted { color: var(--text-dim); } .side-form { display: grid; gap: 16px; } .updated { font-size: 0.78rem; margin-top: 16px; } /* ---------- Forms ---------- */ .issue-form { display: grid; gap: 18px; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } .form-actions { display: flex; justify-content: flex-end; gap: 12px; } /* ---------- Empty state ---------- */ .empty { text-align: center; padding: 60px 20px; display: grid; gap: 18px; justify-items: center; } .empty-orb { width: 90px; height: 90px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--neon), #160e3a 70%); box-shadow: 0 0 40px rgba(122, 92, 255, 0.6); animation: float 5s ease-in-out infinite; } .empty p { color: var(--text-dim); } /* ---------- Responsive ---------- */ @media (max-width: 820px) { .detail-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .topbar { flex-direction: column; gap: 12px; } } /* ---------- Blocks ---------- */ .block-banner { margin: 14px 0 4px; padding: 10px 14px; border: 1px solid rgba(255, 59, 107, 0.45); background: rgba(255, 59, 107, 0.10); border-radius: 10px; color: #ffd0dc; font-weight: 600; letter-spacing: 0.02em; } .block-banner a { color: var(--neon-2); text-decoration: none; margin: 0 2px; } .block-banner a:hover { text-decoration: underline; } .blocks-grid { margin-top: 22px; } .block-list { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 8px; } .block-list li { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid var(--border); border-radius: 10px; background: rgba(10, 6, 30, 0.55); } .block-link { display: flex; align-items: center; gap: 10px; flex: 1; color: var(--text); text-decoration: none; min-width: 0; } .block-link:hover .block-title { color: var(--neon-2); } .block-title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .inline-form { margin: 0; } .btn-ghost { background: transparent; color: var(--text-dim); border: 1px solid var(--border); border-radius: 8px; padding: 4px 10px; cursor: pointer; font-family: inherit; } .btn-ghost:hover { color: var(--neon-pink); border-color: var(--neon-pink); } .block-form { display: flex; align-items: end; gap: 10px; flex-wrap: wrap; } .block-form label { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 180px; } .block-form input { background: var(--bg-panel-solid); color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; font-family: inherit; } .block-form input:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px rgba(122, 92, 255, 0.25); }