/* --- ОСНОВНЫЕ СТИЛИ --- */

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
  color: #000000;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 120px 120px;
  text-align: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 25px 0;
}

.subtitle {
  font-size: 24px;
  line-height: 1.37;
  margin: 0 0 60px 0;
}

.image-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px; 
}

.image-wrapper img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

/* --- СТИЛИ ДЛЯ ОБНОВЛЕНИЯ (НОВЫЕ) --- */

.update-title {
    /* Переопределяем цвет для заголовка обновления */
    color: #4CAF50; /* Green color for accent */
    font-size: 42px; 
    font-weight: 700;
    margin-bottom: 10px;
}

.update-section {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    background-color: #f0f0f0;
    border-left: 5px solid #4CAF50;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.update-section h2 {
    font-size: 28px;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.usage-example {
    background-color: #e5e5e5;
    padding: 15px;
    border-radius: 4px;
    font-family: monospace;
    white-space: pre-wrap;
    margin-top: 15px;
    font-size: 1.0em;
    line-height: 1.6;
    color: #555;
}

.separator {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    margin: 40px 0;
}

.usage-guide {
  font-size: 32px;
  font-weight: 700;
  margin-top: 40px;
}


/* --- АНИМАЦИЯ --- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in 0.8s ease forwards;
}

@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ --- */

@media (max-width: 768px) {
  .container {
    padding: 60px 25px;
  }

  .title {
    font-size: 34px;
  }

  .update-title {
    font-size: 30px;
  }

  .subtitle {
    font-size: 18px;
  }
  
  .update-section {
    padding: 15px;
  }
  
  .update-section h2 {
    font-size: 24px;
  }
  
  .usage-guide {
    font-size: 26px;
  }
}