.app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  font-family: Arial, sans-serif;
}

.section {
  margin-bottom: 40px;
}

.section h1, .section h2 {
  color: #2ecc71;
  margin-bottom: 20px;
}

.screenshots {
  position: relative;
}

.screenshot-container {
  position: relative;
  overflow: hidden;
}

.screenshot {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s;
}

.screenshot-clickable {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  cursor: pointer;
}

.screenshot-clickable.left {
  left: 0;
}

.screenshot-clickable.right {
  right: 0;
}

.instruction-screenshot {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.donations {
 display: flex;
 flex-direction: column;
 align-items: center;
}

.donations form {
 width: 100%;
 max-width: 400px;
}

.donations input {
 padding: 10px;
 border: 1px solid #2ecc71;
 border-radius: 5px;
 margin-bottom: 10px;
 width: 100%;
 font-size: 16px;
}

.donations button {
 padding: 10px 20px;
 background: #2ecc71;
 color: white;
 border: none;
 border-radius: 5px;
 font-size: 16px;
 cursor: pointer;
}

.donations button:hover {
 background: #27ae60;
}

/* Стили для списков и текста */
ul, ol {
 list-style-position: inside;
 padding-left: 0;
 margin-bottom: 20px;
}

li {
 margin-bottom: 5px;
}

p {
 color: #f5f5f5;
 line-height: 1.6;
 margin-bottom: 15px;
}

/* Общие стили для текста */
body {
 background: #36393f;
 color: #f5f5f5;
}

a {
 color: #2ecc71;
 text-decoration: none;
 transition: color 0.3s;
}

a:hover {
 color: #27ae60;
}

/* Стили для медиа-запросов (только для десктопа) */
@media (min-width: 1024px) {
.app {
 padding: 60px;
 }
}
