/* --- Контейнер & фон --- */
#abenteuer-block{position:relative;width:100vw;overflow:hidden;background:transparent;}
.block-bg{background-color:var(--main-bg-color);position:absolute;inset:0;width:100%;height:100%;pointer-events:none;user-select:none;padding-top:100px;z-index:-1;}

/* --- Внутренний блок --- */
.abenteur_block{position:relative;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;padding:40px 20px;box-sizing:border-box;}

/* --- Табы --- */
.adventure-words{display:flex;justify-content:space-around;gap:25px;margin:10px 0;}
.adventure-word{font-family:var(--main-font);font-weight:400;font-size:23px;cursor:pointer;padding-bottom:5px;}
.adventure-word.active{border-bottom:2px solid #000;}

/* --- Слайдер --- */
.adventure-slider{position:relative;margin:30px 0 0;overflow:hidden;width:1260px;max-width:100%;cursor:grab;touch-action:pan-y;}
.adventure-slider-inner{display:flex;transition:transform .8s cubic-bezier(.32,.72,.4,1);will-change:transform;}
.adventure-block{flex:0 0 400px;margin:0 10px;height:560px;background:#4d4d4d;border-radius:5px;overflow:hidden;}
.adventure-block-content{border-radius:5px;background:#333;height:100%;}

/* --- Стрелки --- */
.slider-arrow{
    position:absolute;top:50%;transform:translateY(-50%);
    width:48px;height:48px;border:none;border-radius:50%;
    background:rgba(0,0,0,.5);color:#fff;font-size:24px;
    display:flex;align-items:center;justify-content:center;cursor:pointer;
    transition:background .3s;z-index:2;
}
.slider-arrow:hover{background:rgba(0,0,0,.7);}
.slider-arrow.left {left:10px;}
.slider-arrow.right{right:10px;}
@media(max-width:768px){
    .slider-arrow{width:36px;height:36px;font-size:18px;}
}

/* --- Пагинация --- */
.adventure-pagination{display:flex;justify-content:center;gap:10px;}
.adventure-dot{width:5px;height:5px;border-radius:50%;background:#ccc;border:2px solid #eee;cursor:pointer;transition:background .2s;}
.adventure-dot.active{background:#333;border-color:#888;}

/* --- Кнопка --- */
.more-tours-container{display:flex;justify-content:center;margin:30px 0;}
.more-tours-button{background:#333;color:#fff;padding:12px 25px;border-radius:5px;text-decoration:none;font-family:var(--main-font);font-size:18px;font-weight:500;transition:background .3s;}
.more-tours-button:hover{background:#555;}

/* --- Телефоны --- */
@media(max-width:768px){
    .adventure-words{gap:10px;flex-wrap:wrap;font-size:18px;}
    .adventure-block{flex:0 0 260px;height:450px;}
    .adventure-slider{width:100%;}
}
