body {
    background-color: #fdfdfd;
    color: #212529;
}

/* Hero */
.hero {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
    text-align: center;
}

.hero img.app-icon {
    width: 126px;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 760px;
    margin: 0.75rem auto 0;
}

/* Main content */
.content {
    max-width: 900px;
    margin: auto;
    padding: 3rem 1rem;
}

.app-rating {
    font-size: 1rem;
    color: #f5b301;
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.app-rating .score {
    color: #212529;
    font-weight: 600;
}

.app-rating .review-count {
    font-size: 0.95rem;
    color: #6c757d;
}

.stars {
    display: inline-block;
    font-size: 1.5rem;
    font-family: Arial, sans-serif;
    line-height: 1;
    color: #e4e5e9;
}

.stars span {
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.stars.stars-46 span {
    background-image: linear-gradient(90deg, #f5b301 0%, #f5b301 92%, #e4e5e9 92%);
}

.stars.stars-44 span {
    background-image: linear-gradient(90deg, #f5b301 0%, #f5b301 88%, #e4e5e9 88%);
}

.stars.stars-45 span {
    background-image: linear-gradient(90deg, #f5b301 0%, #f5b301 90%, #e4e5e9 90%);
}

.quote {
    font-style: italic;
    background: #f1f3f5;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.screenshots img {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 1.5rem;
}

.cta-box {
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p.hero-subtitle {
        font-size: 1rem;
    }

    .content {
        padding: 2.2rem 1rem;
    }
}