@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url(../img/armin.webp) no-repeat center center fixed;
    background-size: cover;
    color: white;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: -1;
  }
  
  /* Хедер */
  header {
    background: transparent;
    padding: 20px 15px 30px;
    text-align: center;
    animation: fadeIn 1s ease-out;
    position: relative;
  }
  
  /* Заголовок h1 (в хедере) */
  header h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 0.7;
    text-align: center;
    color: white;
  }
  
  /* Имя исполнителя */
  header .artist {
    display: block;
    color: #D8885F;
    transition: color .3s ease;
  }
  
  /* Название тура */
  header .tour {
    font-size: 1.5rem;
    color: #ccc;
    transition: color .3s ease;
  }
  
  /* Анимация при наведении */
  header:hover .artist {
    color: #bfa181;
  }
  
  header:hover .tour {
    color: #ddd;
  }
  
  /* Линия под хедером */
  header::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    margin: 8px auto 0;
    background: #D8885F;
    transition: all .3s ease;
  }
  
  header:hover::after {
    width: 60px;
    background: #bfa181;
  }
  
  /* Секция описания */
  .description {
    text-align: center;
    padding: 40px 20px 20px;
    max-width: 800px;
    margin: auto;
    animation: fadeIn 1.2s ease-out;
  }
  
  .description h2 {
    font-size: 1.8rem;
    margin: 0;
    transition: color .3s ease;
    color: white;
  }
  
  .description h2:hover {
    color: #D8885F;
  }
  
  .description p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #f5f5f5;
  }
  
  /* Секция событий */
  .events {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
  }
  
  .event {
    background-color: rgba(151, 38, 53, 0.2);
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform .3s ease, box-shadow .3s ease;
    animation: fadeIn 1.5s ease-out;
    border: 1px solid rgba(216, 136, 95, 0.3);
  }
  
  .event:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(216, 136, 95, 0.4);
  }
  
  .event h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
    transition: color .3s ease;
  }
  
  .event h2:hover {
    color: #D8885F;
  }
  
  .event p {
    font-size: 1rem;
    color: #f0f0f0;
  }
  
  .event a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    background: #972635;
    color: white;
    text-decoration: none;
    transition: all .3s ease;
  }
  
  .event a:hover {
    background: #D8885F;
    color: #111;
    transform: scale(1.05);
  }
  .event p {
    margin: 5px 0;
    font-size: 1rem;
    color: #f0f0f0;
  }
  
  .event p i {
    width: 20px;
    text-align: center;
    color: #D8885F;
    transition: color .3s ease;
  }
  
  .event p:hover i {
    color: #bfa181;
  }
  
  .footer {
    text-align: center;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.4);
    font-size: .9rem;
    color: #ccc;
    border-top: 1px solid #D8885F;
    animation: fadeIn 2s ease-out;
    transition: background .3s ease, color .3s ease;
  }
  
  .footer a {
    color: #D8885F;
    text-decoration: none;
    font-weight: bold;
  }
  
  .footer a:hover {
    color: #bfa181;
    text-shadow: 0 0 5px rgba(216, 136, 95, 0.6);
  }
  
  /* Мобильная версия */
  @media (max-width: 600px) {
    header h1 {
      font-size: 1.6rem;
      line-height: 0.7
    }
  
    header .tour {
      font-size: 1.1rem;
    }
  
    header::after {
      width: 40px;
    }
  
    header:hover::after {
      width: 60px;
    }
  
    .description {
      padding: 30px 15px 15px;
    }
  
    .description h2 {
      font-size: 1.5rem;
    }
  
    .description p {
      font-size: 1rem;
    }
  
    .event {
      margin: 15px 0;
      padding: 15px;
      width: 100%;
    }
  
    .event h2 {
      font-size: 1.4rem;
    }
  
    .event p {
      font-size: .95rem;
    }
  
    .event a {
      font-size: .95rem;
      padding: 8px 16px;
    }
  
    .footer {
      padding: 20px 15px;
      font-size: .85rem;
    }
  }