/* ==========================================
   GOOGLE PLAY STORE — PIXEL-PERFECT CSS
   ========================================== */

/* --- Design Tokens (exact Google Play values) --- */
:root {
    --gp-green: #01875f;
    --gp-green-hover: #016f4e;
    --gp-green-light: #e6f4ed;
    --gp-text-primary: #202124;
    --gp-text-secondary: #5f6368;
    --gp-text-tertiary: #80868b;
    --gp-link: #01875f;
    --gp-bg: #ffffff;
    --gp-surface: #f1f3f4;
    --gp-border: #dadce0;
    --gp-divider: #e8eaed;
    --gp-star: #e8710a;
    --gp-bar-fill: #01875f;
    --gp-bar-track: #e8eaed;
    --header-height: 64px;
    --container-max: 1280px;
    --font-main: 'Roboto', Arial, Helvetica, sans-serif;
    --font-display: 'Google Sans', 'Roboto', Arial, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    color: var(--gp-text-primary);
    background: var(--gp-bg);
    line-height: 1.5;
    font-size: 14px;
}

a {
    color: var(--gp-link);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ==========================================
   HEADER — exact Google Play
   ========================================== */
.gp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--gp-bg);
    border-bottom: 1px solid var(--gp-border);
    height: var(--header-height);
}

.gp-header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 56px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gp-header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.gp-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.gp-logo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.gp-logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--gp-text-secondary);
    letter-spacing: 0px;
}

.gp-nav {
    display: flex;
    gap: 0;
    height: var(--header-height);
    align-items: stretch;
}

.gp-nav-item {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-text-secondary);
    text-decoration: none !important;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s;
}
.gp-nav-item:hover {
    color: var(--gp-text-primary);
}
.gp-nav-item.active {
    color: var(--gp-green);
    border-bottom-color: var(--gp-green);
}

.gp-header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gp-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gp-text-secondary);
    transition: background 0.15s;
}
.gp-icon-btn:hover {
    background: var(--gp-surface);
}

.gp-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background: #7b1fa2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}
.gp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   MAIN / CONTAINER
   ========================================== */
.gp-main {
    padding: 40px 0 0;
}

.gp-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 56px;
}

/* ==========================================
   APP HERO SECTION
   ========================================== */
.app-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 48px;
}

.app-hero-left {
    flex: 1;
    min-width: 0;
}

.app-hero-right {
    flex-shrink: 0;
    padding-top: 8px;
}

.app-icon-large {
    width: 240px;
    height: 240px;
    border-radius: 28%;
    object-fit: cover;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.app-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--gp-text-primary);
    margin-bottom: 12px;
    letter-spacing: 0px;
}

.app-developer {
    margin-bottom: 16px;
}

.dev-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-link);
    text-decoration: none;
}
.dev-name:hover {
    text-decoration: underline;
}

.dev-subtitle {
    display: block;
    font-size: 12px;
    color: var(--gp-text-secondary);
    margin-top: 2px;
}

/* Stats Row — exact match */
.app-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}
.stat-item:first-child {
    padding-left: 0;
}

.stat-main {
    font-size: 16px;
    font-weight: 600;
    color: var(--gp-text-primary);
    display: flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
}
.stat-main .fa-star {
    font-size: 12px;
}

.stat-sub {
    font-size: 12px;
    color: var(--gp-text-secondary);
    margin-top: 4px;
    white-space: nowrap;
}

.stat-sep {
    width: 1px;
    height: 24px;
    background: var(--gp-border);
    flex-shrink: 0;
}

/* Action Buttons — exact Play Store */
.app-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-install {
    height: 44px;
    padding: 0 32px;
    background: var(--gp-green);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    position: relative;
    min-width: 148px;
    letter-spacing: 0.25px;
}
.btn-install:hover {
    background: var(--gp-green-hover);
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.install-progress {
    display: none;
    align-items: center;
    gap: 12px;
    width: 160px;
}
.install-progress-bar {
    flex: 1;
    height: 4px;
    background: var(--gp-bar-track);
    border-radius: 2px;
    overflow: hidden;
}
.install-progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--pct, 0%);
    background: var(--gp-green);
    border-radius: 2px;
    transition: width 0.15s;
}
.install-progress-text {
    font-size: 12px;
    color: var(--gp-text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* Share & Wishlist — NO border, plain text button */
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0;
    color: var(--gp-green);
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: none;
    border-radius: 0;
    transition: opacity 0.15s;
}
.btn-action:hover {
    opacity: 0.8;
}
.btn-action i {
    font-size: 18px;
}

.btn-action.wishlisted {
    color: var(--gp-green);
}

/* Device compatibility line */
.app-compat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--gp-text-secondary);
}
.app-compat i {
    font-size: 18px;
    color: var(--gp-text-secondary);
}

