/* --- App-Specific UI (Play Store Aesthetic) --- */

/* Hero Section */
.app-header-section {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    align-items: flex-start;
}

.app-main-icon {
    width: 160px;
    height: 160px;
    border-radius: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

.app-info h1 {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #202124;
}

.developer-name {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
}

/* Stats Bar */
.app-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-weight: 500;
    font-size: 14px;
    color: #202124;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-install {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 48px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-install:hover {
    background-color: var(--primary-dark);
}

.btn-share {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
}

/* Screenshots */
.app-screenshots {
    margin: 20px 0 40px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}

.app-screenshots::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.screenshot-track img {
    height: 400px;
    border-radius: 8px;
    margin-right: 12px;
    border: 1px solid var(--border-color);
}

/* Download Page Specifics */
.download-page {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.download-card {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.app-identity-mini {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mini-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
}

.download-status-box {
    background: #f1f3f4;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #dadce0;
    border-radius: 4px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.5s linear;
}

.hidden { display: none; }

.btn-download-main {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 10px;
}

.guide-steps {
    margin-top: 20px;
}

.step {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: bold;
}

/* Security Info */
.security-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #01875f;
}