*{box-sizing:border-box}
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:#fff;
    background:#080808 radial-gradient(circle at top,#4a2300,#080808 55%);
}
.wrap{max-width:1150px;margin:0 auto;padding:18px}
.hero{
    text-align:center;
    padding:25px;
    background:linear-gradient(135deg,#260000,#4b2500,#080808);
    border:2px solid #e2b34b;
    border-radius:18px;
    box-shadow:0 0 35px rgba(255,190,60,.25);
}
.hero h1{
    margin:0;
    font-size:42px;
    color:#ffd66b;
    text-shadow:3px 3px #000;
}
.hero p{font-size:18px}
.tabs{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:14px 0;
    background:#111;
    border:1px solid #b5852e;
    border-radius:14px;
    padding:10px;
}
.tabs button,.btn{
    border:0;
    border-radius:10px;
    padding:10px 14px;
    cursor:pointer;
    font-weight:bold;
    background:linear-gradient(#ffd76f,#b87508);
    color:#111;
}
.tabs button.active{background:linear-gradient(#fff,#ffd76f)}
.btn.danger{background:linear-gradient(#ff7777,#a00000);color:#fff}
.tab{display:none}
.tab.active{display:block}
.box{
    background:rgba(0,0,0,.72);
    border:1px solid #c99735;
    border-radius:14px;
    padding:18px;
    margin:14px 0;
}
.buttons{display:flex;gap:10px;flex-wrap:wrap}
.cardSpot{
    min-height:430px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}
.card{
    width:320px;
    min-height:420px;
    border-radius:20px;
    border:5px solid #e2b34b;
    background:linear-gradient(145deg,#530000,#151515 48%,#603900);
    padding:15px;
    text-align:center;
    cursor:pointer;
    position:relative;
    box-shadow:0 0 35px rgba(255,210,80,.45);
    transition:transform .18s;
}
.card:hover{transform:scale(1.04)}
.card .logo{
    position:absolute;
    top:10px;left:10px;
    background:#111;
    color:#ffd76f;
    border:2px solid #ffd76f;
    border-radius:50%;
    width:55px;height:55px;
    display:flex;align-items:center;justify-content:center;
    font-size:13px;
    font-weight:900;
}
.card .tag{
    position:absolute;
    top:16px;right:12px;
    padding:5px 10px;
    border-radius:8px;
    background:#ffd76f;
    color:#111;
    font-size:13px;
    font-weight:900;
}
.card h2{
    margin-top:70px;
    font-size:35px;
    color:#fff;
    text-shadow:3px 3px #000, -1px -1px #000;
    text-transform:uppercase;
}
.card .icon{font-size:96px;margin:20px 0}
.card .desc{
    background:rgba(255,255,255,.9);
    color:#111;
    border-radius:12px;
    padding:10px;
    min-height:60px;
}
.card .foot{
    position:absolute;
    right:14px;bottom:12px;
    color:#ffd76f;font-weight:900;
}
.r-normal{border-color:#e2b34b}
.r-selten{border-color:#53b8ff;box-shadow:0 0 35px rgba(80,185,255,.45)}
.r-spezial,.r-event{border-color:#bb6cff;box-shadow:0 0 35px rgba(190,90,255,.55)}
.msg{
    text-align:center;
    min-height:36px;
    font-size:22px;
    font-weight:bold;
    color:#ffd76f;
}
.msg.good{color:#90ff90}
.msg.bad{color:#ff8f8f}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
    gap:12px;
}
.mini{
    background:linear-gradient(135deg,#171717,#331900);
    border:2px solid #d2a03b;
    border-radius:14px;
    padding:14px;
}
.mini h3{margin:0;color:#ffd76f}
.mini .count{font-size:32px;font-weight:900;margin:8px 0}
.mini .type{color:#ddd;font-size:13px}
label{display:block;margin-top:12px;font-weight:bold;color:#ffd76f}
input,select{
    width:100%;
    max-width:420px;
    padding:10px;
    margin:6px 0;
    border-radius:9px;
    border:1px solid #c99735;
    background:#151515;
    color:#fff;
}
table{width:100%;border-collapse:collapse}
td,th{border:1px solid #5a4215;padding:9px;text-align:left}
th{background:#3b2300;color:#ffd76f}
hr{border:0;border-top:1px solid #5a4215;margin:18px 0}
@media(max-width:600px){
    .hero h1{font-size:30px}
    .card{width:280px}
    .card h2{font-size:28px}
}


.cardImg{
    width:100%;
    height:165px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:18px 0;
    font-size:92px;
}

.cardImg img{
    max-width:100%;
    max-height:165px;
    object-fit:contain;
    border-radius:12px;
}

.miniImg{
    width:100%;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:8px;
    font-size:54px;
}

.miniImg img{
    max-width:100%;
    max-height:90px;
    object-fit:contain;
    border-radius:10px;
}