/* ==========================================
   CONTENT GRID (LEFT main + RIGHT sidebar)
   ========================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 72px;
    align-items: start;
}

.content-left {
    min-width: 0;
}

.content-right {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}

/* ==========================================
   SCREENSHOTS CAROUSEL — exact proportions
   ========================================== */
.screenshots-section {
    margin-bottom: 0;
    padding-bottom: 32px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}

.screenshot-slide {
    flex: 0 0 auto;
    width: 156px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    transition: transform 0.15s;
    cursor: pointer;
}
.screenshot-slide:hover {
    transform: translateY(-2px);
}
.screenshot-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--gp-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
    font-size: 13px;
    transition: background 0.15s;
}
.carousel-btn:hover {
    background: var(--gp-surface);
}
.carousel-prev {
    left: -18px;
}
.carousel-next {
    right: -18px;
}

/* ==========================================
   SECTION BLOCKS (About, Data Safety, Reviews)
   ========================================== */
.section-block {
    padding: 28px 0;
    border-top: 1px solid var(--gp-divider);
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.section-title-row h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--gp-text-primary);
    letter-spacing: 0.1px;
}

.section-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gp-text-secondary);
    font-size: 13px;
    text-decoration: none !important;
    transition: background 0.15s;
}
.section-arrow:hover {
    background: var(--gp-surface);
}

/* ===== About this app ===== */
.about-body {
    max-width: 640px;
}
.about-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gp-text-secondary);
    margin-bottom: 10px;
}

.about-meta {
    margin-top: 28px;
    margin-bottom: 14px;
}

.meta-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.meta-label {
    font-size: 12px;
    color: var(--gp-text-secondary);
    font-weight: 500;
}
.meta-value {
    font-size: 14px;
    color: var(--gp-text-primary);
}

.category-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.category-chip {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    font-size: 12px;
    color: var(--gp-text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}
.category-chip:hover {
    background: var(--gp-surface);
}

/* ===== Data Safety ===== */
.data-safety-intro {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gp-text-secondary);
    margin-bottom: 20px;
    max-width: 640px;
}

.data-safety-cards {
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.ds-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gp-divider);
}
.ds-card:last-child {
    border-bottom: none;
}

.ds-icon {
    flex-shrink: 0;
    width: 20px;
    font-size: 18px;
    color: var(--gp-text-secondary);
    margin-top: 1px;
    text-align: center;
}

.ds-text {
    font-size: 14px;
    color: var(--gp-text-primary);
    line-height: 1.5;
}
.ds-text strong {
    display: block;
    font-weight: 400;
    color: var(--gp-text-primary);
}
.ds-text a {
    font-size: 12px;
    text-decoration: underline;
    color: var(--gp-link);
}
.ds-text span {
    display: block;
    font-size: 12px;
    color: var(--gp-text-secondary);
    margin-top: 2px;
}

.see-details-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-link);
}

/* ==========================================
   RATINGS AND REVIEWS
   ========================================== */
.reviews-title-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verified-text {
    font-size: 12px;
    color: var(--gp-text-tertiary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.verified-text i {
    font-size: 13px;
    cursor: pointer;
}

.device-chip-row {
    margin-bottom: 20px;
}

.device-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--gp-border);
    color: var(--gp-text-primary);
    background: transparent;
}
.device-chip.active {
    background: var(--gp-green-light);
    color: var(--gp-green);
    border-color: transparent;
}
.device-chip i {
    font-size: 14px;
}

/* Rating overview — exact proportions */
.rating-overview {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.rating-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

.rating-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    color: var(--gp-text-primary);
}

.rating-stars-row {
    display: flex;
    gap: 1px;
    color: var(--gp-star);
    font-size: 14px;
    margin: 8px 0 4px;
}

.rating-count {
    font-size: 12px;
    color: var(--gp-text-secondary);
}

.rating-bars {
    flex: 1;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 6px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 14px;
}
.bar-row > span {
    font-size: 12px;
    color: var(--gp-text-secondary);
    width: 8px;
    text-align: right;
    flex-shrink: 0;
}

.bar-track {
    flex: 1;
    height: 10px;
    background: var(--gp-bar-track);
    border-radius: 5px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gp-bar-fill);
    border-radius: 5px;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
}

.review-card {
    padding: 16px 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #5f6368;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 400;
    color: var(--gp-text-primary);
    flex: 1;
}

.review-menu {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gp-text-secondary);
    font-size: 16px;
    transition: background 0.15s;
}
.review-menu:hover {
    background: var(--gp-surface);
}

