/* ===== NEWS PAGE SPECIFIC STYLES ===== */
/* Специфичные стили только для страницы новостей */

.news-page {
  min-height: 100vh;
  padding: 0;
  position: relative;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
  position: relative;
}

/* Header Section */
.news-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.news-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  position: relative;
}

.news-title-highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.1;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 30px rgba(200, 254, 0, 0.3);
}

.news-title-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-top: 8px;
  transition: opacity 0.3s ease;
}

/* Tab Navigation */
.news-tab-navigation {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 4px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  min-width: 140px;
  justify-content: center;
  border-bottom: 2px solid transparent;
}

.news-tab-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.news-tab-button.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-bottom: 2px solid #FFD700;
}

.news-tab-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.news-tab-button:hover .news-tab-icon,
.news-tab-button.active .news-tab-icon {
  opacity: 1;
}

.news-tab-text {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Tab Content */
.news-tab-content {
  display: none;
}

.news-tab-content.active {
  display: block;
  animation: news-fadeInUp 0.3s ease-out;
}

@keyframes news-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Titles */
.news-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

/* Spacing between news sections */
.news-latest-news-section {
  margin-bottom: 48px;
}

.news-all-news-section {
  margin-top: 48px;
}

.news-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  border-radius: 2px;
}

/* Instructions Section */
.news-instructions-section {
  margin-bottom: 48px;
}

/* Development Notice */
.news-instructions-development-notice {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.news-development-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #000;
}

.news-development-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
  background: linear-gradient(135deg, #FFD700, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-development-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.news-development-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.news-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-feature-icon {
  font-size: 1.2rem;
}

.news-feature-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.news-instruction-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.news-instruction-card:hover {
  transform: none;
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.news-instruction-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #000;
}

.news-instruction-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #fff;
}

.news-instruction-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.news-instruction-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.news-instruction-link:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

/* Load More Section */
.news-load-more-section {
  text-align: center;
  margin-top: 48px;
  padding: 32px 0;
}

.news-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.news-load-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.news-load-more-btn:hover::before {
  left: 100%;
}

.news-load-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  /* Убрана анимация перемещения */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.news-load-more-text {
  font-weight: 500;
}

.news-load-more-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.news-load-more-btn:hover .news-load-more-icon {
  /* Убрана анимация перемещения */
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-container {
    padding: 20px 15px;
  }
  
  .news-header {
    margin-bottom: 32px;
  }
  
  .news-title {
    font-size: 2rem;
  }
  
  .news-title-highlight {
    font-size: 2.5rem;
  }
  
  .news-title-subtitle {
    font-size: 1rem;
  }
  
  .news-tab-navigation {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
  }
  
  .news-tab-button {
    min-width: auto;
    padding: 12px 20px;
  }
  
  .news-section-title {
    font-size: 1.5rem;
  }
  
  .news-instructions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .news-instruction-card {
    padding: 20px;
  }
  
  .news-load-more-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  
  .news-instructions-development-notice {
    padding: 40px 20px;
  }
  
  .news-development-title {
    font-size: 1.5rem;
  }
  
  .news-development-description {
    font-size: 1rem;
  }
  
  .news-development-features {
    gap: 16px;
  }
  
  .news-feature-item {
    padding: 10px 16px;
  }
}
