/* Общие стили для секций */
.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-2 {
    max-width: 1800px;
    margin: 0;
    padding: 0 2rem;
}

/* Первая секция */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: right;
    width: 80%;
    /*padding: 2rem;*/
    padding: 0 60px 0 60px;
}

.hero-title {
    font-size: 96px;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.promo-logo {
    max-width: 1000px;
    height: auto;
    margin-bottom: 2rem;
    margin-left: auto;
    opacity: 0.9;
}

.hero-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16.5px 24.75px;
    gap: 3.3px;
    width: 329.4px;
    height: 66px;
    background: #FFAE00;
    border: 2.475px solid #222222;
    border-radius: 49.5px;
    color: #222222;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
}

.hero-btn:hover {
    background: #916505;
    color: #FFFFFF;
}

/* Вторая секция */
.intro-section {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: right;
    padding: 4rem 2rem;
}

.intro-text {
    font-size: clamp(20px, 24px - 0.5vw, 24px);
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;

}

.sponsor-section {
    background-color: #222222;
    padding: 4rem 0;
    position: relative;
    z-index: 5;
}

/* Третий блок */
.mission-section {
    background-color: #222222;
    padding: 4rem 0;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-title {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight {
    color: #FFAE00;
}

.mission-subtitle {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 4rem;
    line-height: 1.5;
}

.what-not-section {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.what-not-title {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.not-highlight {
    color: #FFAE00;
}

.what-not-list {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.6;
    list-style-type: none;
    padding: 0;
}

.what-not-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.what-not-list li:before {
    content: "•";
    color: #FFAE00;
    font-size: 24px;
    position: absolute;
    left: 0;
}

/* Четвертый блок */
.benefits-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    padding: 4rem 0;
}

.benefits-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.benefits-title {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(34, 34, 34, 0.9);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    border: 2px solid #FFAE00;
}

.benefit-item h3 {
    color: #FFAE00;
    font-size: 24px;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #FFFFFF;
    line-height: 1.5;
}

/* Пятый блок */
.raffle-section {
    background-color: #222222;
    padding: 4rem 0;
    text-align: center;
}

.raffle-title {
    font-size: 48px;
    color: #FFAE00;
    margin-bottom: 1rem;
}

.raffle-subtitle {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    grid-auto-rows: 1fr;
}

.prize-item {
    background: rgba(255, 174, 0, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #FFAE00;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prize-item h3 {
    color: #FFFFFF;
    font-size: 16px;
    margin: 0;
    text-align: left;
    flex: 1;
}

.prize-count {
    color: #FFAE00;
    font-weight: bold;
    font-size: 18px;
    margin-left: 1rem;
}

.total-prizes {
    color: #FFFFFF;
    font-size: 20px;
}

.total-prizes strong {
    color: #FFAE00;
}

.raffle-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.6;
}

.raffle-text p {
    margin-bottom: 1.5rem;
}

.raffle-text strong {
    color: #FFAE00;
    font-size: 24px;
}

.winners-grid {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;

  max-width: 900px;
}

.winners-grid li {
  background: rgba(255, 174, 0, 0.1);
  border: 1px solid #FFAE00;
  border-radius: 8px;
  padding: 1rem 1.5rem;

  color: #fff;
  font-size: 18px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  min-height: 60px;
  word-break: break-word;
}

.winner-id {
  font-family: monospace;
}

.winner-prize {
  font-size: 16px;
}

/* Адаптив */
@media (max-width: 768px) {
  .winners-grid {
    grid-template-columns: 1fr;
  }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .raffle-text {
        font-size: 18px;
    }

    .raffle-text strong {
        font-size: 20px;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .mission-title,
    .benefits-title,
    .raffle-title {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .prize-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .prize-item h3 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-text {
        font-size: 18px;
    }

    .mission-title,
    .benefits-title,
    .raffle-title {
        font-size: 28px;
    }
}

.benefit-item,
.prize-item,
.mission-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-item.animate-in,
.prize-item.animate-in,
.mission-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}