body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto;
    margin: 0;
    padding: 16px;
    background: #fff;
}

.header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.app-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
}

.app-info h1 {
    margin: 0;
    font-size: 24px;
}

.developer {
    color: #018786;
    font-size: 14px;
}

.verified {
    color: #5f6368;
    font-size: 14px;
}

.stats {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 24px 0;
}

.stat-item {
    text-align: center;
}

.rating {
    font-size: 24px;
    font-weight: bold;
}

.install-btn {
    background: #018786;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    margin: 16px 0;
    cursor: pointer;
}

.screenshots {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin: 24px 0;
    -webkit-overflow-scrolling: touch;
}

.screenshot {
    height: 400px;
    border-radius: 12px;
    flex-shrink: 0;
}

.about {
    margin: 24px 0;
}
