.galactic-card {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 14px;
    transition: .25s ease;
    min-height: 260px; /* ? gleiche Höhe */
    display: flex;
    flex-direction: column;
}
/
.card-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.entry-left {
    flex: 1;
}

.entry-right {
    width: 140px;
    flex-shrink: 0;
}

.entry-logo {
    width: 150px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.card-footer {
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.galactic-card.dark-mode {
    background: radial-gradient(circle at top left, #0d1b2a, #1b263b);
    color: #e0e0e0;
    box-shadow: 0 0 18px rgba(0,255,255,0.18);
}

.galactic-card.dark-mode:hover {
    box-shadow: 0 0 28px rgba(0,255,255,0.35);
    transform: translateY(-4px);
}

.galactic-card.dark-mode .card-header {
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.entry-logo {
    box-shadow: 0 0 12px rgba(0,255,255,0.35);
}

.entry-header-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
    white-space: nowrap;
}

.entry-title {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.entry-id {
    font-size: 0.9rem;
    opacity: 0.8;
}

.entry-date {
    font-size: 0.9rem;
    opacity: 0.8;
}
.galactic-card.dark-mode .text-muted {
    color: #cfffff !important;
    text-shadow:
        0 0 4px rgba(0,255,255,0.4),
        0 0 10px rgba(0,255,255,0.25),
        0 0 18px rgba(0,255,255,0.15);
}
.btn-galactic {
    background: linear-gradient(90deg, #00d4ff, #007bff);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: .25s ease;
}

.btn-galactic:hover {
    box-shadow: 0 0 12px rgba(0,255,255,0.4);
    transform: translateY(-2px);
}
html, body {
    overflow-x: hidden !important;
}
.description-hover {
    position: relative;
}

.description-full {
    display: none;
    color: #9be8ff;
    text-shadow: 0 0 6px rgba(0,255,255,0.35);
}

.description-hover:hover .description-full {
    display: block;
}

.description-hover:hover .description-short {
    display: none;
}

.galactic-search .search-wrapper {
    position: relative;
    width: 50%;
}

.galactic-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #00eaff;
    font-size: 1.2rem;
    pointer-events: none;
}

.galactic-search .search-input {
    padding-left: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,255,255,0.25);
    color: #e0faff;
    box-shadow: 0 0 10px rgba(0,255,255,0.15);
    transition: .25s ease;
}

.galactic-search .search-input:focus {
    border-color: #00eaff;
    box-shadow: 0 0 18px rgba(0,255,255,0.45);
    background: rgba(255,255,255,0.08);
}

.btn-galactic-search {
    background: linear-gradient(90deg, #00eaff, #007bff);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    transition: .25s ease;
}

.btn-galactic-search:hover {
    box-shadow: 0 0 14px rgba(0,255,255,0.45);
    transform: translateY(-2px);
}
.paket-title-spacing {
    margin-top: 100px;
}

.search-input::placeholder {
    color: #9be8ff !important;
    opacity: 1 !important;
}

.search-input::-moz-placeholder {
    color: #9be8ff !important;
    opacity: 1 !important;
}

.search-input:-ms-input-placeholder {
    color: #9be8ff !important;
}

.search-input::-ms-input-placeholder {
    color: #9be8ff !important;
}
.galactic-pagination ul {
    display: flex;
    gap: 8px;
    padding: 0;
}

.galactic-pagination .pagination li a,
.galactic-pagination .pagination li span {
    display: block;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,255,255,0.25);
    color: #9be8ff;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 0 8px rgba(0,255,255,0.15);
}

.galactic-pagination .pagination li a:hover {
    background: rgba(0,255,255,0.15);
    border-color: #00eaff;
    box-shadow: 0 0 14px rgba(0,255,255,0.45);
    transform: translateY(-2px);
}
.galactic-pagination .pagination li.active span {
    background: linear-gradient(90deg, #00eaff, #007bff);
    color: #fff;
    border-color: #00eaff;
    box-shadow: 0 0 18px rgba(0,255,255,0.55);
}

.floating-search {
    max-width: 1100px; /* breiter als 900px Cards */
    margin: 0 auto;
    padding: 20px 25px;
    border-radius: 16px;
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 25px rgba(0,255,255,0.25);
    backdrop-filter: blur(6px);
    display: flex;
    gap: 12px;
    align-items: center;
    transition: .35s ease;
}

.floating-search:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(0,255,255,0.45);
}

.search-wrapper {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #00eaff;
    font-size: 1.3rem;
    pointer-events: none;
}

.search-input {
    padding-left: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,255,255,0.25);
    color: #e0faff;
    box-shadow: 0 0 12px rgba(0,255,255,0.15);
    transition: .25s ease;
}

.search-input:focus {
    border-color: #00eaff;
    box-shadow: 0 0 20px rgba(0,255,255,0.45);
}

.search-input::placeholder {
    color: #9be8ff !important;
    opacity: 1 !important;
}

.btn-galactic-search {
    background: linear-gradient(90deg, #00eaff, #007bff);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 600;
    white-space: nowrap;
    transition: .25s ease;
}

.btn-galactic-search:hover {
    box-shadow: 0 0 18px rgba(0,255,255,0.45);
    transform: translateY(-2px);
}

@media (max-width: 768px) {

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

    .entry-header-line {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .entry-title {
        font-size: 1rem;
    }

    .card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .entry-left {
        order: 0;  
        width: 100%;
        margin-bottom: 15px;
    }

    .entry-right {
        order: -1;  
        width: auto;
        margin-left: 0 !important;
        margin-bottom: 20px;
    }

    .entry-logo {
        width: 200px;
        margin: 0 auto;
    }

    .btn-galactic {
        width: 100% !important;
    }

    .galactic-search .search-wrapper {
        width: 100%;
    }

    .galactic-search {
        flex-direction: column;
        gap: 10px;
    }

    .btn-galactic-search {
        width: 100%;
    }

    .galactic-pagination ul {
        gap: 4px;
    }

    .galactic-pagination .pagination li a,
    .galactic-pagination .pagination li span {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
  header {
    padding: 1rem;
  }
}
