body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #202124;
}

.app-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.app-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.app-icon {
    width: 96px;
    height: 96px;
    border-radius: 20%;
    margin-right: 20px;
}

.app-details h1 {
    margin: 0;
    font-size: 28px;
}

.app-details .developer, .category {
    font-size: 14px;
    color: #5f6368;
}

.app-screenshots {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    margin: 20px 0;
}

.app-screenshots img {
    width: 240px;
    height: 426px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.app-description {
    margin-bottom: 20px;
}

.app-description h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.download-button {
    display: inline-block;
    background-color: #1a73e8;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #0f62c3;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #eaf4ff 0%, #f5f9ff 100%);
    color: #202124;
    overflow-x: hidden; /* ✅ Prevent horizontal scroll */
}

.app-container {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 30px auto;
}
.release-date {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
}
