:root {
  color-scheme: dark;
  --bg-primary: #0a0c10;
  --bg-secondary: #151a21;
  --bg-tertiary: #1e242e;
  --border: #2a313d;
  --accent: #00ffc4;
  --accent-hover: #00d4a3;
  --text-primary: #e6edf3;
  --text-secondary: #7d8590;
  --positive: #00ff88;
  --negative: #ff6b6b;
  --warning: #ffa726;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'JetBrains Mono', monospace;
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.4;
 
  font-size: 16px;
}

/* Хедер */
header {
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
  font-weight: 700;
  font-size: 20px;
}

.logo-accent {
  color: var(--accent);
}

.terminal-badge {
  background: var(--accent);
  color: var(--bg-primary);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 12px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent), #00b8ff);
  color: var(--bg-primary);
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 255, 196, 0.3);
}

/* Hero секция */
.hero {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 20px;
  text-align: center;
}

.hero-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Inter', sans-serif;
}

.hero-subtitle {
  font-size: 1.3em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
}

/* Блоки информации */
.info-section {
  margin: 60px 0;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

/* Сводка статистики */
.summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.summary .item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
}

.summary .item:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.summary .item.active {
  background: rgba(0, 255, 196, 0.05);
  border-color: var(--accent);
}

.summary .label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.summary .value {
  font-size: 18px;
  font-weight: 600;
}

.pos { color: var(--positive); }
.neg { color: var(--negative); }
.neutral { color: var(--text-primary); }

/* Таблица */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  font-family: 'JetBrains Mono', monospace;
}

thead th {
  text-align: left;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 12px;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  position: sticky;
  top: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: rgba(0, 255, 196, 0.02);
  cursor: pointer;
}

.bot {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.feature-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto;
  font-size: 20px;
}

.feature-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 18px;
  flex-grow: 1;
}

.gif-placeholder {
  width: 100%;
  height: 150px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: auto;
}

.gif-placeholder::before {
  content: 'GIF';
  background: var(--accent);
  color: var(--bg-primary);
  padding: 6px 12px;
  border-radius: 3px;
  font-weight: 600;
}

/* CTA Block */
.cta-block {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 50px 30px;
}

.cta-description {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 18px;
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background: var(--bg-tertiary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
	color: var(--text-secondary); /* ← ДОБАВЬ ЭТУ СТРОЧКУ */
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bg-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.faq-answer.show {
  padding: 20px;
  max-height: 300px;
}

/* Подвал */
footer {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  padding: 50px 0;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-section h4 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}




.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.2s ease;
  display: block;
}
.footer-section p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

/* Убери все старые стили для этих элементов */

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin: 40px auto 0;
  padding-top: 50px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Сетка статистики */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
}

.stats-main {
  width: 100%;
}

.stats-chart {
  width: 100%;
}

/* Карточка графика */
.chart-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  padding: 10px 25px 25px; 
  position: relative;
  width: 100%;
}


.chart-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Заголовок графика */
.chartHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.btn {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 15px 30px;
  font-size: 16px;
  font-family: 'JetBrains Mono', monospace;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.btn.active {
  background: rgba(0, 255, 196, 0.1);
  color: var(--accent);
  border-color: var(--accent);
}

/* Анимированные цифры */
.ticker-value {
  font-variant-numeric: tabular-nums;
  transition: all 0.3s ease;
}

.ticker-value.updating {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 255, 196, 0.5);
}

/* Статус индикаторы */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot.ok { background: var(--positive); }
.dot.stalled { background: var(--warning); }
.dot.unknown { background: var(--text-secondary); }

/* Терминальные блики */
.terminal-glare {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    125deg,
    transparent 0%,
    rgba(0, 255, 196, 0.02) 40%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 9999;
}

