.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background-color: #0d1411;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;       /* Erlaubt Elementen, in die nächste Zeile zu springen */
    align-items: center;   /* Hält Icon, Info und Button mittig */
    height: 82px;;
    gap: 20px;
    outline: 2px solid #00ffcc;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.1);
    transition: transform 0.2s, box-shadow 0.2s,
    padding-bottom 0.5s;

}

.card:hover {
    transform: scale(1.1); 
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
    padding-bottom: 110px;
    opacity: 1;
}

.card:hover .hidden-text {
    opacity: 1;
}

.hidden-text {
    flex-basis: 100%;
    display: block;
    width: 100%;
    text-align: left; 
    opacity: 0;
    transition: opacity 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-animate {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.frame {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #00ffcc;
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1); 
}

.info {
    flex-grow: 1;
}

.name {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #00ffcc;
}

.desc {
    margin: 0;
    color: #a0b3af;
    font-size: 0.9rem;
}

.badge {
    font-size: 0.7rem;
    background: rgba(0, 255, 204, 0.1);
    color: #00ffcc;
    padding: 3px 8px;
    border-radius: 10px;
    border: 1px solid #00ffcc;
    margin-left: 10px;
}

.download-btn {
    background: linear-gradient(135deg, #00ffcc, #00cc99);
    color: #0b1110;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.download-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
}

.h1 {
    color: #00ffcc;
    text-align: center;
    font-size: 5.4rem;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    transition: 0.3s;
}

.h1:hover {
    filter: brightness(1.0001);
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
}

.back {
    background: linear-gradient(135deg, #00ffcc, #00cc99);
    color: #0b1110;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s, transform 0.2s ease;
    display: inline-flex;
}

.back:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
    transform: scale(1.04);
}