*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    min-height:100vh;

    background-image:url("png/orientalischer-bg.avif");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    color:white;
}

/* dunkler Overlay */
body::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:-1;
}

.hero{
    text-align:center;
    padding:80px 20px 40px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero p{
    font-size:1.2rem;
    opacity:.85;
}

/* Karten Container */
#plans-container{
    max-width:1400px;
    margin:auto;
    padding:30px;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;
}

/* Einzelne Karte */
.plan{
    width:340px;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:24px;
    padding:35px;

    text-align:center;

    transition:.3s;
    position:relative;
}

.plan:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

/* Premium hervorheben */
.plan.popular{
    border:2px solid #f39c12;
    transform:scale(1.03);
}

.badge{
    position:absolute;
    top:15px;
    right:15px;

    background:#f39c12;
    color:white;

    padding:6px 12px;
    border-radius:30px;
    font-size:.8rem;
    font-weight:bold;
}

.plan-name{
    font-size:2rem;
    margin-bottom:15px;
}

.price{
    font-size:3rem;
    font-weight:bold;
    color:#f39c12;
    margin-bottom:25px;
}

.price span{
    display:block;
    font-size:1rem;
    color:#ddd;
    margin-top:5px;
}

.features{
    list-style:none;
    margin-bottom:30px;
}

.features li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.features li:last-child{
    border-bottom:none;
}

.buy-btn{
    width:100%;

    border:none;
    border-radius:12px;

    padding:15px;
    cursor:pointer;

    font-size:1rem;
    font-weight:bold;

    background:#f39c12;
    color:white;

    transition:.3s;
}

.buy-btn:hover{
    background:#ffae27;
    transform:scale(1.03);
}

@media(max-width:768px){

    .hero h1{
        font-size:2rem;
    }

    .plan{
        width:100%;
        max-width:400px;
    }
}



box {
    width:39px;

    /*
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);
    */

    border-radius:24px;
    padding:35px;

    text-align:center;

    transition:.3s;
    position:relative;
}