/* ---------- komplette Seite ---------- */

body{

    margin:0;

    background:#0b3f45;

}

/* ---------- Hintergrund ---------- */

.ticklist-page,
.bm-page-wrapper{

    min-height:100vh;

    background-image:url("../background.jpg");

    background-size:cover;

    background-position:center top;

    background-repeat:repeat-y;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px;

}

/* ---------- Inhalt ---------- */

.ticklist-overlay{

    text-align:center;

}

/* ---------- Buttons ---------- */

.ticklist-buttons{

    display:flex;

    flex-direction:column;

    gap:28px;

    margin-top:170px;

}

.ticklist-button{

    display:block;

    width:420px;

    padding:28px;

    text-decoration:none;

    font-size:34px;

    font-weight:bold;

    color:white;

    background:#083b43;

    border-radius:18px;

    transition:.25s;

    opacity:0;

    animation:fadeUp .6s ease forwards;

}

.ticklist-button:nth-child(1){

    animation-delay:.15s;

}

.ticklist-button:nth-child(2){

    animation-delay:.35s;

}

.ticklist-button:nth-child(3){

    animation-delay:.55s;

}

.ticklist-button:hover{

    background:#18b2b5;

    transform:scale(1.03);

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(25px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

body.page-slug-meine-tickliste{

    background-image:url("../background.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;

}

body.page-slug-meine-tickliste .entry-content{

    background:transparent;

}

.bm-navigation{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:50px;

    flex-wrap:wrap;

}

.bm-navigation a{

    color:white;

    text-decoration:none;

    padding:10px 22px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    transition:.2s;

    font-weight:bold;

}

.bm-navigation a:hover{

    background:#11b8b6;

}

.bm-navigation a.active{

    background:#11b8b6;

}

.ticklist-overlay{

    position:relative;

}

.bm-navigation{

    position:absolute;

    top:-230px;
    right:-650px;

    display:flex;
    gap:14px;

    z-index:100;

}

.bm-navigation a{

    display:inline-block;

    padding:12px 22px;

    background:rgba(8,59,67,.92);

    color:white;

    text-decoration:none;

    border-radius:12px;

    font-size:18px;

    font-weight:700;

    transition:.2s;

}

.bm-navigation a:hover{

    background:#16b8b5;

}

.bm-navigation a.active{

    background:#16b8b5;

}

.bm-page-content{

    width:100%;
    max-width:1100px;
    margin:0 auto;

}