body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    margin: 0;
}

.playstore-container {
    width: 100%;
    padding: 24px;
    box-sizing: border-box;
}

/* App Header */
.app-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #1f1f1f;
}

.developer-name {
    font-size: 16px;
    font-weight: 500;
    color: #00875f;
    margin: 4px 0;
}

.app-stats {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    color: #5f6368;
    font-size: 12px;
}

.stat-item {
    text-align: center;
}

.stat-item span {
    font-weight: 500;
    font-size: 14px;
}

.stat-item p {
    margin: 2px 0 0 0;
}

.age-rating-icon {
    height: 16px;
}


/* Action Buttons */
.action-buttons {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    background-color: #00875f;
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #006d4c;
}

.secondary-link {
    color: #00875f;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
    color: #5f6368;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.social-item svg {
    width: 20px;
    height: 20px;
    fill: #5f6368;
}

/* Screenshots */
.screenshots {
    margin-top: 24px;
}

.screenshot-image {
    width: 100%;
    border-radius: 8px;
}

/* Description */
.description {
    margin-top: 24px;
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
}

.description-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #1f1f1f;
}
.description-header span {
    font-size: 24px;
    color: #00875f;
}


.description-text {
    font-size: 14px;
    line-height: 1.5;
    color: #5f6368;
    margin-top: 8px;
}