.big_adventure .title h2{
    text-align: start;
    font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 40px;
  z-index: 1;
}

.big_adventure_container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

/* Анимация для блоков */
.big_adventure_block {
    cursor: pointer;
    display: flex;
    width: calc(33% - 18px);
    height: 314px;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    
    /* Анимация появления */
    opacity: 0;
    transform: translateY(50px);
    
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.2), 
                transform 1.5s cubic-bezier(0.2, 0.9, 0.4, 1.2),
                background 0.3s ease,
                box-shadow 0.3s ease;
    
    /* Оптимизация производительности */
    will-change: opacity, transform, border-color;
}

.big_adventure_block:hover {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 30px 0 rgba(11, 11, 11, 0.60);
    backdrop-filter: blur(10px);
}

/* Добавляем плавность для иконки */
.bab_icon {
    transition: all 0.3s ease;
}

.big_adventure_block:hover .bab_icon {
    border-radius: 12px;
    border: 1px solid #FF878C;
    background: var(--Red, #F23840);
    box-shadow: 0 4px 20px 0 rgba(237, 27, 36, 0.20), 0 1px 10px 0 rgba(237, 27, 36, 0.22);
}

/* Добавляем плавность для SVG */
.big_adventure_block > div:first-of-type path {
    transition: fill 0.3s ease;
}

.big_adventure_block:hover > div:first-of-type path {
    fill: #2B2B2B;
}

.big_adventure_block.bab_white{
    background: #fff;
}

.big_adventure_block.bab_white h3{
    color: #1A1A1A;
}

.big_adventure_block.bab_white p{
    color: #676767;
}

.big_adventure_block.bab_white .advent_number > div{
    color: #1A1A1A;
}

.big_adventure_block.bab_white  > div:first-of-type path {
    fill: #E6E6E6;
}

.advent_number{
    position: absolute;
    top: 0;
    right: 0;
}

.advent_number > div{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Light-grey, #C3C3C3);
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    width: calc(100% - 15px);
    right: 0;
    height: calc(100% - 15px);
}

.big_adventure_block.revealed {
    opacity: 1;
    transform: translateY(0);
}


.bab_icon {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #FF8E93;
    background: var(--Red, #F23840);
}

.big_adventure_block h3 {
    margin-top: 8px;
    color: #F1F5F9;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.big_adventure_block p {
    color: var(--text-sacondary, rgba(203, 213, 225, 0.80));
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.ba_svg_fon{
    position: absolute;
    right: 0;
}

/* Добавьте стили для заголовка */
.big_adventure .title h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.big_adventure .title h2.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .big_adventure_block {
        width: calc(50% - 16px);
    }
}

@media (max-width: 800px) {
    .big_adventure {
        padding-top: 60px;
    }
}

@media (max-width: 710px) {
    .big_adventure_container{
        gap: 24px;
    }
    .big_adventure_block {
        width: 100%;
        height: auto;
        min-height: 280px;
        padding: 24px 20px;
        gap: 16px;
    }
    
    /* .big_adventure_block:nth-child(2),
    .big_adventure_block:nth-child(3),
    .big_adventure_block:nth-child(4) {
        display: none;
    } */

    /* .big_adventure_block:nth-child(1),
    .big_adventure_block:nth-child(5),
    .big_adventure_block:nth-child(6) {
        transition-delay: 0s, 0s;
    } */

}

@media (max-width: 600px) {
    .big_adventure_container {
        gap: 16px;
    }

    .bab_icon {
        width: 48px;
        height: 48px;
    }

    .bab_icon svg {
        width: 28px;
        height: 28px;
    }

    .big_adventure_block h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .big_adventure_block p {
        font-size: 14px;
        line-height: 22px;
    }

    /* Убираем hover эффекты на мобилках (они не работают или мешают) */
    .big_adventure_block.revealed:hover {
        transform: translateY(0);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .big_adventure_block.revealed:hover .bab_icon svg {
        animation: none;
    }

}

/* Дополнительно для очень маленьких экранов (320-480px) */
@media (max-width: 480px) {
    .big_adventure_block {
        padding: 20px 16px;
        min-height: 240px;
    }

    .bab_icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .bab_icon svg {
        width: 22px;
        height: 22px;
    }

    .big_adventure_block h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .big_adventure_block p {
        font-size: 13px;
        line-height: 20px;
    }
}

