* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
}

body {
    margin: 0;
    font-family: 'Roboto', 'Google Sans', sans-serif;
    background-color: #f1f1f1;
    color: rgba(0, 0, 0, 0.87);
    line-height: 1.5;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    background: #fff;
    padding: 8px 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.google-play-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.87);
}

.play-text {
    font-family: 'Google Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #5f6368;
    font-size: 0.875rem;
    padding: 8px 0;
    position: relative;
}

.nav-link.active {
    color: #202124;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #202124;
    border-radius: 3px 3px 0 0;
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

main {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.app-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.app-header {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
}

.app-title-section {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.app-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
}

.app-title-info {
    flex: 1;
}

.app-title-info h1 {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 8px 0;
    color: rgba(0, 0, 0, 0.87);
}

.app-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-number {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
}

.stars {
    display: flex;
    align-items: center;
    color: #fdd663;
}

.stars .material-icons {
    font-size: 18px;
}

.rating-count, .download-count {
    color: rgba(0, 0, 0, 0.54);
    font-size: 14px;
}

.category-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.category {
    color: rgb(95, 99, 104);
    font-size: 14px;
}

.info-icon {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.54);
}

.developer-info {
    margin: 16px 0;
}

.developer-name {
    color: rgb(95, 99, 104);
    text-decoration: none;
    font-size: 14px;
}

.developer-name:hover {
    color: #1a73e8;
}

.action-buttons {
    margin-top: 16px;
    width: 100%;
}

.install-button {
    background-color: rgb(0, 128, 86);
    color: white;
    border: none;
    border-radius: 28px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Google Sans', sans-serif;
    text-transform: none;
    height: 56px;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.install-button:hover {
    background-color: rgb(0, 110, 74);
}

.screenshots {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
}

.screenshots h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 16px 0;
    color: rgba(0, 0, 0, 0.87);
}

.screenshot-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.screenshot-container::-webkit-scrollbar {
    display: none;
}

.screenshot-container img {
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
}

.app-description {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
}

.app-description h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 16px 0;
    color: rgba(0, 0, 0, 0.87);
    display: flex;
    align-items: center;
    gap: 8px;
}

.description-content {
    color: rgba(0, 0, 0, 0.87);
    font-size: 14px;
    line-height: 1.5;
}

.reviews-section {
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    margin: 16px 0;
}

.XfZNbf {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.Te9Tpc {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 0;
    margin: 16px 0;
}

.Te9Tpc > div:last-child {
    flex: 1;
    max-width: 400px;
}

.jILTFe {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
}

.I26one {
    display: flex;
    gap: 4px;
}

.EHUI5b {
    color: #5f6368;
    margin-top: 4px;
}

.JzwBgb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
    height: 20px;
}

.Qjdn7d {
    width: 24px;
    text-align: right;
    color: #5f6368;
    font-size: 12px;
    min-width: 24px;
}

.RJfYGf {
    flex: 1;
    background: #e8eaed;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    min-width: 180px;
}

