/* ---------------------------------------------------
   GALACTIC CARD – DARK THEME
--------------------------------------------------- */
.galactic-card {
    background: radial-gradient(circle at top left, #1a1a2e, #0f3460);
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 0 15px rgba(0,255,255,0.2);
}

.galactic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0,255,255,0.4);
}

.text-muted {
    color: white !important;
}
/* ---------------------------------------------------
   HEADER 
--------------------------------------------------- */
.paket-header {
    min-height: 70px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.paket-title {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
    color: #e6e6e6;
    flex: 1;
}

.paket-header-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255,255,255,0.25);
}

/* ---------------------------------------------------
   PREISBEREICH
--------------------------------------------------- */
.paket-preis .preis-wert {
    font-size: 1.6rem;
    font-weight: 700;
    color: #00ffc3;
    text-shadow: 0 0 8px rgba(0,255,255,0.4);
}

/* ---------------------------------------------------
   LISTEN & TEXTE
--------------------------------------------------- */
.galactic-card p {
    margin-bottom: 4px !important;
    line-height: 1.25;
}

.galactic-card ul li {
    padding: 2px 0;
    font-size: 0.85rem;
}

/* ---------------------------------------------------
   BUTTONS
--------------------------------------------------- */
.btn-galactic {
    background: linear-gradient(90deg, #ff6f61, #de1f8d);
    color: white;
    border: none;
    border-radius: 6px;
}

.btn-galactic:hover {
    background: linear-gradient(90deg, #de1f8d, #ff6f61);
}

/* ---------------------------------------------------
PAKET-TYPEN
--------------------------------------------------- */
.paket-orbit .card-header {
    background: linear-gradient(90deg, #3f0071, #fb2576);
}

.paket-quantum .card-header {
    background: linear-gradient(90deg, #0071fb, #00c6ff);
}

.paket-hyperdrive .card-header {
    background: linear-gradient(180deg, #00ffab, #007f5f);
}

.paket-orbit .card-header,
.paket-quantum .card-header,
.paket-hyperdrive .card-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* ---------------------------------------------------
   GLOBAL
--------------------------------------------------- */
html, body {
    overflow-x: hidden;
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */
@media (max-width: 768px) {

    .col-lg-3.col-md-4.col-sm-6 {
        width: 100%;
        max-width: 90%;
    }

    /* Header wird mobil zentriert */
    .paket-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        min-height: auto;
    }

    .paket-header-logo {
        width: 48px;
        max-height: 48px;
        margin: 0 auto;
        box-shadow: 0 0 6px rgba(255,255,255,0.2);
    }

    .galactic-card {
        max-width: 100%;
        margin: 0 auto !important;
        padding: 1rem;
        min-height: auto;
    }

    .card-header h6 {
        font-size: 1.2rem;
    }

    .paket-preis .preis-wert {
        font-size: 1.4rem;
    }

    .card-body {
        font-size: 0.95rem;
    }

    .card-body p {
        margin-bottom: 0.5rem;
    }

    .card-body ul {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .btn-galactic {
        width: 100%;
        margin-top: 10px;
        font-size: 1rem;
        padding: 0.75rem;
    }
}
