body { background-color: #000; color: #fff; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 0; }
.container { width: 95%; max-width: 1300px; margin: 0 auto; padding: 20px; box-sizing: border-box; }
h2, .section-title { text-transform: uppercase; border-left: 5px solid #d00; padding-left: 20px; margin-bottom: 35px; letter-spacing: 1px; color: #d00; text-align: left; }
.centered-content { display: flex; flex-direction: column; align-items: center; width: 100%; }
.content-box { background: #111; border: 1px solid #333; border-radius: 4px; padding: 30px; margin-bottom: 20px; width: 100%; box-sizing: border-box; }
a { color: #d00; text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; }
.header-main { background: #000; border-bottom: 2px solid #d00; padding: 25px 0; margin-bottom: 40px; }
.header-flex { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.logo-img { height: 90px; width: auto; }
.header-text h1 { margin: 0; color: #d00; text-transform: uppercase; letter-spacing: 3px; font-size: 2.2em; }
.nav-bar { margin-top: 15px; display: flex; gap: 35px; align-items: center; flex-wrap: wrap; }
.nav-bar a { color: #d00; text-transform: uppercase; font-size: 0.95em; font-weight: bold; letter-spacing: 1.5px; padding-bottom: 5px; }
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; width: 100%; max-width: 1000px; margin-top: 20px; }
.dash-card { background: #111; border: 1px solid #333; border-radius: 4px; padding: 40px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: 0.3s; }
.dash-card:hover { border-color: #d00; background: #1a1a1a; }
.dash-title { font-weight: bold; color: #d00; margin-top: 15px; letter-spacing: 1px; }
.btn-red { background: #d00; color: #fff; border: none; padding: 10px 25px; cursor: pointer; font-weight: bold; text-transform: uppercase; transition: 0.3s; border-radius: 2px; letter-spacing: 1px; display: inline-block; }
.btn-red:hover { background: #f00; box-shadow: 0 0 20px rgba(255,0,0,0.2); }
.msg-container { border-radius: 2px; margin-bottom: 25px; overflow: hidden; }
.msg-normal { border: 1px solid #333; background: #111; }
.msg-error { border: 5px solid #d00; background: #ff0; color: #d00; font-weight: bold; }
.msg-error .msg-header { background: #ff0; color: #d00; border-bottom: 2px solid #d00; font-size: 1.2em; }
.msg-error .msg-body { background: #ff0; color: #d00; }
.msg-header { background: #1a1a1a; padding: 12px 20px; font-weight: bold; font-size: 0.9em; border-bottom: 1px solid #333; color: #d00; }
.msg-body { padding: 20px; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 10px; min-width: 800px; }
.admin-table th { background: #1a1a1a; color: #d00; text-align: left; padding: 12px; border-bottom: 2px solid #333; cursor: pointer; font-size: 0.8em; text-transform: uppercase; white-space: nowrap; }
.admin-table td { padding: 12px; border-bottom: 1px solid #222; font-size: 0.9em; }
.admin-table tr:hover { background: #161616; }
.admin-table-borders th, .admin-table-borders td { border-right: 1px solid #555555; }
.admin-table-borders th:last-child, .admin-table-borders td:last-child { border-right: none; }
.table-responsive { overflow-x: auto; width: 100%; -webkit-overflow-scrolling: touch; display: block; }
.impersonation-bar { position: fixed; top: 0; left: 0; width: 100%; background: #ff0; color: #000; text-align: center; padding: 12px 0; font-weight: bold; z-index: 10000; letter-spacing: 1px; box-shadow: 0 2px 15px rgba(0,0,0,0.8); font-size: 0.9em; }
.impersonation-bar a { color: #d00; text-decoration: underline; margin-left: 15px; }
.impersonation-bar a:hover { color: #000; }
body:has(.impersonation-bar) { padding-top: 45px; }
input[type='text'], input[type='number'], select { background: #000; border: 1px solid #444; color: #fff; padding: 10px; border-radius: 2px; box-sizing: border-box; }
.results-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 35px; }
.profile-card { background: #111; border: 1px solid #333; border-radius: 4px; width: 250px; overflow: hidden; transition: 0.3s; }
.profile-card:hover { border-color: #d00; }
.card-header { padding: 15px; background: #1a1a1a; border-bottom: 1px solid #222; }
.card-header .stagename { font-size: 1.1em; font-weight: bold; color: #d00; display: block; text-transform: uppercase; }
.card-img-wrap { width: 100%; height: 300px; overflow: hidden; background: #000; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-content { padding: 15px; font-size: 0.85em; }
.stats-row { display: flex; justify-content: space-between; margin-bottom: 8px; border-bottom: 1px solid #222; padding-bottom: 4px; }
.stats-label { color: #666; text-transform: uppercase; font-size: 0.75em; }
.stats-val { color: #eee; font-weight: bold; }
@media (max-width: 768px) { .header-flex { flex-direction: column; text-align: center; } .nav-bar { justify-content: center; } .dashboard-grid { grid-template-columns: 1fr; } }