.maps-page{
    width:min(1440px,calc(100% - 40px));
    margin:0 auto;
    padding:34px 0 70px;
}

.maps-hero{
    min-height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #20344a;
    border-radius:8px;
    background:
        linear-gradient(90deg,rgba(5,11,18,.94),rgba(8,18,30,.75),rgba(5,11,18,.94)),
        url('/assets/maps/de_mirage.jpg') center/cover;
}

.maps-hero-content{
    text-align:center;
    padding:30px 20px;
}

.maps-eyebrow{
    color:#e8a822;
    font-size:11px;
    font-weight:800;
    letter-spacing:4px;
}

.maps-hero h1{
    margin:10px 0;
    color:#fff;
    font-size:clamp(38px,5vw,64px);
}

.maps-hero h1 em{
    color:#e8a822;
    font-style:normal;
}

.maps-hero p{
    color:#8fa1b5;
    font-size:11px;
    font-weight:700;
}

.maps-stats{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:20px;
}

.maps-stats div{
    min-width:100px;
    padding:10px 15px;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(8,17,28,.72);
}

.maps-stats strong{
    display:block;
    color:#fff;
    font-size:20px;
}

.maps-stats span{
    color:#6f8298;
    font-size:8px;
    font-weight:800;
}

.maps-controls{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin:25px 0;
}

.maps-search input{
    width:360px;
    max-width:100%;
    padding:13px;
    border:1px solid #20344a;
    background:#0b1521;
    color:#fff;
    outline:0;
}

.maps-filters{
    display:flex;
    gap:6px;
}

.maps-filters button{
    border:1px solid #20344a;
    background:#0b1521;
    color:#74869a;
    padding:12px 18px;
    cursor:pointer;
    font-size:9px;
    font-weight:900;
}

.maps-filters button.active,
.maps-filters button:hover{
    background:#e8a822;
    color:#07101a;
    border-color:#e8a822;
}

.maps-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.map-card{
    overflow:hidden;
    border:1px solid #1d3044;
    border-radius:5px;
    background:#0a1420;
    transition:.25s;
}

.map-card:hover{
    transform:translateY(-4px);
}

.map-image{
    position:relative;
    height:185px;
    overflow:hidden;
    background:#101b28;
}

.map-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.map-image:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 35%,rgba(3,8,14,.92));
}

.map-badge{
    position:absolute;
    z-index:2;
    top:10px;
    left:10px;
    padding:5px 8px;
    font-size:7px;
    font-weight:900;
}

.map-badge.official{
    background:#e8a822;
    color:#07101a;
}

.map-badge.workshop{
    background:#11283b;
    color:#dbe9f6;
}

.map-name{
    position:absolute;
    z-index:2;
    left:14px;
    right:14px;
    bottom:13px;
}

.map-name small{
    color:#e8a822;
    font-size:7px;
    font-weight:800;
}

.map-name h2{
    margin:2px 0 0;
    color:#fff;
    font-size:20px;
}

.map-footer{
    min-height:42px;
    display:flex;
    align-items:center;
    padding:0 13px;
    border-top:1px solid #17283a;
}

.map-footer a,
.map-footer span{
    color:#74879c;
    text-decoration:none;
    font-size:8px;
    font-weight:800;
}

.map-footer a:hover{
    color:#e8a822;
}

.maps-empty{
    display:none;
    padding:40px;
    text-align:center;
    color:#718398;
}

@media(max-width:1100px){
    .maps-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:800px){
    .maps-page{
        width:calc(100% - 20px);
    }

    .maps-controls{
        flex-direction:column;
    }

    .maps-search input{
        width:100%;
    }

    .maps-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:520px){
    .maps-grid{
        grid-template-columns:1fr;
    }
}
