/*=================================================================================
СТРАНИЦА ИГРЫ - HERO СЕКЦИЯ (ОСНОВНАЯ ИНФОРМАЦИЯ О СЕРВЕРЕ)
=================================================================================*/

.game__hero-section {
  padding: 120px 0 30px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(108, 92, 231, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(86, 204, 242, 0.1) 0%, transparent 40%),
    var(--bg-primary);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.game__hero-section .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.game__hero-card {
  background: rgba(255, 255, 255, 0.02);
  background-image: url('https://avatars.mds.yandex.net/i?id=cea4c18212e82451402139da7f41f928_l-11444350-images-thumbs&n=13');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 25px;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.game__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.game__hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 18, 0.75);
  z-index: 1;
  pointer-events: none;
}

.game__hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.game__hero-rating-container {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.game__hero-rating {
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game__hero-stars {
  display: flex;
  gap: 2px;
}

.game__hero-stars i {
  font-size: 12px;
  color: #ffd700;
}

.game__hero-stars i.far {
  color: rgba(255, 255, 255, 0.3);
}

.game__hero-rating-number {
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.game__hero-title-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.game__hero-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.game__hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.game__hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 700px;
  max-height: 200px;
  overflow: hidden;
}

.game__hero-status {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game__hero-status.status-open {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.game__hero-status.status-obt {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.08));
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.game__hero-status.status-cbt {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.game__hero-status.status-coming-soon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.08));
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

.game__hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 30px 25px 30px 25px;
  margin-top: auto;
}

.game__hero-quick-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.game__hero-quick-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  min-width: 180px;
}

.game__hero-quick-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.game__hero-quick-stat:hover::before {
  opacity: 1;
}

.game__hero-quick-stat:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.game__hero-stat-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.game__hero-stat-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.game__hero-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.game__hero-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game__hero-actions {
  display: flex;
  align-items: flex-end;
}

.game__hero-play-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.game__hero-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(108, 92, 231, 0.4);
}

/*=================================================================================
СТРАНИЦА ИГРЫ - ОПИСАНИЕ ПРОЕКТА
=================================================================================*/

.game__desc-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}

.game__desc-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.game__desc-container {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}

.section-title i {
  color: var(--primary-color);
  font-size: 24px;
}

.game__desc-content {
  position: relative;
}

.game__desc-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.game__desc-intro-section {
  margin-bottom: 40px;
}

.game__desc-main-description {
  margin-bottom: 25px;
  white-space: pre-line;
  font-size: 16px;
  line-height: 1.8;
}

.game__desc-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-md);
  margin: 25px 0;
  position: relative;
  backdrop-filter: blur(5px);
}

.game__desc-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.game__desc-highlight-box i {
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.game__desc-highlight-box p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
  font-size: 15px;
  flex: 1;
  display: flex;
  align-items: center;
}

.game__server-links {
  margin-top: 40px;
}

.game__server-links h3 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.game__server-links h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--secondary-color);
}

.game__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.game__server-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.game__server-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.game__server-link i {
  color: var(--primary-color);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.game__server-link span {
  flex: 1;
}

.game__server-link strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.game__server-link small {
  color: var(--text-secondary);
  font-size: 12px;
}

/*=================================================================================
НОВЫЕ СТИЛИ ДЛЯ ОБНОВЛЕННОЙ СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

/*=================================================================================
ОСНОВНЫЕ БЛОКИ СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

.game__intro-content {
  margin-bottom: 40px;
}

.game__intro-text {
  margin-bottom: 30px;
}

.game__main-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 0;
  text-align: center;
  font-weight: 400;
}

/*=================================================================================
БЛОКИ С ВЫДЕЛЕНИЯМИ СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

.game__highlight-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.game__highlight-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.game__highlight-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.game__highlight-block.highlight-info {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
  border-color: rgba(52, 152, 219, 0.3);
}

.game__highlight-block.highlight-success {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
  border-color: rgba(46, 204, 113, 0.3);
}

.game__highlight-block.highlight-warning {
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(241, 196, 15, 0.05) 100%);
  border-color: rgba(241, 196, 15, 0.3);
}

.game__highlight-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 20px;
}

.highlight-info .game__highlight-icon {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
}

.highlight-success .game__highlight-icon {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.highlight-warning .game__highlight-icon {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

.game__highlight-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__highlight-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/*=================================================================================
ВЫДЕЛЕНИЯ ТЕКСТА СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

.highlight-yellow {
  background: linear-gradient(120deg, rgba(255, 235, 59, 0.3) 0%, rgba(255, 235, 59, 0.1) 100%);
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff176;
  font-weight: 500;
}

.text-success {
  color: #4caf50;
  font-weight: 600;
}

.text-emphasis {
  color: var(--secondary-color);
  font-style: italic;
}

.text-danger {
  color: #f44336;
  font-weight: 600;
}

/*=================================================================================
СТАТИСТИЧЕСКИЕ КАРТОЧКИ СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

.game__stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.game__stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.game__stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.game__stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.game__stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.game__stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

/*=================================================================================
ЗАГОЛОВКИ СЕКЦИЙ "О ПРОЕКТЕ"
=================================================================================*/

.game__section-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 40px 0 25px 0;
  padding-bottom: 15px;
  position: relative;
}

.game__section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.game__section-subtitle i {
  color: var(--primary-color);
}

