.breadcrumbs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
	margin-left: 5px;
}

.breadcrumbs a {
    color: var(--medium-text);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.breadcrumbs a:hover {
    color: var(--primary-blue);
}

.breadcrumbs span {
    color: var(--light-text);
}

.breadcrumbs .current {
    color: var(--primary-blue);
    font-weight: 500;
    white-space: normal;
}

/* Детали новости */
.news-detail {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.news-header {
    padding: 30px;
    border-bottom: 1px solid var(--border);
}

.news-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    color: var(--dark-text);
}

.news-info {
    display: flex;
    gap: 20px;
    color: var(--light-text);
    font-size: 14px;
}

.news-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-type-info {
    background: rgba(44, 111, 187, 0.1);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.news-content {
    padding: 30px;
}

.news-content p {
    margin-bottom: 20px;
    color: var(--medium-text);
    line-height: 1.8;
}

.news-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 10px;
}

.news-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

.news-content ul, .news-content ol {
    margin: 0 0 20px 20px;
    color: var(--medium-text);
}

.news-content li {
    margin-bottom: 10px;
}

/* Галерея медиа */
.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.media-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.media-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #000;
}

.media-caption {
    padding: 10px;
    background: var(--card-bg);
    font-size: 14px;
    color: var(--medium-text);
}

.media-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Секция комментариев */
.comments-section {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.comments-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    margin: 0 0 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-text);
}

.comments-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

.comment-form {
    background: var(--background);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.comment-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 15px;
    border-radius: 5px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--dark-text);
    outline: none;
    resize: vertical;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.comment-textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.comment-submit {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.comment-submit:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.comments-list {
    margin-top: 30px;
}


/* Адаптивные стили только для страницы новости */
@media (max-width: 768px) {
    .news-title {
        font-size: 26px;
    }
    
    .media-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .breadcrumbs-container {
        padding: 0 20px;
    }
    
    .breadcrumbs {
        padding: 10px 0;
        gap: 5px;
    }
    
    .breadcrumbs span {
        margin: 0 3px;
    }
    
    .breadcrumbs a, 
    .breadcrumbs span, 
    .breadcrumbs .current {
        font-size: 13px;
    }
    
    .news-title {
        font-size: 22px;
    }
    
    .news-info {
        /* flex-direction: column; */
        gap: 10px;
        align-items: flex-start;
    }
    
    .news-meta .news-reactions {
        margin-top: 5px;
    }
    
    .news-header, .news-content {
        padding: 20px;
    }
    
    .comments-section {
        padding: 20px;
    }
}

.section-title-contend{
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    margin: 0 0 30px;
    position: relative;
    padding-bottom: 15px;
    color: var(--dark-text);
}

.section-title-contend::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

.form-group-contend textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 15px;
    border-radius: 5px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--dark-text);
    outline: none;
    resize: vertical;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
	margin-top: 10px;
}

.submit-btn-contend {
	padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease; 
    border: none;
    font-size: 16px;
    background: #2c6fbb;
    color: white;
}

.submit-btn-contend:hover {
    background: #3498db;
}


/* ========================================================= СПОЙЛЕР */
.ksa-spoiler {
  margin: 18px auto;
  font-family: Inter, system-ui, sans-serif;
  color: #222222;
  padding: 0 12px;
}

/* card */
.ksa-details {
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.ksa-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px 16px;
  gap: 12px;
  user-select: none;
  transition: background .15s ease;
  font-weight: 600;
}

.ksa-summary:hover {
  background: #f2f3f5;
}

/* arrow */
.ksa-arrow {
  transition: transform .25s ease;
  color: #555;
  display: flex;
  align-items: center;
}
.ksa-details[open] .ksa-arrow {
  transform: rotate(180deg);
}

/* content */
.ksa-content {
  padding: 12px 16px 18px;
  line-height: 1.5;
  font-size: 0.97rem;
  color: #111;
  border-top: 1px solid #eee;
  overflow: hidden;
  transition: max-height .32s ease;
}

@media (prefers-reduced-motion: reduce) {
  .ksa-summary, .ksa-content, .ksa-arrow { transition: none !important; }
}

/* ========================================================= СПОЙЛЕР */


/* ========================================================= блок скачать */

.download-game-card {
  max-width: 700px;
  background: #2c6fbb;
  border-radius: 16px;
  padding: 30px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: 'Arial', sans-serif;
}

.game-header {
  margin-bottom: 20px;
}

.game-title {
  font-size: 2.2em;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
}

.version-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.version-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.file-size {
  font-size: 0.85em;
  opacity: 0.8;
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
  margin-bottom: 20px;
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 114, 255, 0.6);
  background: linear-gradient(45deg, #00c6ff, #0080ff);
}

.download-button:active {
  transform: translateY(-1px);
}

.additional-info {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9em;
}

.info-label {
  opacity: 0.7;
}

.info-value {
  font-weight: 600;
}

/* Адаптивность */
@media (max-width: 600px) {
  .download-game-card {
    margin: 0 15px;
    padding: 20px;
  }
  
  .game-title {
    font-size: 1.8em;
  }
  
  .info-item {
    flex-direction: column;
    gap: 2px;
  }
}

/* ========================================================= блок скачать */