/* src/styles/pages/guides.css */
/* === СТРАНИЦА ГАЙДОВ === */
.guide-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* === ШАПКА === */
.guide-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
}

.guide-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.guide-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.btn-back {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* === КОНТЕНТ === */
.guide-content {
  line-height: 1.7;
}

.guide-section {
  margin-bottom: 40px;
}

.guide-section h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ecf0f1;
}

.guide-section p {
  color: #34495e;
  margin-bottom: 16px;
}

/* === ШАГИ === */
.guide-steps {
  counter-reset: step-counter;
  margin: 20px 0;
}

.guide-steps li {
  counter-increment: step-counter;
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
}

.guide-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #3498db;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* === СПИСКИ ПРИЛОЖЕНИЙ === */
.app-list {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.app-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.app-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3498db;
}

/* === СПИСОК ПРЕИМУЩЕСТВ === */
.benefits-list {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
}

.benefits-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

/* === ДЕМО ФАЙЛЫ === */
.demo-files {
  background: white;
  border: 2px dashed #3498db;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  margin: 24px 0;
}

.guide-download {
  display: inline-block;
  background: #27ae60;
  color: white;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.guide-download:hover {
  background: #219653;
  transform: translateY(-2px);
}

.file-note {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-top: 12px;
}

/* === НАВИГАЦИЯ МЕЖДУ ГАЙДАМИ === */
.guide-navigation {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin-top: 40px;
  border-left: 4px solid #3498db;
}

.guide-navigation h3 {
  margin: 0 0 16px 0;
  color: #2c3e50;
}

.guide-links {
  display: grid;
  gap: 12px;
}

.guide-link {
  display: block;
  padding: 12px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  color: #3498db;
  font-weight: 500;
  transition: all 0.2s;
}

.guide-link:hover {
  background: #f0f9ff;
  border-color: #3498db;
  transform: translateX(4px);
}

/* === ВИДЕО ПЛЕЙСХОЛДЕР === */
.video-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin: 32px 0;
}

.video-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.video-note {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.video-notify {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.video-notify a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}