﻿.dash-error {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); padding: 2rem;
}
.error-box {
  text-align: center; max-width: 420px;
  background: var(--black-3);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
}
.error-icon {
  width: 72px; height: 72px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 50%;
  color: #f87171;
}
.error-box h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.error-box p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.error-redirect {
  font-size: 0.82rem; color: var(--text-dim);
  padding: 0.5rem 1rem;
  background: var(--black-4); border-radius: 8px;
  display: inline-block;
}
.error-redirect span { color: #ef4444 !important; font-weight: 700; }
.dash-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); padding: 2rem;
  position: relative; overflow: hidden;
}
.login-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.login-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.dash-login-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 440px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  animation: fadeInUp 0.5s ease both;
}
.dash-login-title {
  font-size: 1.75rem; font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}
.dash-login-desc {
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.6;
}
.dash-discord-btn {
  width: 100%; justify-content: center;
  font-size: 1rem; padding: 0.85rem 1.5rem;
  gap: 0.75rem;
}
.dash-login-note {
  margin-top: 1.25rem;
  font-size: 0.78rem; color: var(--text-dim); line-height: 1.5;
}
.dash-wrap { min-height: 100vh; background: var(--black); }
.dash-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
  background: rgba(8,8,8,0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  position: sticky; top: 0; z-index: 100;
}
.dash-nav-right { display: flex; align-items: center; gap: 1rem; }
.dash-user {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; font-weight: 600;
}
.dash-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--yellow);
  object-fit: cover;
}
.dash-logout-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: none; border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-muted);
  font-size: 0.8rem; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: var(--transition);
}
.dash-logout-btn:hover { border-color: #ef4444; color: #f87171; }
.dash-main {
  max-width: 1280px; margin: 0 auto;
  padding: 3rem 2rem;
}
.dash-header { margin-bottom: 2.5rem; }
.dash-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -1px; margin-top: 0.5rem;
}
.dash-subtitle {
  color: var(--text-muted); font-size: 0.95rem; margin-top: 0.5rem;
}
.dash-filter { margin-bottom: 2rem; }
.guide-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: var(--black-3);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.guide-banner-left {
  display: flex; align-items: center; gap: 1rem;
}
.guide-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px;
  color: #f87171;
}
.guide-title {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem;
}
.guide-desc {
  font-size: 0.8rem; color: var(--text-muted);
}
.guide-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: #ff0000;
  color: #fff;
  font-size: 0.85rem; font-weight: 700;
  border-radius: 9px;
  transition: var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.guide-btn:hover {
  background: #cc0000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,0,0,0.3);
}
.files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.file-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: var(--transition);
  animation: fadeInUp 0.4s ease both;
}
.file-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.file-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
}
.file-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow-dim);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 12px;
  color: var(--yellow);
}
.file-icon.injector { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.25); color: #60a5fa; }
.file-icon.spoofer  { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.25); color: #a78bfa; }
.file-name {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem;
}
.file-desc {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}
.file-games {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.file-game-tag {
  font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 5px; border: 1px solid var(--border);
  background: var(--black-4);
  text-transform: uppercase; letter-spacing: 0.4px;
}
.file-game-tag.rust     { color: #e07b39; border-color: rgba(224,123,57,0.3); }
.file-game-tag.fivem    { color: var(--yellow); border-color: rgba(201,162,39,0.3); }
.file-game-tag.r6       { color: #60a5fa; border-color: rgba(96,165,250,0.3); }
.file-game-tag.fortnite { color: #e879f9; border-color: rgba(232,121,249,0.3); }
.file-game-tag.eft      { color: #94a3b8; border-color: rgba(148,163,184,0.3); }
.file-game-tag.extra-tag { color: #4ade80; border-color: rgba(74,222,128,0.3); }
.file-download-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--yellow); color: var(--black);
  font-size: 0.85rem; font-weight: 700;
  border-radius: 9px; border: none; cursor: pointer;
  transition: var(--transition); font-family: inherit;
  text-decoration: none;
}
.file-download-btn:hover {
  background: var(--yellow-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--yellow-glow);
}
@media (max-width: 600px) {
  .dash-main { padding: 2rem 1.25rem; }
  .files-grid { grid-template-columns: 1fr; }
}
.video-modal {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}
.video-modal-box {
  position: relative; z-index: 1;
  width: 100%; max-width: 760px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeInUp 0.3s ease both;
}
.video-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.25rem 1.5rem; gap: 1rem;
  border-bottom: 1px solid var(--border);
}
.video-modal-title { font-size: 1rem; font-weight: 700; }
.video-modal-desc  { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
.video-modal-close {
  background: none; border: 1px solid var(--border);
  border-radius: 7px; padding: 0.35rem;
  color: var(--text-muted); cursor: pointer;
  transition: var(--transition); flex-shrink: 0;
}
.video-modal-close:hover { border-color: #ef4444; color: #f87171; }
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: #000;
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.video-download-btn {
  display: flex; margin: 1.25rem 1.5rem;
  justify-content: center;
}
.dash-docs {
  margin-top: 3rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.dash-docs-block {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dash-docs-header {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.dash-docs-num {
  font-size: 0.72rem; font-weight: 800;
  padding: 0.3rem 0.65rem;
  background: var(--yellow-dim);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 6px;
  color: var(--yellow); letter-spacing: 1px;
  flex-shrink: 0; margin-top: 2px;
}
.dash-docs-title {
  font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem;
}
.dash-docs-desc {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}
.dash-video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: #000;
}
.dash-video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.dash-docs-block .docs-step { padding: 1rem 1.5rem; }
.dash-docs-block .docs-step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow-dim);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 7px;
  font-size: 0.78rem; font-weight: 800; color: var(--yellow);
  margin-top: 1px;
}
.dash-docs-block .docs-step-num.success {
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.3);
  color: #4ade80;
}
.dash-docs-block .docs-step { display: flex; align-items: flex-start; gap: 1rem; border-bottom: 1px solid var(--border); transition: var(--transition); }
.dash-docs-block .docs-step:last-child { border-bottom: none; }
.dash-docs-block .docs-step:hover { background: var(--black-4); }
.dash-docs-block .docs-step-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.dash-docs-block .docs-step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