/*=================================================================================
СПОЙЛЕРЫ СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

.game__spoilers-section {
  margin: 30px 0;
}

.game__spoiler {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.game__spoiler:hover {
  border-color: var(--primary-color);
}

.game__spoiler.active {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(108, 92, 231, 0.1);
}

.game__spoiler-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.game__spoiler-header:hover {
  background: rgba(255, 255, 255, 0.08);
}

.game__spoiler-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__spoiler-title i {
  color: var(--primary-color);
}

.game__spoiler-icon {
  color: var(--text-secondary);
  transition: transform var(--transition-fast);
}

.game__spoiler.active .game__spoiler-icon {
  transform: rotate(180deg);
}

.game__spoiler-content {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.game__spoiler-inner {
  padding: 25px;
  line-height: 1.6;
}

.game__spoiler-inner p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.game__spoiler-inner p:first-child {
  margin-top: 0;
}

.game__spoiler-inner p:last-child {
  margin-bottom: 0;
}

.game__spoiler-inner strong {
  color: var(--text-primary);
  font-weight: 600;
}

.game__spoiler-inner ul,
.game__spoiler-inner ol {
  margin: 15px 0;
  padding-left: 20px;
}

.game__spoiler-inner li {
  margin: 8px 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.game__spoiler-inner li strong {
  color: var(--text-primary);
}

/*=================================================================================
СЕТКА ОСОБЕННОСТЕЙ СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

.game__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.game__feature-content h5 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.game__feature-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  opacity: 0.9;
}

/*=================================================================================
ТАБЛИЦЫ СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

.game__tables-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.game__table-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.game__table-wrapper h5 {
  background: rgba(255, 255, 255, 0.05);
  margin: 0;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game__spec-table {
  width: 100%;
  border-collapse: collapse;
}

.game__spec-table th,
.game__spec-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game__spec-table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.game__spec-table td {
  color: var(--text-secondary);
  font-size: 14px;
}

.game__spec-table tr:last-child td {
  border-bottom: none;
}

.game__spec-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.game__spec-table i {
  color: var(--primary-color);
  margin-right: 8px;
}

/*=================================================================================
СТАТУСНЫЕ БЕЙДЖИ СЕКЦИИ "О ПРОЕКТЕ"
=================================================================================*/