.review-rating-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.review-stars {
    display: flex;
    gap: 0;
    color: var(--gp-star);
    font-size: 11px;
}
.review-stars i {
    margin-right: 1px;
}

.review-date {
    font-size: 12px;
    color: var(--gp-text-secondary);
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gp-text-primary);
    margin-bottom: 12px;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gp-text-secondary);
}

.helpful-btn {
    padding: 5px 20px;
    border: 1px solid var(--gp-border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--gp-text-secondary);
    font-weight: 400;
    transition: background 0.15s;
}
.helpful-btn:hover {
    background: var(--gp-surface);
}

.see-all-reviews {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-link);
}

/* Flag section */
.flag-section {
    border-top: 1px solid var(--gp-divider);
    padding: 20px 0;
}

.flag-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gp-text-primary);
    cursor: pointer;
    padding: 4px 0;
}
.flag-row i {
    font-size: 20px;
    color: var(--gp-text-secondary);
}

/* ==========================================
   RIGHT SIDEBAR
   ========================================== */
.rated-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    margin-bottom: 28px;
}

.rated-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--gp-text-primary);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rated-age {
    font-size: 11px;
    font-weight: 700;
    color: var(--gp-text-primary);
    line-height: 1;
}

.rated-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.rated-text strong {
    font-size: 14px;
    font-weight: 500;
    color: var(--gp-text-primary);
}
.rated-text a {
    font-size: 12px;
    color: var(--gp-link);
}

/* Sidebar sections */
.sidebar-section {
    margin-bottom: 20px;
}

.sidebar-section .section-title-row {
    margin-bottom: 10px;
}
.sidebar-section .section-title-row h2 {
    font-size: 22px;
}

.sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    color: var(--gp-text-primary);
    border-top: 1px solid var(--gp-divider);
    user-select: none;
}
.sidebar-toggle i {
    font-size: 12px;
    color: var(--gp-text-secondary);
    transition: transform 0.2s;
}

.sidebar-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.sidebar-body.open {
    max-height: 200px;
    padding-bottom: 8px;
}

.support-link {
    font-size: 15px;
    color: var(--gp-text-secondary);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}
.support-link:hover {
    color: var(--gp-link);
}
.support-link i {
    width: 18px;
    text-align: center;
    font-size: 15px;
}

/* Similar apps */
.similar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.similar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    text-decoration: none !important;
    transition: opacity 0.15s;
}
.similar-item:hover {
    opacity: 0.85;
}

.similar-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.similar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0;
}

.similar-name {
    font-size: 16px;
    font-weight: 400;
    color: var(--gp-text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
}

.similar-dev {
    font-size: 13px;
    color: var(--gp-text-secondary);
    line-height: 1.4;
}

.similar-rating {
    font-size: 13px;
    color: var(--gp-text-secondary);
    display: flex;
    align-items: center;
    gap: 2px;
    line-height: 1.4;
}
.similar-rating .fa-star {
    font-size: 9px;
}

/* ==========================================
   FOOTER — exact Google Play
   ========================================== */
.gp-footer {
    margin-top: 48px;
    border-top: 1px solid var(--gp-divider);
    padding: 36px 0 28px;
}

.footer-columns {
    display: flex;
    gap: 100px;
    margin-bottom: 36px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-col h3 {
    font-size: 13px;
    font-weight: 500;
    color: var(--gp-text-primary);
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 13px;
    color: var(--gp-text-secondary);
    text-decoration: none !important;
    line-height: 1.6;
}
.footer-col a:hover {
    color: var(--gp-text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--gp-divider);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-links a,
.footer-links span {
    font-size: 12px;
    color: var(--gp-text-secondary);
    text-decoration: none !important;
}
.footer-links a:hover {
    color: var(--gp-text-primary);
}

.footer-locale {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gp-text-secondary);
}
.flag-icon {
    font-size: 16px;
}

/* ==========================================
   TOAST
   ========================================== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #323232;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    white-space: nowrap;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .content-right {
        position: static;
    }
    .app-hero {
        gap: 24px;
    }
    .app-icon-large {
        width: 140px;
        height: 140px;
    }
    .app-title {
        font-size: 36px;
    }
    .gp-header-inner,
    .gp-container {
        padding: 0 24px;
    }
    .footer-columns {
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .gp-nav {
        display: none;
    }
    .app-hero {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .app-icon-large {
        width: 80px;
        height: 80px;
    }
    .app-title {
        font-size: 26px;
    }
    .app-actions {
        gap: 16px;
    }
    .rating-overview {
        flex-direction: column;
    }
    .footer-columns {
        flex-direction: column;
        gap: 28px;
    }
}
