/* === Dark Neon Theme === */

body {
    background-color: #0d0d0f; /* почти чёрный фон */
    color: #e0e0e0; /* светло-серый текст */
    font-family: "Segoe UI", Roboto, sans-serif;
}

a {
    color: #4dd0ff;
    transition: color 0.2s;
}
a:hover {
    color: #82f7ff;
    text-decoration: none;
}

/* Кнопки */
.btn {
    border-radius: 8px;
    border: none;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-primary {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: #fff;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.7);
}

/* Карточки */
.card {
    background: #1a1a1f;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.05);
    color: #f0f0f0;
}
.card h3, .card h4, .card h5 {
    color: #ffffff;
}

/* Таблицы */
.table {
    color: #e8e8e8;
    background: #1a1a1f;
    border-radius: 12px;
    overflow: hidden;
}
.table th {
    background: #22222a;
    color: #66e0ff;
    font-weight: 600;
}
.table td {
    background: #1a1a1f;
color: #66e0ff;
    
}
.table tr:hover td {
    background: #252530;
}

/* Блоки статистики */
.border {
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: #16161c;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.08);
}
.border h5 {
    color: #4dd0ff;
}
.border p {
    font-size: 1.2rem;
    color: #fff;
}

/* Ачивки */
.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.achievements img {
    border-radius: 50%; /* скруглённые как аватар */
    background: #111;
    padding: 4px;
    box-shadow: 0 0 6px rgba(0, 210, 255, 0.4);
}

/* Fancybox фон */
.fancybox__backdrop {
    background: rgba(0, 0, 0, 0.95);
}

/* Заголовки */
h3, h4 {
    color: #ffffff;
    font-weight: 600;
}

/* Метки muted */
.text-muted {
    color: #aaa !important;
}





.form-control, .form-select {
  background-color: #0e1628;
  color: #e9eefb;
  border: 1px solid #2b3b61;
}
.form-control:focus, .form-select:focus {
  border-color: #00ffff;
  box-shadow: 0 0 6px #00ffff;
  background-color: #0e1628;
}

.btn-primary {
  background: linear-gradient(135deg, #0077ff, #00ffff);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #005fcc, #00cccc);
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.7);
}
  .btn-primary{background:linear-gradient(90deg, var(--neon2), var(--neon)); border:0}
  .btn-primary:hover{filter:brightness(1.05)}