.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-optimal {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-stable {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.status-updated {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.status-excellent {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

/*=================================================================================
СОБЫТИЯ - ОБНОВЛЕННЫЙ ДИЗАЙН
=================================================================================*/
.game__events-container {
  padding: 15px 0;
}

.events-legend {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.legend-item i {
  font-size: 14px;
}

.pvp-legend i { color: #ff4757; }
.pve-legend i { color: #3742fa; }
.special-legend i { color: #ffa502; }

.game__events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.game__event-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.game__event-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.event-status {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.event-status.active { 
  background: #2ed573; 
  animation: pulse 1.5s infinite;
}
.event-status.inactive { 
  background: #ff6b7a; 
  animation: none;
}

.event-time-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 15px;
  min-width: 60px;
}

.time-day {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.time-hour {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 2px;
  line-height: 1;
}

.event-timezone {
  position: absolute;
  top: 15px;
  right: 35px;
}

.timezone-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game__tech-container {
  padding: 15px 0;
}

.tech-legend {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.tech-legend .legend-item i {
  font-size: 14px;
}

.server-legend i { color: #4caf50; }
.hardware-legend i { color: #2196f3; }

.game__tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.game__tech-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.game__tech-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tech-status {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.tech-status.active { 
  background: #2ed573; 
  animation: pulse 1.5s infinite;
}

.tech-type-badge {
  position: absolute;
  top: 15px;
  right: 35px;
}

.tech-type-badge .type-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tech-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.tech-server .tech-icon { background: linear-gradient(135deg, #4caf50, #66bb6a); }
.tech-hardware .tech-icon { background: linear-gradient(135deg, #2196f3, #42a5f5); }

.tech-info {
  flex: 1;
  min-width: 0;
}

.tech-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.tech-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.tech-status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-status-badge.optimal {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.3);
}

.tech-status-badge.stable {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border-color: rgba(33, 150, 243, 0.3);
}

.tech-status-badge.updated {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border-color: rgba(156, 39, 176, 0.3);
}

.tech-status-badge.excellent {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border-color: rgba(255, 193, 7, 0.3);
}

.tech-status-badge.performance {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.3);
}

.tech-status-badge.fast {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  border-color: rgba(255, 152, 0, 0.3);
}

.tech-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 15px;
}

.tech-summary .summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.tech-summary .summary-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.tech-summary .summary-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.event-content {
  margin-top: 10px;
}

.event-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.event-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0 0 15px 0;
  opacity: 0.9;
}

.event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-type,
.event-participants,
.event-reward {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-reward {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.events-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-top: 15px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.summary-item i {
  color: var(--primary-color);
  font-size: 16px;
}

.summary-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.event-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-badge.pvp {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.event-badge.guild {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.event-badge.solo {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.event-badge.reward {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.event-badge.pve {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.event-badge.epic {
  background: rgba(103, 58, 183, 0.2);
  color: #673ab7;
  border: 1px solid rgba(103, 58, 183, 0.3);
}

.event-badge.mass {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.event-badge.fun {
  background: rgba(233, 30, 99, 0.2);
  color: #e91e63;
  border: 1px solid rgba(233, 30, 99, 0.3);
}

/*=================================================================================
СПИСКИ
=================================================================================*/
.game__lists-section {
  margin: 40px 0;
}

.game__lists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.game__list-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: all var(--transition-fast);
}

.game__list-block:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.game__list-block h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game__list-block h5 i {
  color: var(--primary-color);
}

/*=================================================================================
СПИСОК КЛАССОВ
=================================================================================*/
.game__class-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.game__class-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.game__class-list li:last-child {
  border-bottom: none;
}

.game__class-list li:hover {
  padding-left: 10px;
}

.game__class-list i {
  width: 20px;
  font-size: 16px;
  text-align: center;
}

.game__class-list .class-warrior i {
  color: #f44336;
}

.game__class-list .class-mage i {
  color: #9c27b0;
}

.game__class-list .class-archer i {
  color: #4caf50;
}

.game__class-list .class-support i {
  color: #ff9800;
}

.game__class-list span {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
}

.game__class-list small {
  color: var(--text-secondary);
  font-size: 12px;
}

/*=================================================================================
СПИСОК ЛОКАЦИЙ
=================================================================================*/
.game__location-list {
  margin: 0;
  padding: 0;
  counter-reset: location-counter;
}

.game__location-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  counter-increment: location-counter;
}

.game__location-list li::before {
  content: counter(location-counter);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-right: 15px;
  flex-shrink: 0;
}

.game__location-list li:last-child {
  border-bottom: none;
}

.location-name {
  color: var(--text-primary);
  font-weight: 500;
  flex: 1;
}

.location-level {
  color: var(--text-secondary);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
}

/*=================================================================================
ЧЕКЛИСТ
=================================================================================*/
.game__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game__checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 0;
  transition: all var(--transition-fast);
}

.game__checkbox-item:hover {
  padding-left: 10px;
}

.game__checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.game__checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
}

.game__checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.checkbox-text {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
}

.game__checkbox-item input[type="checkbox"]:checked + .checkmark + .checkbox-text {
  color: var(--text-secondary);
  text-decoration: line-through;
}

/*=================================================================================
МЕДИА ПРЕВЬЮ
=================================================================================*/
.game__media-preview {
  margin: 40px 0;
}

.game__media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.game__media-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.game__media-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game__media-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.game__media-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.game__media-item:hover .game__media-thumbnail img {
  transform: scale(1.05);
}

.game__media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.game__media-item:hover .game__media-overlay {
  opacity: 1;
}

.game__media-overlay i {
  font-size: 48px;
  color: white;
}

.game__media-overlay span {
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.game__video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.game__gallery-preview {
  position: relative;
  width: 100%;
  height: 100%;
}

.game__gallery-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.game__media-info {
  padding: 20px;
}

.game__media-info h6 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__media-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/*=================================================================================
ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ ПОЛЕЗНЫХ ССЫЛОК
=================================================================================*/
.game__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.game__server-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.game__server-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.game__server-link:hover::before {
  transform: scaleX(1);
}

.game__server-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.game__link-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.game__link-content {
  flex: 1;
}

.game__link-content strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.game__link-content small {
  color: var(--text-secondary);
  font-size: 13px;
}

.game__link-arrow {
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.game__server-link:hover .game__link-arrow {
  color: var(--primary-color);
  transform: translateX(3px);
}

/*=================================================================================
ДОСТИЖЕНИЯ
=================================================================================*/
.game__achievements-section {
  margin: 40px 0;
}

.game__achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.game__achievement {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.game__achievement:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 10;
}

.achievement-unlocked {
  border-color: #4caf50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.achievement-locked {
  opacity: 0.6;
}

.achievement-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.achievement-unlocked .achievement-icon {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: white;
}

.achievement-locked .achievement-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.achievement-content {
  flex: 1;
}

.achievement-content h6 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.achievement-content p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.achievement-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.achievement-reward {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

/*=================================================================================
КАЛЬКУЛЯТОР - ОБНОВЛЕННЫЕ СТИЛИ
=================================================================================*/
.game__calculator-section {
  margin: 40px 0;
}

.calculator-description {
  text-align: center;
  margin-bottom: 30px;
}

.calculator-description p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
}

.game__calculator-modern {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.class-selection h5,
.level-selection h5 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.class-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.class-option {
  cursor: pointer;
}

.class-option input[type="radio"] {
  display: none;
}

.class-option-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 15px;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.class-option input[type="radio"]:checked + .class-option-card {
  border-color: var(--primary-color);
  background: rgba(108, 92, 231, 0.1);
  transform: translateY(-3px);
}

.class-option-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.class-icon-calc {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  margin: 0 auto 10px;
}

.class-icon-calc.warrior {
  background: linear-gradient(135deg, #f44336, #e91e63);
}

.class-icon-calc.mage {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.class-icon-calc.archer {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.class-icon-calc.support {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.class-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.class-desc {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
}

.level-input-container {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.level-slider-container {
  flex: 1;
  position: relative;
}

.level-slider-modern {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 15px;
}

.level-slider-modern::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.level-slider-modern::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.level-markers {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 25px;
}

.marker {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

.level-display-modern {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-lg);
  padding: 15px 20px;
  text-align: center;
  min-width: 100px;
}

.level-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.level-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.quick-levels {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-level-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-right: 5px;
}

.quick-level-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-level-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.calc-results-modern {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 25px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-header h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.character-preview {
  display: flex;
  align-items: center;
  gap: 12px;
}

.character-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.character-info {
  display: flex;
  flex-direction: column;
}

.character-class {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.character-level {
  font-size: 13px;
  color: var(--text-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.stat-card h6 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.stat-icon.hp {
  background: linear-gradient(135deg, #f44336, #e91e63);
}

.stat-icon.mp {
  background: linear-gradient(135deg, #2196f3, #03a9f4);
}

.stat-icon.damage {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.stat-icon.defense {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.stat-icon.accuracy {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.stat-icon.evasion {
  background: linear-gradient(135deg, #00bcd4, #26c6da);
}

.stat-icon.speed {
  background: linear-gradient(135deg, #607d8b, #78909c);
}

.stat-icon.critical {
  background: linear-gradient(135deg, #ff5722, #ff7043);
}

.stat-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-name {
  font-size: 14px;
  color: var(--text-secondary);
}

.stat-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.experience-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 25px;
}

.experience-info h6 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exp-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.exp-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.exp-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.class-tips {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.class-tips h6 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tips-content p {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.tips-content ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.tips-content li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 5px;
  position: relative;
}

.tips-content li::before {
  content: '✓';
  position: absolute;
  left: -20px;
  color: var(--primary-color);
  font-weight: 600;
}

/*=================================================================================
FAQ
=================================================================================*/
.game__faq-section {
  margin: 40px 0;
}

.game__faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-arrow {
  color: var(--text-secondary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px 25px 25px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  margin: 10px 0 15px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin: 8px 0;
  line-height: 1.5;
  color: var(--text-secondary);
}

.faq-answer strong {
  color: var(--text-primary);
}

/*=================================================================================
FAQ - ОБНОВЛЕННЫЕ СТИЛИ
=================================================================================*/
.faq-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.step-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.step-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content h6 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.faq-tip {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: var(--radius-md);
  padding: 15px;
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-tip i {
  color: #ffc107;
  margin-top: 2px;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.rate-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 15px;
  text-align: center;
  transition: all var(--transition-fast);
}

.rate-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.rate-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 16px;
  color: white;
}

.rate-icon.exp {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.rate-icon.adena {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.rate-icon.drop {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.rate-icon.spoil {
  background: linear-gradient(135deg, #f44336, #e91e63);
}

.rate-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.rate-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.faq-note {
  background: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: var(--radius-md);
  padding: 15px;
  margin-top: 15px;
}

.security-overview {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.security-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.security-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2196f3, #03a9f4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.security-content h6 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.security-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.security-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.stat-block {
  text-align: center;
  padding: 15px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: var(--radius-md);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #4caf50;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 5px;
}

.social-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.social-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.social-icon.clan {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.social-icon.party {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.social-icon.alliance {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.social-content h6 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.social-content p {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.social-benefits {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.benefit {
  font-size: 13px;
  color: var(--text-secondary);
}

.donation-policy {
  margin-bottom: 20px;
}

.policy-section {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.policy-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.policy-section h6 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.policy-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.donation-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.donation-category h6 {
  margin: 0 0 10px 0;
  font-size: 15px;
  font-weight: 600;
}

.donation-category.allowed h6 {
  color: #4caf50;
}

.donation-category.forbidden h6 {
  color: #f44336;
}

.donation-category ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.donation-category li {
  position: relative;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 5px;
  padding-left: 0;
}

.endgame-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-category {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.content-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.content-icon.raids {
  background: linear-gradient(135deg, #f44336, #e91e63);
}

.content-icon.pvp {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.content-icon.olympiad {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.content-info h6 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.content-info p {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.content-rewards {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reward-item {
  font-size: 13px;
  color: var(--text-secondary);
}

/*=================================================================================
ЖИВАЯ СТАТИСТИКА
=================================================================================*/
.game__live-stats-section {
  margin: 40px 0;
}

.game__live-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.live-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}


.live-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.online-icon {
  background: linear-gradient(135deg, #2196f3, #03a9f4);
}

.economy-icon {
  background: linear-gradient(135deg, #ff9800, #ffc107);
}

.pvp-icon {
  background: linear-gradient(135deg, #f44336, #e91e63);
}

.guilds-icon {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.stat-change {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}

.stat-change.positive {
  color: #4caf50;
}

.stat-change.neutral {
  color: var(--text-secondary);
}

.stat-change.negative {
  color: #f44336;
}

/*=================================================================================
ПОПУЛЯРНЫЕ КЛАССЫ - УЛЬТРА КОМПАКТНЫЕ СТИЛИ
=================================================================================*/
.game__popular-classes-section {
  margin: 25px 0;
}

.game__classes-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.class-simple-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  min-height: 38px;
  position: relative;
  overflow: hidden;
}

.class-simple-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.class-simple-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  transform: translateY(-1px);
}

.class-simple-item:hover::before {
  opacity: 1;
}

.class-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.class-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.class-desc {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.1;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.class-percentage {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  min-width: 35px;
  text-align: center;
  margin-left: 5px;
}

.classes-total {
  text-align: center;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.classes-total strong {
  color: var(--primary-color);
  font-weight: 600;
}

/*=================================================================================
НОВОСТИ - ОБНОВЛЕННЫЕ СТИЛИ
=================================================================================*/
.game__news-section {
  margin: 40px 0;
}

.news-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.news-filter {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-filter:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
}

.news-filter.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  color: white;
}

.game__news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.news-card.featured {
  grid-column: 1 / -1;
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(108, 92, 231, 0.2);
}

.news-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.news-badge-large {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-badge-large.important {
  background: rgba(244, 67, 54, 0.9);
}

.news-card-header {
  padding: 15px 20px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-badge-small {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-badge-small.update {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.news-badge-small.event {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.news-date-simple {
  font-size: 13px;
  color: var(--text-secondary);
}

.news-card-content {
  padding: 15px 20px 20px;
}

.news-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-secondary);
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-card-content h5 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.news-card-content h6 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.news-card-content p {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.news-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.news-author-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: var(--radius-md);
}

.author-avatar {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.author-role {
  font-size: 12px;
  color: var(--text-secondary);
}

.news-highlights {
  margin-bottom: 15px;
}

.highlight-item {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.news-actions {
  display: flex;
  gap: 10px;
}

.action-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
}

.event-countdown {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(156, 39, 176, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(156, 39, 176, 0.2);
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #9c27b0;
}

.countdown-label {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.security-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.security-item {
  text-align: center;
  flex: 1;
  padding: 15px;
  background: rgba(33, 150, 243, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(33, 150, 243, 0.2);
}

.security-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #2196f3;
}

.security-label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 5px;
}

.news-load-more {
  text-align: center;
  margin-top: 30px;
}

.load-more-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.load-more-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/*=================================================================================
АДАПТИВНОСТЬ
=================================================================================*/
@media (max-width: 768px) {
  .game__highlight-blocks {
    grid-template-columns: 1fr;
  }
  
  .game__stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .game__tables-container {
    grid-template-columns: 1fr;
  }
  
  .game__lists-grid {
    grid-template-columns: 1fr;
  }
  
  .game__media-grid {
    grid-template-columns: 1fr;
  }
  
  .game__links-grid {
    grid-template-columns: 1fr;
  }
  
  .game__achievements-grid {
    grid-template-columns: 1fr;
  }
  
  .game__calculator-container {
    grid-template-columns: 1fr;
  }
  
  .game__live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-item {
    flex-direction: column;
    text-align: center;
  }
  
  .news-date {
    align-self: center;
  }
  
  .game__events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .events-legend {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .game__classes-simple {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .game__news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card.featured {
    grid-column: 1;
  }
  
  .class-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .level-input-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .rates-grid {
    grid-template-columns: 1fr;
  }
  
  .donation-items {
    grid-template-columns: 1fr;
  }
  
  .security-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .game__stats-row {
    grid-template-columns: 1fr;
  }
  
  .game__spec-table th,
  .game__spec-table td {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .game__features-grid {
    grid-template-columns: 1fr;
  }
  
  .game__feature-item {
    padding: 20px;
  }
  
  .game__feature-content h5 {
    font-size: 16px;
  }
  
  .game__feature-content p {
    font-size: 13px;
  }
  
  .game__classes-simple {
    grid-template-columns: 1fr;
  }
  
  .class-simple-item {
    padding: 10px 12px;
    min-height: 42px;
  }
  
  .class-name {
    font-size: 14px;
  }
  
  .class-desc {
    font-size: 11px;
  }
  
  .game__main-description {
    font-size: 16px;
  }
  
  .game__section-subtitle {
    font-size: 20px;
  }
  
  .game__live-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .game__events-grid {
    grid-template-columns: 1fr;
  }
  
  .events-legend {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }
  
  .legend-item {
    font-size: 12px;
  }
  
  .game__event-card {
    padding: 15px;
  }
  
  .event-timezone {
    right: 30px;
  }
  
  .timezone-label {
    font-size: 10px;
    padding: 2px 6px;
  }
  
  .events-summary {
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
  }
  
  .summary-item {
    font-size: 13px;
    justify-content: center;
  }
  
  
  .quick-levels {
    justify-content: center;
  }
  
  .news-filters {
    justify-content: center;
  }
  
  .classes-summary {
    grid-template-columns: 1fr;
  }
}


/*=================================================================================
СТРАНИЦА ИГРЫ - КНОПКА ВОЗВРАТА
=================================================================================*/

.game__back-section {
  text-align: center;
  margin-top: 40px;
}

.game__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.game__back-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/*=================================================================================
СТРАНИЦА ИГРЫ - АДАПТИВНЫЕ СТИЛИ
=================================================================================*/

@media (max-width: 1024px) {
  .game__hero-bottom {
    padding: 25px 20px 25px 20px;
  }
}

@media (max-width: 768px) {
  .game__hero-section {
    padding: 30px 20px;
    min-height: 350px;
  }
  
  .game__hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .game__hero-bottom {
    flex-direction: column;
    gap: 30px;
    padding: 20px 15px 20px 15px;
    align-items: stretch;
  }
  
  .game__hero-quick-stats {
    flex-direction: column;
  }
  
  .game__hero-quick-stat {
    min-width: auto;
  }
  
  .game__hero-actions {
    justify-content: center;
  }
  
  .game__hero-rating-container {
    top: 15px;
    right: 15px;
  }

  .game__desc-container {
    padding: 20px 15px;
  }
  
  .game__desc-text,
  .game__desc-main-description {
    font-size: 15px;
  }

  .game__analytics-card {
    padding: 25px;
  }
  
  .game__analytics-chart-container {
    height: 300px;
  }
  
  .game__analytics-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .game__analytics-stat-item {
    padding: 15px;
  }
  
  .game__analytics-stat-value {
    font-size: 24px;
  }

  .game__features-grid {
    grid-template-columns: 1fr;
  }

  .game__gameplay-content {
    grid-template-columns: 1fr;
  }

  .game__links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .game__hero-section {
    padding: 20px 15px;
  }
  
  .game__hero-title {
    font-size: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .game__hero-quick-stat {
    padding: 15px;
  }
  
  .game__hero-stat-value {
    font-size: 20px;
  }
  
  .game__hero-play-btn {
    padding: 15px 25px;
    font-size: 14px;
  }

  .game__analytics-stats {
    grid-template-columns: 1fr;
  }
  
  .game__analytics-chart-container {
    height: 250px;
  }
}

/*=================================================================================
ТАБЛИЦЫ ХАРАКТЕРИСТИК СЕРВЕРА
=================================================================================*/

.game__server-tables {
  margin: 40px 0;
}

.game__server-tables h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
  position: relative;
}

.game__server-tables h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--secondary-color);
}

.game__server-tables h3 i {
  color: var(--primary-color);
  font-size: 18px;
}

.game__table-container {
  margin-bottom: 30px;
}

.game__table-container h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid var(--primary-color);
}

.game__info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.game__info-table tr {
  border-bottom: 1px solid var(--border-color);
}

.game__info-table tr:last-child {
  border-bottom: none;
}

.game__info-table td {
  padding: 12px 15px;
  font-size: 14px;
  color: var(--text-secondary);
}

.game__info-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  width: 60%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.game__info-table td:first-child i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.game__info-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--secondary-color);
}

/*=================================================================================
СПОЙЛЕРЫ (COLLAPSIBLE CONTENT)
=================================================================================*/

.game__spoilers-section {
  margin: 40px 0;
}

.game__spoilers-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 25px;
  padding-bottom: 12px;
  position: relative;
}

.game__spoilers-section h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--secondary-color);
}

.game__spoilers-section h3 i {
  color: var(--primary-color);
  font-size: 18px;
}

.game__spoiler {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game__spoiler.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.1);
}

.game__spoiler-header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  user-select: none;
}

.game__spoiler-header:hover {
  background: rgba(108, 92, 231, 0.1);
}

.game__spoiler-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.game__spoiler-header h4 i {
  color: var(--primary-color);
  font-size: 14px;
}

.game__spoiler-icon {
  color: var(--text-light);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.game__spoiler.active .game__spoiler-icon {
  transform: rotate(180deg);
}

.game__spoiler-content {
  display: none;
  border-top: 1px solid var(--border-color);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 1000px;
  }
}

.game__spoiler-inner {
  padding: 20px;
}

.game__spoiler-inner p {
  margin-bottom: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.game__spoiler-inner p:last-child {
  margin-bottom: 0;
}

/*=================================================================================
ТАБЛИЦЫ ВНУТРИ СПОЙЛЕРОВ
=================================================================================*/

.game__balance-table,
.game__schedule-table,
.game__punishment-table-content {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.game__balance-table thead,
.game__schedule-table thead,
.game__punishment-table-content thead {
  background: rgba(108, 92, 231, 0.2);
}

.game__balance-table th,
.game__schedule-table th,
.game__punishment-table-content th {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.game__balance-table td,
.game__schedule-table td,
.game__punishment-table-content td {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game__balance-table td:first-child,
.game__schedule-table td:first-child,
.game__punishment-table-content td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.game__balance-table tr:last-child td,
.game__schedule-table tr:last-child td,
.game__punishment-table-content tr:last-child td {
  border-bottom: none;
}

/*=================================================================================
ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ В СПОЙЛЕРАХ
=================================================================================*/

.game__events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.game__event-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 15px;
}

.game__event-card h5 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.game__event-card h5 i {
  color: var(--primary-color);
  font-size: 12px;
}

.game__event-card ul {
  margin: 0;
  padding-left: 15px;
  list-style: none;
}

.game__event-card li {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 5px;
  position: relative;
}

.game__event-card li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: -15px;
}

.game__economy-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.game__table-half h5 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__drop-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.game__drop-table td {
  padding: 8px 10px;
  font-size: 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game__drop-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.game__drop-table td:last-child {
  text-align: right;
  color: var(--secondary-color);
  font-weight: 600;
}

.game__drop-table tr:last-child td {
  border-bottom: none;
}

.game__rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.game__rules-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 15px;
}

.game__rules-section h5 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__rules-section ul {
  margin: 0;
  padding-left: 15px;
  list-style: none;
}

.game__rules-section li {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 5px;
  position: relative;
}

.game__rules-section li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: -15px;
}

.game__punishment-table {
  margin: 20px 0;
}

.game__punishment-table h5 {
  margin: 0 0 15px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/*=================================================================================
АДАПТИВНЫЕ СТИЛИ ДЛЯ ТАБЛИЦ И СПОЙЛЕРОВ
=================================================================================*/

@media (max-width: 768px) {
  .game__info-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .game__info-table td:first-child {
    width: 50%;
  }
  
  .game__events-grid,
  .game__economy-tables,
  .game__rules-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .game__spoiler-header {
    padding: 12px 15px;
  }
  
  .game__spoiler-inner {
    padding: 15px;
  }
  
  .game__balance-table,
  .game__schedule-table,
  .game__punishment-table-content {
    font-size: 12px;
  }
  
  .game__balance-table th,
  .game__schedule-table th,
  .game__punishment-table-content th {
    padding: 8px 10px;
  }
  
  .game__balance-table td,
  .game__schedule-table td,
  .game__punishment-table-content td {
    padding: 6px 8px;
  }
}

/*=================================================================================
АНАЛИТИКА И СТАТИСТИКА
=================================================================================*/

.game__analytics-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  margin: 40px 0;
}

.game__analytics-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.game__analytics-container {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.game__analytics-content {
  position: relative;
}

.game__analytics-section {
  margin: 40px 0;
}

.game__analytics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.game__stats-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.game__stat-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.game__stat-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.2);
}

.game__widget-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.game__widget-icon.economy {
  background: linear-gradient(135deg, #ffd32a, #ff8f00);
}

.game__widget-icon.pvp {
  background: linear-gradient(135deg, #ff4757, #ff3742);
}

.game__widget-icon.guilds {
  background: linear-gradient(135deg, #5f27cd, #341f97);
}

.game__widget-icon i {
  color: white;
  font-size: 24px;
}

.game__widget-content {
  flex: 1;
}

.game__widget-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
  line-height: 1;
}

.game__widget-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.game__widget-trend {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.game__widget-trend.up {
  color: #00d2d3;
}

.game__widget-trend.down {
  color: #ff4757;
}

.game__widget-trend.stable {
  color: #8b93a6;
}

.game__chart-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 25px;
}

.game__chart-container h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__chart-wrapper {
  height: 300px;
  position: relative;
}

.game__progress-section {
  margin: 40px 0;
}

.game__progress-section h3 {
  margin: 0 0 25px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.game__progress-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}

.game__progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.game__progress-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.game__progress-label i {
  color: var(--primary-color);
  font-size: 12px;
}

.game__progress-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
}

.game__progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.game__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  transition: width 1.5s ease-in-out;
  width: 0%;
}

/*=================================================================================
МЕДИА ГАЛЕРЕЯ
=================================================================================*/

.game__media-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  margin: 40px 0;
}

.game__media-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.game__media-container {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.game__media-section-content {
  position: relative;
}

.game__media-section {
  margin: 40px 0;
}

.game__media-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.game__media-tab {
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.game__media-tab:hover {
  color: var(--text-primary);
}

.game__media-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.game__media-tab i {
  font-size: 12px;
}

.game__media-content {
  position: relative;
}

.game__media-tab-content {
  display: none;
}

.game__media-tab-content.active {
  display: block;
}

.game__media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.game__media-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game__media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game__media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.game__media-item:hover img {
  transform: scale(1.1);
}

.game__media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.game__media-item:hover .game__media-overlay {
  opacity: 1;
}

.game__media-overlay i {
  color: white;
  font-size: 24px;
}

.game__video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.game__video-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.game__video-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.game__video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.game__video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(108, 92, 231, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game__video-play:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.game__video-play i {
  color: white;
  font-size: 20px;
  margin-left: 2px;
}

.game__video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.game__video-info {
  padding: 15px;
}

.game__video-info h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__video-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.game__art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.game__art-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game__art-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game__art-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.game__art-item:hover img {
  transform: scale(1.05);
}

.game__art-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px 15px 15px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.game__art-item:hover .game__art-overlay {
  transform: translateY(0);
}

.game__art-overlay h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.game__art-overlay p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/*=================================================================================
ОТЗЫВЫ ИГРОКОВ
=================================================================================*/

.game__reviews-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  margin: 40px 0;
}

.game__reviews-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.game__reviews-container {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.game__reviews-section-content {
  position: relative;
}

.game__reviews-section {
  margin: 40px 0;
}

.game__reviews-stats {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 25px;
}

.game__reviews-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: center;
}

.game__reviews-rating {
  text-align: center;
}

.game__reviews-score {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.game__reviews-stars {
  margin-bottom: 8px;
}

.game__reviews-stars i {
  color: #ffd32a;
  font-size: 16px;
  margin: 0 1px;
}

.game__reviews-count {
  font-size: 13px;
  color: var(--text-secondary);
}

.game__reviews-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game__rating-row {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 15px;
  align-items: center;
}

.rating-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.rating-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
  transition: width 1s ease;
}

.rating-count {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: right;
}

.game__write-review {
  display: flex;
  align-items: center;
}

.game__review-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.game__review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.game__reviews-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 30px;
}

.game__review-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game__review-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(108, 92, 231, 0.1);
}

.game__review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.game__reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.game__reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.game__reviewer-name {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__reviewer-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}

.game__reviewer-level {
  color: var(--primary-color);
  font-weight: 600;
}

.game__review-rating i {
  color: #ffd32a;
  font-size: 14px;
  margin: 0 1px;
}

.game__review-content {
  margin-bottom: 15px;
}

.game__review-content p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.game__review-actions {
  display: flex;
  gap: 10px;
}

.game__review-action {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.game__review-action:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 6px 16px rgba(108, 92, 231, 0.18);
}

.game__review-action.liked {
  background: rgba(108, 92, 231, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.game__reviews-load-more {
  text-align: center;
}

.game__load-more-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 12px 25px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.game__load-more-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/*=================================================================================
TIMELINE ИСТОРИИ СЕРВЕРА
=================================================================================*/

.game__timeline-section {
  margin: 40px 0;
}

.game__timeline {
  position: relative;
  padding: 20px 0;
}

.game__timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.game__timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease forwards;
}

.game__timeline-item:nth-child(even) {
  transform: translateX(30px);
  animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.game__timeline-item.current {
  animation-delay: 0.5s;
}

.game__timeline-date {
  text-align: center;
  flex-shrink: 0;
  width: 60px;
}

.game__timeline-day {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.game__timeline-month {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game__timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  flex: 1;
  transition: all 0.3s ease;
}

.game__timeline-content:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(108, 92, 231, 0.1);
}

.game__timeline-content::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent var(--border-color) transparent transparent;
}

.game__timeline-icon {
  position: absolute;
  left: -32px;
  top: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

.game__timeline-icon.launch {
  background: linear-gradient(135deg, #00d2d3, #01a3a4);
}

.game__timeline-icon.update {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.game__timeline-icon.milestone {
  background: linear-gradient(135deg, #ffd32a, #ff8f00);
}

.game__timeline-icon.event {
  background: linear-gradient(135deg, #ff4757, #ff3742);
}

.game__timeline-icon.current {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(108, 92, 231, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
  }
}

.game__timeline-content h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__timeline-content p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/*=================================================================================
FAQ СЕКЦИЯ
=================================================================================*/

.game__faq-section {
  margin: 40px 0;
}

.game__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.game__faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.game__faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(108, 92, 231, 0.1);
}

.game__faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.game__faq-question:hover {
  background: rgba(108, 92, 231, 0.05);
}

.game__faq-question h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.game__faq-icon {
  color: var(--text-light);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.game__faq-item.active .game__faq-icon {
  transform: rotate(180deg);
}

.game__faq-answer {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid var(--border-color);
  animation: slideDown 0.3s ease-out;
}

.game__faq-answer p {
  margin: 15px 0 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.game__faq-answer ol,
.game__faq-answer ul {
  margin: 10px 0;
  padding-left: 20px;
}

.game__faq-answer li {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 5px;
  line-height: 1.5;
}

/*=================================================================================
LIGHTBOX
=================================================================================*/

.game__lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.game__lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.game__lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.game__lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
}

/*=================================================================================
АНИМАЦИИ И АДАПТИВНЫЕ СТИЛИ
=================================================================================*/

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 1024px) {
  .game__analytics-grid {
    gap: 20px;
  }
  
  .game__stats-widgets {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
  
  .game__progress-grid {
    grid-template-columns: 1fr;
  }
  
  .game__reviews-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .game__reviews-overview {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .game__media-tabs {
    gap: 5px;
  }
  
  .game__media-tab {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .game__media-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .game__video-grid {
    grid-template-columns: 1fr;
  }
  
  .game__art-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  
  .game__timeline::before {
    left: 30px;
  }
  
  .game__timeline-item {
    gap: 15px;
  }
  
  .game__timeline-date {
    width: 40px;
  }
  
  .game__timeline-day {
    font-size: 18px;
  }
  
  .game__timeline-icon {
    left: -22px;
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  
  .game__timeline-content::before {
    left: -5px;
    border-width: 5px 5px 5px 0;
  }
  
  .game__reviews-breakdown {
    gap: 6px;
  }
  
  .game__rating-row {
    grid-template-columns: 70px 1fr 30px;
    gap: 10px;
  }
  
  .game__stat-widget {
    padding: 15px;
  }
  
  .game__widget-number {
    font-size: 24px;
  }
}

/*=================================================================================
ПОХОЖИЕ СЕРВЕРЫ КОНТЕЙНЕР
=================================================================================*/

.game__similar-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  margin: 40px 0;
}

.game__similar-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.game__similar-container {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.game__similar-section-content {
  position: relative;
}

/*=================================================================================
СЕТКА ПОХОЖИХ СЕРВЕРОВ
=================================================================================*/
.game__similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.game__similar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.game__similar-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.15);
}

.game__similar-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.game__similar-description {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.game__similar-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.game__similar-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-secondary);
}

.game__similar-stat i {
  color: var(--primary-color);
}

.game__similar-link {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.game__similar-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/*=================================================================================
ФИЛЬТР ОТЗЫВОВ
=================================================================================*/

.game__reviews-filter {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 25px;
}

.game__filter-header h3 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.game__filter-header h3 i {
  color: var(--primary-color);
  font-size: 14px;
}

.game__filter-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  align-items: end;
}

.game__filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game__filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.game__filter-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 8px 12px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.game__filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.2);
}

.game__filter-apply {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  height: fit-content;
}

.game__filter-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/*=================================================================================
ПАГИНАЦИЯ ОТЗЫВОВ
=================================================================================*/

.game__reviews-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.game__pagination-info {
  font-size: 14px;
  color: var(--text-secondary);
}

.game__pagination-info strong {
  color: var(--text-primary);
  font-weight: 600;
}

.game__pagination-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.game__pagination-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.game__pagination-btn:hover:not(:disabled) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.game__pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.game__pagination-pages {
  display: flex;
  align-items: center;
  gap: 5px;
}

.game__pagination-page {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.game__pagination-page:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.game__pagination-page.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  color: white;
}

.game__pagination-dots {
  color: var(--text-light);
  font-size: 13px;
  padding: 0 5px;
}

/*=================================================================================
ОБНОВЛЕННЫЕ КНОПКИ ДЕЙСТВИЙ В ОТЗЫВАХ
=================================================================================*/

.game__review-action.helpful {
  border-color: #00d2d3;
  color: var(--text-secondary);
}

.game__review-action.helpful:hover {
  background: rgba(0, 210, 211, 0.1);
  border-color: #00d2d3;
  color: #00d2d3;
}

.game__review-action.helpful.voted {
  background: rgba(0, 210, 211, 0.15);
  border-color: #00d2d3;
  color: #00d2d3;
}

.game__review-action.not-helpful {
  border-color: #ff4757;
  color: var(--text-secondary);
}

.game__review-action.not-helpful:hover {
  background: rgba(255, 71, 87, 0.1);
  border-color: #ff4757;
  color: #ff4757;
}

.game__review-action.not-helpful.voted {
  background: rgba(255, 71, 87, 0.15);
  border-color: #ff4757;
  color: #ff4757;
}

.game__review-action.reply:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/*=================================================================================
АДАПТИВНЫЕ СТИЛИ ДЛЯ НОВЫХ ЭЛЕМЕНТОВ
=================================================================================*/

@media (max-width: 768px) {
  .game__filter-controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .game__reviews-pagination {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .game__pagination-controls {
    gap: 10px;
  }
  
  .game__pagination-pages {
    gap: 3px;
  }
  
  .game__pagination-page {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  
  .game__pagination-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .game__review-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .game__review-action {
    justify-content: center;
  }
  
/*=================================================================================
ПОХОЖИЕ СЕРВЕРЫ
=================================================================================*/
  .game__similar-grid {
    grid-template-columns: 1fr;
  }
}
