body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f7f6; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; padding: 20px; box-sizing: border-box; } .app-box { background-color: #ffffff; border-radius: 12px; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); padding: 25px; width: 100%; max-width: 400px; display: flex; flex-direction: column; gap: 15px; /* Space between elements */ } .app-header { display: flex; align-items: center; gap: 15px; } .app-icon { width: 80px; height: 80px; border-radius: 16px; /* More squircle-like */ object-fit: cover; border: 1px solid #eee; } .app-title-dev { flex-grow: 1; } .app-name { font-size: 1.6em; color: #333; margin: 0 0 5px 0; } .app-developer { font-size: 0.9em; color: #555; margin: 0; } .app-developer a { color: #007bff; text-decoration: none; } .app-developer a:hover { text-decoration: underline; } .app-meta { font-size: 0.85em; color: #666; display: grid; /* Or flex */ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; padding-bottom: 10px; border-bottom: 1px solid #eee; } .meta-item { display: flex; flex-direction: column; /* Stack label and value */ } .meta-label { font-weight: 600; color: #444; margin-bottom: 2px; } .meta-value { color: #777; } .app-rating-reviews { display: flex; justify-content: space-between; align-items: center; font-size: 0.9em; } .app-rating .fa-star, .app-rating .fa-star-half-alt { color: #ffc107; /* Gold color for stars */ } .app-rating .far.fa-star { /* Empty star */ color: #e0e0e0; } .app-rating .rating-value { margin-left: 5px; color: #555; font-weight: bold; } .app-reviews a { color: #007bff; text-decoration: none; } .app-reviews a:hover { text-decoration: underline; } .app-description { font-size: 0.95em; color: #555; line-height: 1.6; margin: 5px 0; /* Adjusted margin */ } .app-actions { display: flex; gap: 10px; margin-top: 10px; } .btn { padding: 10px 15px; border: none; border-radius: 6px; text-decoration: none; font-size: 0.95em; font-weight: 500; cursor: pointer; transition: background-color 0.2s ease, transform 0.1s ease; text-align: center; flex-grow: 1; /* Make buttons take equal width */ } .btn-primary { background-color: #007bff; color: white; } .btn-primary:hover { background-color: #0056b3; transform: translateY(-1px); } .btn-secondary { background-color: #6c757d; color: white; } .btn-secondary:hover { background-color: #545b62; transform: translateY(-1px); } .app-tags { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; } .tag { background-color: #e9ecef; color: #495057; padding: 4px 10px; border-radius: 15px; /* Pill shape */ font-size: 0.75em; } /* Responsive adjustments */ @media (max-width: 480px) { .app-box { margin: 10px; padding: 20px; } .app-name { font-size: 1.4em; } .app-icon { width: 60px; height: 60px; } .app-actions { flex-direction: column; /* Stack buttons on small screens */ } }