/* Google Play Dark Theme Mimicry */
:root {
    --bg-color: #202124;
    --text-color: #e8eaed;
    --secondary-text: #9aa0a6;
    --primary-green: #01875f;
    --card-bg: #303134;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header */
.gp-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

/* App Info Section */
.app-header {
    display: flex;
    padding: 0 20px;
    gap: 20px;
    margin-bottom: 20px;
}

.app-icon {
    width: 72px;
    height: 72px;
    border-radius: 15px;
    background-color: #000;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.app-meta h1 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.dev-name {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 500;
}

.ads-info {
    font-size: 12px;
    color: var(--secondary-text);
    margin-top: 5px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    border-bottom: 1px solid #3c4043;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: #3c4043;
}

.stat-item:last-child::after { display: none; }

.stat-val {
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--secondary-text);
}

/* Install Button */
.action-area {
    padding: 0 20px;
    margin-bottom: 30px;
}

.install-btn {
    width: 100%;
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.install-btn:active {
    background-color: #006c4c;
}

/* Screenshots */
.screenshots-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 25px;
    scrollbar-width: none; /* Firefox */
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screen-shot {
    min-width: 120px;
    height: 220px;
    background-color: var(--card-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--secondary-text);
}

/* Description */
.description {
    padding: 0 20px;
    line-height: 1.5;
    font-size: 14px;
    color: var(--text-color);
}

/* PWA App Page Specifics */
.pwa-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, #202124, #111);
}

.bonus-btn {
    background-color: #fdd835;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(253, 216, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}