/* Общие настройки секции */
.product-promo {
    padding: 80px 20px;
    background: #000;
    display: flex;
    flex-direction: column; /* Чтобы заголовок был сверху контейнера */
    align-items: center;
}

/* Контейнер в стиле Blitz */
.promo-blitz-container {
    max-width: 1100px;
    width: 100%;
    background: linear-gradient(135deg, #161616 0%, #161616 50%, #635014 100%);
    border-radius: 40px;
    padding: 50px 60px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 252, 30, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

/* Флекс-сетка для верхней части */
.blitz-main-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.blitz-info {
    flex: 1.5;
}

.blitz-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.promo-side-img {
    max-width: 500px; /* Уменьшили до компактного размера */
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 252, 30, 0.15));
    border-radius: 20px;
}

/* Текстовые стили */
.blitz-sub {
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.blitz-title {
    font-size: clamp(30px, 5vw, 55px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blitz-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 18px;
    border-radius: 12px;
    width: fit-content;
    margin-bottom: 30px;
}

.tag-age {
    background: #D4FC1E;
    color: #000;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 14px;
}

.tag-info { font-size: 14px; color: rgba(255, 255, 255, 0.8); }

/* Кнопки */
.blitz-actions {
    display: flex;
    gap: 12px;
}

.btn-play {
    background: #D4FC1E;
    color: #000;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-play:hover { background: #fff; transform: translateY(-2px); }

.btn-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 25px;
    height: 55px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* Универсальные стили для кнопок-ссылок */
.btn-play, .btn-icon {
    text-decoration: none;      /* Убираем подчеркивание */
    display: inline-flex;       /* Позволяет кнопке иметь размеры и выравнивать текст */
    align-items: center;        /* Центрируем текст по вертикали */
    justify-content: center;    /* Центрируем текст по горизонтали */
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Статистика */
.blitz-stats-row {
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.stats-info-card { flex: 2; }
.stats-info-card h3 { font-size: 20px; margin-bottom: 8px; }
.stats-info-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.stats-users-card {
    flex: 1;
    text-align: right;
}

.users-count { font-size: 32px; font-weight: 900; color: #D4FC1E; line-height: 1; }
.users-label { font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* Адаптивность */
@media (max-width: 850px) {
    .blitz-main-flex { flex-direction: column; text-align: center; }
    .blitz-image-wrapper { justify-content: center; order: -1; }
    .promo-side-img { max-width: 200px; }
    .blitz-tags { margin: 0 auto 25px; }
    .blitz-actions { justify-content: center; }
    .blitz-stats-row { flex-direction: column; text-align: center; }
    .stats-users-card { text-align: center; }
}