* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f9fa;
}

.app-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
}

.app-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.app-icon img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

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

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

.app-stats {
    display: flex;
    gap: 16px;
    color: #5f6368;
    font-size: 14px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.install-btn {
    background-color: #018786;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 500;
}

.preview-btn {
    background-color: transparent;
    border: 1px solid #dadce0;
    padding: 12px;
    border-radius: 4px;
}

.share-section {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.share-btn, .wishlist-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #018786;
}

.screenshots {
    width: 100%;
    overflow-x: auto;
}

.screenshot-scroll {
    display: flex;
    gap: 16px;
    padding: 8px 0;
}

.screenshot-scroll img {
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
}

/* Tata letak responsif */
@media (max-width: 600px) {
    .app-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .app-stats {
        justify-content: center;
    }

    .screenshot-scroll img {
        height: 300px;
    }
}

/* Gaya deskripsi aplikasi */
.app-description {
    margin-top: 32px;
    padding: 24px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.app-description h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #202124;
}

.description-content {
    color: #5f6368;
    line-height: 1.5;
}

.features {
    margin-top: 16px;
}

.features h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #202124;
}

.features ul {
    padding-left: 20px;
}

.features li {
    margin-bottom: 8px;
}

/* Penyesuaian responsif */
@media (max-width: 600px) {
    .app-description {
        padding: 16px;
        margin-top: 24px;
    }
}

.button-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.button-link button {
    width: 100%;
    cursor: pointer;
}

.screenshots a {
    display: block;
    text-decoration: none;
}

.screenshots img {
    cursor: pointer;
}