* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
}

body {
    background: #000000;
    color: white;
    min-height: 100vh;
}

/* SECTION */
.pakete-section {
    padding: 120px 10%;
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 80px;
    letter-spacing: 3px;
}

/* CONTAINER */
.pakete-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* GLASS CARD */
.paket {
    width: 320px;
    padding: 45px 35px;
    border-radius: 25px;

    position: relative;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);

    transition: 0.4s ease;

    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 0.9s forwards;
}

@media (max-width: 768px) {
    .paket {
        width: 90%;
        max-width: 320px;
        animation: none;
        opacity: 1;
        transform: translateY(0);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        transition: transform 0.5s ease, z-index 0s;
    }

    .paket.silver {
        transform: translateX(-50%) translateY(0px);
        z-index: 1;
    }

    .paket.gold {
        transform: translateX(-50%) translateY(-100px);
        z-index: 2;
    }

    .paket.platinum {
        transform: translateX(-50%) translateY(-200px);
        z-index: 3;
    }

    /* при нажатии */
    .paket.silver.active {
        transform: translateX(-50%) translateY(-80px);
        z-index: 10;
    }

    .paket.gold.active {
        transform: translateX(-50%) translateY(-180px);
        z-index: 10;
    }

    .paket.platinum.active {
        transform: translateX(-50%) translateY(-300px);
        z-index: 10;
    }

    .gold {
        transform: translateX(-50%) translateY(20px) scale(1.05);
    }

    .pakete-container {
        position: relative;
        height: 600px;
    }
}

.paket::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 60%);
    transform: rotate(0deg);
    animation: lightMove 12s linear infinite;
}

/* GOLD größer + Highlight */
.gold {
    transform: translateY(60px) scale(1.05);
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

/* Animation Delay */
.silver { animation-delay: 0.2s; }
.gold { animation-delay: 0.5s; }
.platinum { animation-delay: 0.8s; }

/* Hover Effekt */
.paket:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255,255,255,0.1);
}

.gold:hover {
    box-shadow: 0 20px 80px rgba(212, 175, 55, 0.5);
}

/* TEXT */
.paket h2 {
    font-size: 26px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.stunden {
    opacity: 0.8;
    margin-bottom: 20px;
}

.paket hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 25px 0;
}

.paket ul {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.paket ul li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.9;
}

/* BUTTON */
.anfragen-btn {
    padding: 13px 35px;
    border-radius: 40px;
    border: 1px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.anfragen-btn:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

/* GOLD BUTTON */
.gold-btn {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.gold-btn:hover {
    background: #d4af37;
    color: black;
}

/* ===== SILVER ===== */
.silver {
    border: 1px solid rgba(192, 192, 192, 0.5);
    box-shadow: 0 0 40px rgba(192, 192, 192, 0.15);
}

.silver:hover {
    box-shadow: 0 20px 70px rgba(192, 192, 192, 0.4);
}

.silver h2 {
    color: #c0c0c0;
}

.silver .anfragen-btn {
    border: 1px solid #c0c0c0;
    color: #c0c0c0;
}

.silver .anfragen-btn:hover {
    background: #c0c0c0;
    color: black;
}


/* ===== GOLD ===== */
.gold h2 {
    color: #d4af37;
}


/* ===== PLATINUM ===== */
.platinum {
    border: 1px solid rgba(180, 200, 255, 0.5);
    box-shadow: 0 0 40px rgba(180, 200, 255, 0.2);
}

.platinum:hover {
    box-shadow: 0 20px 80px rgba(180, 200, 255, 0.5);
}

.platinum h2 {
    color: #b4c8ff;
}

.platinum .anfragen-btn {
    border: 1px solid #b4c8ff;
    color: #b4c8ff;
}

.platinum .anfragen-btn:hover {
    background: #b4c8ff;
    color: black;
}

/* ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lightMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================= */
/* MOBILE & TABLET PREMIUM EFFECT */
/* ========================================= */

@media (max-width: 1024px) {

    .paket {
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(30px);
    }

    /* ===== УБРАТЬ ПЕРЕЛИВАНИЕ ВНУТРИ ===== */
    .paket::before {
        display: none;
    }

    /* ===== SILVER ===== */
    .silver {
        animation: glowSilver 3s ease-in-out infinite;
    }

    /* ===== GOLD ===== */
    .gold {
        animation: glowGold 3s ease-in-out infinite;
    }

    /* ===== PLATINUM ===== */
    .platinum {
        animation: glowPlatinum 3s ease-in-out infinite;
    }

    @keyframes glowSilver {
        0%,100% {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        }
        50% {
            box-shadow: 0 20px 70px rgba(192, 192, 192, 0.4);
        }
    }

    @keyframes glowGold {
        0%,100% {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        }
        50% {
            box-shadow: 0 20px 80px rgba(212, 175, 55, 0.5);
        }
    }

    @keyframes glowPlatinum {
        0%,100% {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        }
        50% {
            box-shadow: 0 20px 80px rgba(180, 200, 255, 0.5);
        }
    }

}