.content {
    position: relative;
    z-index: 1001;
    max-width: 1000px;
    margin: 100px auto;
    padding: 20px;
    color: white;
    text-align: center;
}

.app-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.app-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    text-align: left;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.app-card h2 {
    margin-top: 0;
    font-size: 24px;
    color: #ffc107;
}

.app-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn.download {
    background-color: #28a745;
}

.btn.howto {
    background-color: #007bff;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.app-icon {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