/* Адаптивность */
@media (max-width: 768px) {
  .summary { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  header { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 12px;
  }
  
  .features-grid { 
    grid-template-columns: 1fr; 
  }
  
  .hero-title { 
    font-size: 2.2em; 
  }
  
  .footer-content { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  

  .chartHeader {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .summary { 
    grid-template-columns: 1fr; 
  }
}
/* Стили для страницы покупки */
.bots-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.bot-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.bot-card.featured {
  border-color: var(--accent);
  transform: scale(1.02);
}

.bot-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.bot-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-primary);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bot-name {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.bot-price {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 25px;
  font-family: 'JetBrains Mono', monospace;
}

.bot-stats {
  margin-bottom: 25px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

.bot-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.bot-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.cta-button.large {
  padding: 15px 30px;
  font-size: 16px;
  width: 100%;
}

/* Шаги покупки */
.purchase-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.4em;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

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

/* Гарантии */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.guarantee-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}

.guarantee-card h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.2em;
  font-family: 'Inter', sans-serif;
}

.guarantee-card p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 18px;
}

/* Адаптивность для страницы покупки */
@media (max-width: 768px) {
  .bots-comparison {
    grid-template-columns: 1fr;
  }
  
  .bot-card.featured {
    transform: none;
  }
  
  .purchase-steps {
    grid-template-columns: 1fr;
  }
  
  .guarantees-grid {
    grid-template-columns: 1fr;
  }
}
/* Статистика в hero секции бота */
.bot-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.hero-stat:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero-stat-value {
  font-size: 2em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}

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

/* Адаптивность для статистики */
@media (max-width: 768px) {
  .bot-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .bot-hero-stats {
    grid-template-columns: 1fr;
  }
}


/* Стили только для специфичных элементов страницы бота */
.bot-badge {
  top: -16px; /* ← ПОДНИМАЕТСЯ ЭТИМ ПАРАМЕТРОМ */
  background: var(--accent);
  color: var(--bg-primary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 20px;
}

/* Статистика в hero секции бота */
.bot-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.hero-stat {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.hero-stat:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero-stat-value {
  font-size: 2em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}

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

.bot-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Видео и галерея */
.video-placeholder-large,
.screenshot-placeholder-large {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.video-features {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}


.screenshot-label {
  text-align: center;
  width: 100%;
  margin-top: 15px;
  color: var(--text-secondary);
  font-size: 16px;
}

/* Галерея */
.gallery {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gallery-track {
  flex: 1;
  overflow: hidden;
}

.gallery-slide {
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-arrow {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-dots .dot {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.gallery-dots .dot.active {
  opacity: 1;
}

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

/* В разделе детальной статистики заменить gap: 40px на */
.detailed-performance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* Было 40px */
  margin-bottom: 40px;
}

.performance-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.performance-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 25px 25px; /* верх: 15px, право/лево: 25px, низ: 25px */
}

.performance-card h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.2em;
  font-family: 'Inter', sans-serif;
}

.performance-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perf-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.perf-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.perf-value {
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.perf-value.positive {
  color: var(--positive);
}

.perf-value.negative {
  color: var(--negative);
}

/* График доходности */
.chart-placeholder {
  padding: 10px 25px 25px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.chart-placeholder h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.chart-label {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
}

.chart-bars {
  display: flex;
  align-items: end;
  justify-content: space-around;
  height: 200px;
  gap: 10px;
  margin-top: auto;
}

.chart-bar {
  background: linear-gradient(to top, var(--accent), #00b8ff);
  border-radius: 4px 4px 0 0;
  min-width: 40px;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 5px;
}

.chart-bar span {
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 600;
  transform: translateY(-25px);
}

/* Технические характеристики */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.specs-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px 25px 25px; /* верх 15px, низ 25px */
}

.specs-card h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.2em;
  font-family: 'Inter', sans-serif;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-list li {
  padding: 8px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

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

/* Адаптивность для страницы бота */
@media (max-width: 768px) {
  .bot-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .bot-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .detailed-performance {
    grid-template-columns: 1fr;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .bot-hero-stats {
    grid-template-columns: 1fr;
  }
  
  .video-features {
    flex-direction: column;
    gap: 10px;
  }
}
.bot-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-features span {
  font-size: 16px;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}
.gallery-container {
  max-width: 1200px; /* Еще шире */
  margin: 0 auto;
}

.screenshot-placeholder-large {
  min-height: 600px; /* Еще выше */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100%;
  height: 600px; /* Фиксированная высота */
  object-fit: cover; /* Обрезает чтобы заполнить */
  border-radius: 8px;
}

.gallery-dots {
  display: flex !important; /* Чтобы точки были видны */
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-dots .dot {
  width: 12px;
  height: 12px;
  background: var(--text-secondary);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.gallery-dots .dot.active {
  opacity: 1;
  background: var(--accent);
}