.RutFAf {
    background: rgb(0, 128, 86);
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/* Reviews */
.review-item {
    padding: 16px 0;
    border-bottom: 1px solid #dadce0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8eaed;
}

.reviewer-name {
    font-weight: 500;
    color: #202124;
}

.review-date {
    color: #5f6368;
    font-size: 14px;
}

.review-rating {
    display: flex;
    gap: 4px;
    margin: 4px 0;
}

.review-text {
    color: #202124;
    margin: 8px 0;
}

.review-helpful {
    color: #5f6368;
    font-size: 14px;
}

.star-icon {
    fill: #01875f;
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .app-container {
        padding: 0;
        margin: 0;
        gap: 8px;
    }

    .app-header,
    .screenshots,
    .app-description,
    .reviews-section {
        border-radius: 0;
        margin-bottom: 8px;
    }

    .app-title-section {
        gap: 16px;
    }

    .app-icon-large {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

    .app-title-info h1 {
        font-size: 20px;
    }

    .app-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .screenshot-container img {
        height: 300px;
    }

    .rating-summary {
        padding: 12px;
    }

    .rating-big {
        font-size: 32px;
        min-width: 60px;
    }

    .star-rating svg {
        width: 16px;
        height: 16px;
    }
}

.header-text {
    margin-left: 16px;
    color: #5f6368;
    font-size: 1.25rem;
}

.app-title-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.app-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 12px;
}

.app-title-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contains-ads {
    display: inline-block;
    color: rgba(0,0,0,.54);
    font-size: 0.75rem;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-top: 8px;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 20px;
    height: 20px;
    opacity: 0.54;
}

.category-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(0,0,0,.54);
    font-size: 0.875rem;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.google-material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

.stars .google-material-icons {
    color: #ffd700;
    font-size: 14px;
}

.category-badge .google-material-icons {
    font-size: 16px;
    opacity: 0.54;
}

.reviews-section {
    padding: 16px 12px;
}

.reviews-section h2 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: rgba(0,0,0,.87);
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews-section h2 .info-icon {
    color: rgba(0,0,0,.54);
    font-size: 18px;
}

.reviews-header {
    margin-bottom: 24px;
}

.rating-summary {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    align-items: flex-start;
}

.rating-big {
    font-size: 48px;
    line-height: 1.2;
    color: #202124;
    min-width: 80px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    margin-left: 16px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 20px;
}

.rating-bar-label {
    color: rgba(0, 0, 0, 0.54);
    font-size: 12px;
    min-width: 20px;
}

.rating-bar-track {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.rating-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #01875f;
    border-radius: 2px;
}

.rating-bar-count {
    color: rgba(0, 0, 0, 0.54);
    font-size: 12px;
    min-width: 48px;
}

.total-ratings {
    color: rgba(0, 0, 0, 0.54);
    font-size: 12px;
    margin-top: 8px;
}

.review-rating .stars .google-material-icons {
    color: #ffd700;
    font-size: 12px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    padding: 12px 0;
}

.review-header {
    gap: 8px;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-name {
    font-size: 0.875rem;
    color: rgba(0,0,0,.87);
}

.review-date {
    font-size: 0.75rem;
    color: rgba(0,0,0,.54);
}

.more-options {
    color: #5f6368;
    cursor: pointer;
}

.review-rating {
    margin-bottom: 8px;
}

.review-rating .stars {
    display: flex;
    gap: 4px;
}

.review-rating .stars .material-icons {
    font-size: 1rem;
    color: #ffd700;
}

.review-text {
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 8px 0;
}

.review-helpful {
    font-size: 0.75rem;
    color: rgba(0,0,0,.54);
}

@media (max-width: 412px) {
    header {
        padding: 8px;
    }

    .logo {
        gap: 24px;
    }

    .play-text {
        font-size: 1.125rem;
    }

    .nav-links {
        gap: 16px;
    }

    .app-stats {
        gap: 12px;
    }

    .category-badge {
        font-size: 0.75rem;
    }

    .download-button {
        font-size: 0.875rem;
        padding: 8px 16px;
    }

    .app-container {
        padding: 0;
    }

    .app-header {
        padding: 12px;
        display: block;
    }

    .app-title-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .app-icon-large {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

    .app-info {
        flex: 1;
    }

    .app-info h1 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .developer {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .app-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .screenshot-container {
        padding: 8px 12px;
        margin: 0 -12px;
    }

    .screenshot-container img {
        height: 240px;
    }

    .rating-summary {
        padding: 12px;
    }

    .rating-big {
        font-size: 32px;
        min-width: 60px;
    }

    .star-rating svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
    }
    
    .app-title-section {
        flex-direction: column;
    }
    
    .app-icon-large {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }
    
    .app-title-info h1 {
        font-size: 24px;
    }
    
    .app-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating svg {
    width: 24px;
    height: 24px;
    fill: #ffd700;
}

.star-rating .half-star {
    position: relative;
}

.half-star svg {
    position: absolute;
    left: 0;
}

.half-star svg:last-child {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    fill: #e6e6e6;
}

/* Google Play Store styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #202124;
    background-color: #fff;
}

.install-button {
    background-color: #01875f;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Google Sans', sans-serif;
    text-transform: none;
    height: 36px;
    min-width: 120px;
    transition: background-color 0.2s;
}

.install-button:hover {
    background-color: #017554;
}

.app-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

.app-header {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.app-info {
    flex: 1;
}

.app-title-section {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.app-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
}

.app-title-info {
    flex: 1;
}

.app-title-info h1 {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 8px;
    color: rgba(0, 0, 0, 0.87);
}

.app-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 12px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.87);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars .material-icons {
    font-size: 16px;
    color: #fdd663;
}

.rating-count {
    color: rgba(0, 0, 0, 0.54);
    font-size: 14px;
}

.download-count {
    color: rgba(0, 0, 0, 0.54);
    font-size: 14px;
}

.category-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.category {
    color: rgba(0, 0, 0, 0.54);
    font-size: 14px;
}

.info-icon {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.54);
}

.developer-info {
    margin-top: 8px;
}

.developer-name {
    color: rgb(1, 135, 95);
    text-decoration: none;
    font-size: 14px;
}

.developer-name:hover {
    text-decoration: underline;
}

.action-buttons {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
    }
    
    .app-title-section {
        flex-direction: column;
    }
    
    .app-icon-large {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }
    
    .app-title-info h1 {
        font-size: 24px;
    }
    
    .app-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Screenshots section */
.screenshots {
    margin-top: 24px;
}

.screenshots h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.screenshot-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.screenshot-container img {
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
}

/* Reviews section */
.reviews-section {
    margin-top: 24px;
}

.reviews-section h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-summary {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.rating-big {
    font-size: 48px;
    font-weight: 400;
    color: #202124;
}

.rating-bars {
    flex: 1;
    max-width: 400px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.rating-bar-label {
    min-width: 24px;
    text-align: right;
    color: #5f6368;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background-color: #e8eaed;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: #01875f;
}

.rating-bar-count {
    min-width: 48px;
    color: #5f6368;
    font-size: 12px;
}

.total-ratings {
    margin-top: 8px;
    color: #5f6368;
    font-size: 12px;
}

.Fd93Bb {
    padding-right: 16px;
}

.ynrBgc {
    display: flex;
    flex-direction: column;
}

.xwcR9d h1 {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    line-height: 36px;
    color: rgb(32, 33, 36);
    margin: 0;
    padding: 0;
}

.AfwdI {
    word-break: break-word;
}

.tv4jIf {
    margin-top: 4px;
}

.Vbfug {
    display: flex;
    align-items: center;
}

.auoIOc a {
    color: rgb(95, 99, 104);
    text-decoration: none;
    font-size: 14px;
}

.auoIOc a:hover {
    color: #1a73e8;
}

.w7Iutd {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}

.wVqUob {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ClM7O {
    display: flex;
    align-items: center;
    gap: 4px;
}

.TT9eCd {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    color: rgb(32, 33, 36);
}

.ERwvGb {
    color: #fdd663;
    font-size: 18px;
}

.g1rdde {
    color: rgb(95, 99, 104);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.J3Ldd svg {
    width: 20px;
    height: 20px;
}

.rXZODf {
    cursor: pointer;
}

.oUaal {
    font-size: 18px;
    color: rgb(95, 99, 104);
}

.T75of {
    height: 16px;
}

.MKV5ee {
    cursor: pointer;
}

@media (max-width: 600px) {
    .xwcR9d h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .w7Iutd {
        gap: 12px;
    }

    .TT9eCd {
        font-size: 14px;
    }

    .ERwvGb {
        font-size: 16px;
    }

    .g1rdde {
        font-size: 12px;
    }
} 