/* CSS Variables */
:root {
    --color-base-bk: #fff;
    --color-base: #1f1f1f;
    --color-gray: #444746;
    --color-gray-border: #c4c7c5;
    --color-gray-back: #f2f2f2;
    --color-gray-star: #e3e3e3;
    --color-blue: #0b57d0;
    --color-bk-menu: #f0f4f9;
    --color-green: #01875f;
    --color-btn-blue: #fff;
    --color-btn-gray: #aaabab;
    --color-btn-gray-bk: #e8e8e8;
}

/* Reset & Base */
*, *:before, *:after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #202124;
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
    padding: 0;
}

button, input, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Fonts */
@font-face {
    font-family: 'Google Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/static/fonts/GoogleSans-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Google Sans';
    font-style: normal;
    font-weight: 500;
    src: url('/static/fonts/GoogleSans-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('/static/fonts/Roboto-Regular.woff2') format('woff2');
}

/* Component */
.component {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.component__inner {
    max-width: 450px;
    height: 100vh;
    overflow-y: auto;
    padding: 58px 0 64px;
    margin: 0 auto;
    background: #fff;
}

/* Top Navigation Bar */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 450px;
    margin: 0 auto;
    height: 56px;
    background: #fff;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    transition: transform 0.3s ease-in-out;
}

.top-nav--hidden {
    transform: translateY(-100%);
}

.top-nav__back,
.top-nav__menu {
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav__back svg {
    transform: rotate(180deg);
}

.top-nav__back:active,
.top-nav__menu:active {
    opacity: 0.6;
}

section {
    padding: 0 15px;
}

/* Info Section */
.info {
    margin: 15px 0 0;
}

.info__main {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.info__img {
    width: 72px;
    height: 72px;
    margin-top: 3px;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    flex-shrink: 0;
}

.info__text-block {
    display: flex;
    flex-direction: column;
    cursor: default;
}

.info__name {
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    line-height: 2rem;
    font-size: 1.5rem;
    letter-spacing: 0;
    font-weight: 500;
    align-items: flex-end;
    display: flex;
    overflow-wrap: anywhere;
    width: 100%;
    word-break: keep-all;
    color: #202214;
}

.info__name span:first-child {
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    line-height: 2rem;
    font-size: 1.5rem;
    letter-spacing: 0;
    font-weight: 500;
    color: #202214;
}

.info__verified-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 0 5px 7px;
    vertical-align: middle;
    background: url("/static/admin/img/google-verify-badge.svg") no-repeat center;
    background-size: contain;
    visibility: hidden;
}

.info__verified-icon--visible {
    visibility: visible;
}

.info__dev {
    margin-top: 5px;
    color: #0b57d0;
    fill: #0b57d0;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: .00625em;
    font-weight: 500;
}

.info__additional {
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-family: Roboto, Arial, sans-serif;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
}

.info__additional span {
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-family: Roboto, Arial, sans-serif;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
}

.info__additional span:nth-child(2) {
    margin-left: 5px;
}

.info__additional span:nth-child(2):before {
    content: "•";
    margin-right: 5px;
}

.info__numbers {
    margin-top: 20px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.info__numbers::-webkit-scrollbar {
    display: none;
}

.info__numbers-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

.info__numbers-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    min-width: 110px;
    padding: 0 12px;
    gap: 0;
    min-height: 48px;
}

.info__numbers-item:after {
    background-color: #e8eaed;
    content: "";
    display: block;
    height: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}

.info__numbers-item:last-child:after {
    display: none;
}

.info__numbers-item span:nth-child(1) {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    line-height: 1.25rem;
    font-size: .875rem;
    letter-spacing: .0178571429em;
    font-weight: 500;
    height: 24px;
    justify-content: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.info__numbers-item span:nth-child(2) {
    margin-top: 2px;
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-family: Roboto, Arial, sans-serif;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
    align-items: center;
    display: flex;
    height: 20px;
    justify-content: center;
    white-space: nowrap;
}

.info__numbers-item div span:nth-child(1) {
    margin-top: 2px;
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-family: Roboto, Arial, sans-serif;
    line-height: 1rem;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
    align-items: center;
    display: flex;
    height: 20px;
    justify-content: center;
    white-space: nowrap;
}

/* Override styles for reviews/rating items */
.rating-value-wrapper {
    display: block !important;
    height: 24px !important;
    line-height: 24px !important;
}

.rating-value-wrapper span {
    color: #202124 !important;
    fill: #202124 !important;
    stop-color: #202124 !important;
    font-family: "Google Sans", Roboto, Arial, sans-serif !important;
    font-size: .875rem !important;
    letter-spacing: .0178571429em !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    display: inline !important;
    vertical-align: baseline !important;
}

.rating-star-icon {
    width: 14px;
    height: 14px;
    display: inline-block !important;
    vertical-align: baseline !important;
    margin-left: 1px;
    margin-bottom: 0 !important;
}

.info-label-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    vertical-align: middle !important;
    line-height: 1rem !important;
}

.info-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0.6;
    vertical-align: middle;
    transform: translateY(0.5px);
}

.info__numbers-item svg {
    margin-bottom: 5px;
}

.info__numbers-item .pegi-icon {
    margin-bottom: 5px;
}

.info__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 36px;
    min-height: 36px;
    min-width: 160px;
    margin: 6px 0;
    border-radius: 100px;
    border: none;
    background: var(--color-blue);
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.25rem;
    letter-spacing: .0178571429em;
    font-weight: 500;
    color: var(--color-btn-blue);
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.info__button:focus,
.info__button:focus-visible {
    outline: none;
    box-shadow: none;
}

.info__button:active {
    opacity: 0.8;
}

.info__button:disabled {
    background: #dcd6e7;
    color: #5f6368;
}

.info__install {
    position: relative;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Roboto;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

/* Description Section */
.description {
    margin-top: 20px;
}

.description__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.description__title {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    line-height: 1.5rem;
    font-size: 1.125rem;
    letter-spacing: 0;
    font-weight: 500;
    display: flex;
}

.description__more-button {
    width: 44px;
    height: 44px;
    padding: 15px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3e%3cpath fill='%235F6368' d='M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.description__more-button:hover {
    background-color: #f4f2f7;
}

.description__text {
    margin-top: 15px;
    white-space: pre-line;
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

.description__text--truncated {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.description__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.description__tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    background-color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #5f6368;
    white-space: nowrap;
}

.description__updated {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.description__updated span:nth-child(1) {
    text-align: left;
    font-family: 'Google Sans';
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #202124;
}

.description__updated span:nth-child(2) {
    margin-top: 5px;
    text-align: left;
    font-family: 'Google Sans';
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

/* What's New Section */
.whats-new {
    margin-top: 20px;
}

.whats-new__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whats-new__title {
    font-family: 'Google Sans';
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #202124;
}

.whats-new__text {
    margin-top: 15px;
    white-space: pre-wrap;
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

/* Safety Section */
.safety {
    margin-top: 25px;
}

.safety__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.safety__title {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    line-height: 1.5rem;
    font-size: 1.125rem;
    letter-spacing: 0;
    font-weight: 500;
    display: flex;
}

.safety__more-button {
    width: 44px;
    height: 44px;
    padding: 15px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3e%3cpath fill='%235F6368' d='M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.safety__more-button:hover {
    background-color: #f4f2f7;
}

.safety__text {
    margin-top: 15px;
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .0142857143em;
    line-height: 1.25rem;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.XGHsbd {
    border-radius: 8px;
    border: 1px solid #dadce0;
    margin-top: 30px;
    padding: 20px 20px 0;
}

.wGcURe {
    align-items: flex-start;
    display: flex;
    padding-bottom: 20px;
}

.T75of.whEyae {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 16px;
}

.wGcURe > div {
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .0142857143em;
    line-height: 1.25rem;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.jECfAf {
    margin-top: 8px;
    color: #5f6368;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    letter-spacing: .025em;
    font-weight: 400;
}

.jECfAf-link {
    text-decoration: underline;
}

.u4ICaf {
    padding-bottom: 20px;
    width: 100%;
}

.VfPpkd-LgbsSe {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 36px;
}

.VfPpkd-vQzf8d {
    font-family: 'Google Sans';
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #0b57d0;
    text-transform: none;
    letter-spacing: 0;
}

.VfPpkd-vQzf8d div {
    color: #0b57d0;
}

/* Additional Google Play styles */
.SfzRHd {
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .0142857143em;
    line-height: 1.25rem;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.tU8Y5c {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
}

.NlS5xc:not(:disabled), .dzkqwc:not(:disabled), .tU8Y5c:not(:disabled) {
    color: #202124;
}

.SfzRHd:not(:disabled), .VMq4uf .W7A5Qb:not(:disabled), .aJ3edd:not(:disabled) {
    color: #5f6368;
}

/* Similar games Section */
.similar-games {
    margin-top: 20px;
    padding: 0;
    margin-left: 1px;
}

.similar-games__container {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.similar-games__scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.similar-games__scroll::-webkit-scrollbar {
    display: none;
}

.similar-game {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.similar-game__img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    object-fit: cover;
}

.similar-game__name {
    font-family: Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #202124;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.similar-game__rating {
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #5f6368;
}

/* Refund policy Section */
.refund-policy {
    margin-top: 25px;
    padding: 0;
    margin-left: 1px;
}

.refund-policy__header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.refund-policy__header svg {
    flex-shrink: 0;
}

.refund-policy__title {
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .0142857143em;
    line-height: 1.25rem;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.refund-policy__text {
    margin-top: 15px;
    margin-bottom: 16px;
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

/* Reviews Section */
.reviews {
    margin-top: 20px;
}

.reviews__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews__title {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    font-family: "Google Sans", Roboto, Arial, sans-serif;
    line-height: 1.5rem;
    font-size: 1.125rem;
    letter-spacing: 0;
    font-weight: 500;
    display: flex;
}

.reviews__more-button {
    width: 44px;
    height: 44px;
    padding: 15px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3e%3cpath fill='%235F6368' d='M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.reviews__more-button:hover {
    background-color: #f4f2f7;
}

.reviews__more-button--down {
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24'%3e%3cpath fill='%235F6368' d='M12 8l-6 6 1.4 1.4 4.6-4.6 4.6 4.6L18 14z'%3e%3c/path%3e%3cpath d='M0 0h24v24H0z' fill='none'%3e%3c/path%3e%3c/svg%3e") !important;
    pointer-events: none;
}

.reviews__disclaimer {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: .75rem;
    letter-spacing: .025em;
    font-weight: 400;
    line-height: 1rem;
    text-transform: none;
    color: #5f6368;
}

.reviews__ratings,
.reviews__comments {
    margin-top: 25px;
}

.reviews__see-all {
    width: 100%;
    margin: 16px 0 25px 0;
    padding: 10px 0;
    border-radius: 6px;
    border: none;
    background: transparent;
    font-family: 'Google Sans';
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #0b57d0;
    cursor: pointer;
    text-align: left;
}

.reviews__see-all--hidden {
    display: none;
}

.reviews__footer {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e8eaed;
}

.reviews__footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reviews__footer-title {
    font-family: 'Google Sans';
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    color: #5f6368;
    margin-bottom: 10px;
}

.reviews__footer-link {
    font-family: 'Google Sans';
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
    text-decoration: none;
    margin-top: 10px;
}

.reviews__footer-link:hover {
    text-decoration: underline;
}

.reviews__footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding-bottom: 30px;
}

.reviews__footer-bottom-link {
    font-family: 'Google Sans';
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #5f6368;
    text-decoration: none;
}

.reviews__footer-bottom-link:hover {
    text-decoration: underline;
}

.reviews__footer-vat {
    font-family: 'Google Sans';
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #5f6368;
}

/* Rating */
.P4w39d {
    display: flex;
    padding-top: 24px;
}

.rating {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
}

.rating__left-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.rating__number {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    font-family: "Google Sans Display", Roboto, Arial, sans-serif;
    line-height: 4rem;
    font-size: 3.5rem;
    letter-spacing: 0;
    font-weight: 400;
}

.rating__quantity {
    display: flex;
    gap: 2px;
    margin-top: 8px;
    font-family: Roboto;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #5f6368;
}

.rating__quantity:first-of-type span {
    color: #0b57d0;
}

/* Google Play rating stars */
.Z1Dz7b {
    fill: #0b57d0;
    stop-color: #0b57d0;
}

.Z1Dz7b svg {
    fill: #0b57d0;
}

.Te9Tpc {
    display: flex;
    flex-direction: column;
}

.jILTFe {
    margin-bottom: 8px;
}

.jILTFe div {
    color: #202124;
    fill: #202124;
    stop-color: #202124;
    font-family: "Google Sans Display", Roboto, Arial, sans-serif;
    line-height: 4rem;
    font-size: 3.5rem;
    letter-spacing: 0;
    font-weight: 400;
}

.I26one {
    display: flex;
    margin-bottom: 8px;
}

.deXnLd {
    display: inline-block;
}

.EHUI5b {
    color: #5f6368;
    fill: #5f6368;
    stop-color: #5f6368;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    letter-spacing: .025em;
    font-weight: 400;
}

.JzwBgb {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.Qjdn7d {
    color: #5f6368;
    font-family: Roboto, Arial, sans-serif;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 400;
    width: 20px;
    text-align: right;
    margin-right: 8px;
}

.RJfYGf {
    flex: 1;
    height: 8px;
    background-color: #e8eaed;
    border-radius: 4px;
    overflow: hidden;
}

.RutFAf.wcB8se {
    height: 100%;
    background-color: #0b57d0;
    border-radius: 4px;
}

.rating__right-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
}

.rating__scale-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 6px;
}

.rating__scale-row:last-child {
    margin-bottom: 0;
}

.rating__scale-row span {
    font-family: Roboto;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #5f6368;
    width: 12px;
    text-align: right;
}

.rating__percentage-line {
    position: relative;
    flex: 1;
    height: 10px;
    background: #e8eaed;
    border-radius: 4px;
}

.rating__percentage-line:after {
    position: absolute;
    content: "";
    display: block;
    background: #0b57d0;
    border-radius: 4px;
    top: 0;
    height: 10px;
    width: var(--bar-width, 0%);
}

.rating__percentage-line--ltr:after {
    left: 0;
}

.rating__percentage-line--90:after {
    width: 90%;
}

.rating__percentage-line--6:after {
    width: 6%;
}

.rating__percentage-line--2:after {
    width: 2%;
}

.rating__percentage-line--1:after {
    width: 1%;
}

/* Comment */
.comment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 16px 0;
}

.comment--hidden {
    display: none;
}

.comment__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.comment__avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.comment__avatar span {
    text-transform: uppercase;
    color: #fff;
    cursor: default;
}

.comment__avatar--green {
    background-color: #c7ceb5;
}

.comment__avatar--blue {
    background-color: #a8c7e7;
}

.comment__avatar--purple {
    background-color: #d4c5e2;
}

.comment__avatar--orange {
    background-color: #f5d5a8;
}

.comment__name {
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #202124;
}

.comment__rating {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 7px;
}

.comment__stars {
    color: #0b57d0;
}

.comment__date {
    font-family: Roboto;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

.comment__text {
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

.comment__likes {
    position: relative;
    padding-left: 0;
    font-family: Roboto;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

.comment__helpful {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.comment__helpful-text {
    font-family: Roboto;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #5f6368;
}

.comment__helpful-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.comment__helpful-button {
    width: 55px;
    padding: 6px 0;
    border-radius: 8px;
    border: 1px solid #dcd6e7;
    background: #fff;
    cursor: pointer;
    font-family: 'Google Sans';
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    color: #5f6368;
}

.comment__helpful-button:hover {
    background-color: #f4f2f7;
}

.comment__helpful-button:focus {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

/* Screenshots Section */
.screenshots {
    width: 100%;
    margin: 0;
    padding: 0 0 0 16px;
    background-color: #ffffff;
}

.screenshots__container {
    width: 100%;
    overflow: hidden;
}

.screenshots__scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 16px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screenshots__scroll::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex-shrink: 0;
    cursor: pointer;
    scroll-snap-align: start;
}

.screenshot-item:first-child {
    margin-left: 0;
}

.screenshot-item:last-child {
    margin-right: 16px;
}

.screenshot-item:not(:last-child) {
    margin-right: 10px;
}

/* Vertical screenshots (9:16 portrait) */
.screenshot-item.vertical img,
.screenshot-item img {
    width: 92px;
    height: auto;
    min-height: 150px;
    max-height: 204px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}

/* Horizontal screenshots (16:9 landscape) */
.screenshot-item.horizontal {
    scroll-snap-align: center;
}

.screenshot-item.horizontal img {
    width: calc(100vw - 60px);  /* Almost full width, leaving space for next image peek */
    max-width: 500px;
    height: auto;
    min-height: 180px;
    max-height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

/* Screenshot Modal */
.screenshot-modal {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
}

.screenshot-modal.active {
    display: flex;
}

.screenshot-modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.screenshot-modal__img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.screenshot-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24'%20viewBox='0%20-960%20960%20960'%20width='24'%3e%3cpath%20fill='%235F6368'%20d='m256-200-56-56%20224-224-224-224%2056-56%20224%20224%20224-224%2056%2056-224%20224%20224%20224-56%2056-224-224-224%20224Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}

.screenshot-modal__close:hover {
    background-color: #f4f2f7;
}

.screenshot-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}

.screenshot-modal__nav:hover {
    background-color: #f4f2f7;
}

.screenshot-modal__nav--prev {
    left: 20px;
    background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24'%20viewBox='0%20-960%20960%20960'%20width='24'%3e%3cpath%20fill='%235F6368'%20d='M560-240%20320-480l240-240%2056%2056-184%20184%20184%20184-56%2056Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}

.screenshot-modal__nav--next {
    right: 20px;
    background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24'%20viewBox='0%20-960%20960%20960'%20width='24'%3e%3cpath%20fill='%235F6368'%20d='M504-480%20320-664l56-56%20240%20240-240%20240-56-56%20184-184Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}

/* Utility classes for no inline styles */
body.modal-open {
    overflow: hidden;
}

.helpful-button--clicked {
    background-color: #e8f5e9 !important;
    border-color: #00875a !important;
}

/* Description Modal */
.description-modal {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.description-modal.active {
    display: block;
}

.description-modal__wrapper {
    position: relative;
    height: 100%;
}

.description-modal__content {
    width: 90%;
    height: 600px;
    position: sticky;
    top: 50px;
    left: 0;
    margin: auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    overflow-y: auto;
}

.description-modal__content::-webkit-scrollbar {
    width: 0;
}

.description-modal__content::-webkit-scrollbar-track {
    background: transparent;
}

.description-modal__content::-webkit-scrollbar-thumb {
    background: transparent;
}

.description-modal__header {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 0 0 24px;
}

.description-modal__header-left {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 24px;
}

.description-modal__header-right {
    padding-top: 14px;
}

.description-modal__logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.description-modal__title {
    max-width: 150px;
    margin-top: 0;
    font-family: Google Sans;
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    color: #202124;
}

.description-modal__subtitle {
    margin-top: 5px;
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

.description-modal__text {
    white-space: pre-line;
    font-family: Roboto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #5f6368;
}

.description-modal__close {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3e%3cpath fill='%235F6368' d='m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}

.description-modal__close:hover {
    background-color: #e8eaed;
}

.description-modal__text {
    white-space: pre-line;
    font-family: Roboto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #5f6368;
}

.description-modal__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #e8eaed;
}

.description-modal__footer-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 110px;
}

.description-modal__footer-item span:first-child {
    font-family: Google Sans;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #202124;
}

.description-modal__footer-item span:last-child {
    margin-top: 5px;
    font-family: Roboto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #5f6368;
}

/* Reviews Modal */
.reviews-modal {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.reviews-modal.active {
    display: block;
}

.reviews-modal__wrapper {
    position: relative;
    height: 100%;
}

.reviews-modal__content {
    width: 90%;
    height: 600px;
    box-sizing: border-box;
    position: sticky;
    top: 50px;
    left: 0;
    margin: auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    overflow-y: auto;
}

.reviews-modal__content::-webkit-scrollbar {
    width: 0;
}

.reviews-modal__content::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-modal__content::-webkit-scrollbar-thumb {
    background: transparent;
}

.reviews-modal__header {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 0 0 24px;
}

.reviews-modal__header-left {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 24px;
}

.reviews-modal__header-right {
    padding-top: 14px;
}

.reviews-modal__logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviews-modal__title {
    max-width: 200px;
    margin-top: 0;
    font-family: 'Google Sans';
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    color: #202124;
}

.reviews-modal__subtitle {
    margin-top: 5px;
    font-family: Roboto;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #5f6368;
}

.reviews-modal__body {
    padding: 0 0 30px;
}

.reviews-modal__close {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3e%3cpath fill='%235F6368' d='m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}

.reviews-modal__close:hover {
    background-color: #e8eaed;
}

/* Star rating fix */
.comment__stars {
    color: #0b57d0;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Android Install Dialog */
.android-install-dialog {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    border-radius: 16px 16px 0 0;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.android-install-dialog__content {
    padding: 24px;
}

.android-install-dialog__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.android-install-dialog__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.android-install-dialog__info {
    flex: 1;
}

.android-install-dialog__name {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.android-install-dialog__url {
    font-size: 14px;
    color: #5f6368;
}

.android-install-dialog__message {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 24px;
}

.android-install-dialog__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.android-install-dialog__cancel,
.android-install-dialog__install {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.android-install-dialog__cancel {
    background: transparent;
    color: #01875f;
}

.android-install-dialog__cancel:hover {
    background: rgba(1, 135, 95, 0.08);
}

.android-install-dialog__install {
    background: #01875f;
    color: #fff;
}

.android-install-dialog__install:hover {
    background: #017a54;
}

/* Footer Navigation Bar */
.footer-nav {
    background-color: #f0f4f9;
    bottom: 0;
    color: #444746;
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    height: 64px;
    left: 0;
    position: fixed;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    z-index: 1000;
}

.footer-nav__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0 16px;
}

.footer-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #444746;
}

.footer-nav__item:active {
    opacity: 0.6;
}

.footer-nav__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav__icon svg {
    fill: #444746;
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --color-base-bk: #131314;
        --color-base: #e8eaed;
        --color-gray: #9aa0a6;
        --color-gray-border: #3c4043;
        --color-gray-back: #2b2c2e;
        --color-gray-star: #3c4043;
        --color-blue: #a8c7fa;
        --color-bk-menu: #2b2c2b;
        --color-green: #34a853;
        --color-btn-blue: #131314;
        --color-btn-gray: #9aa0a6;
        --color-btn-gray-bk: #3c4043;
    }

    body {
        background-color: #131314;
        color: #e8eaed;
    }

    .component__inner {
        background: #131314;
    }

    .top-nav {
        background: #131314;
    }

    /* Top nav SVG icons */
    .top-nav__back svg path:not([fill="none"]),
    .top-nav__menu svg path:not([fill="none"]) {
        fill: #9aa0a6;
    }

    /* Info section */
    .info__name,
    .info__name span:first-child {
        color: #e8eaed;
    }

    .info__dev {
        color: #a8c7fa;
        fill: #a8c7fa;
    }

    .info__additional,
    .info__additional span {
        color: #9aa0a6;
        fill: #9aa0a6;
        stop-color: #9aa0a6;
    }

    .info__numbers-item:after {
        background-color: #3c4043;
    }

    .info__numbers-item span:nth-child(1) {
        color: #e8eaed;
        fill: #e8eaed;
        stop-color: #e8eaed;
    }

    .info__numbers-item span:nth-child(2) {
        color: #9aa0a6;
        fill: #9aa0a6;
        stop-color: #9aa0a6;
    }

    .info__numbers-item div span:nth-child(1) {
        color: #9aa0a6;
        fill: #9aa0a6;
        stop-color: #9aa0a6;
    }

    .rating-value-wrapper span {
        color: #e8eaed !important;
        fill: #e8eaed !important;
        stop-color: #e8eaed !important;
    }

    /* Star icon blue → light blue */
    .rating-star-icon path:not([fill="none"]) {
        fill: #a8c7fa;
    }

    /* Info icons (grey exclamation) */
    .info-icon path:not([fill="none"]) {
        fill: #9aa0a6;
    }

    /* Download SVG in numbers row */
    .info__numbers-item > svg path:not([fill="none"]) {
        fill: #e8eaed;
    }

    .info__button:disabled {
        background: #3c4043;
        color: #9aa0a6;
    }

    /* Arrow buttons (more/arrow icons via background-image) */
    .description__more-button,
    .safety__more-button,
    .reviews__more-button {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3e%3cpath fill='%239aa0a6' d='M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z'/%3e%3c/svg%3e");
    }

    .description__more-button:hover,
    .safety__more-button:hover,
    .reviews__more-button:hover {
        background-color: #35363a;
    }

    .reviews__more-button--down {
        background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24'%3e%3cpath fill='%239aa0a6' d='M12 8l-6 6 1.4 1.4 4.6-4.6 4.6 4.6L18 14z'%3e%3c/path%3e%3cpath d='M0 0h24v24H0z' fill='none'%3e%3c/path%3e%3c/svg%3e") !important;
    }

    /* Description section */
    .description__title {
        color: #e8eaed;
        fill: #e8eaed;
        stop-color: #e8eaed;
    }

    .description__text {
        color: #9aa0a6;
    }

    .description__tag {
        background-color: transparent;
        border-color: #3c4043;
        color: #9aa0a6;
    }

    /* Safety section */
    .safety__title {
        color: #e8eaed;
        fill: #e8eaed;
        stop-color: #e8eaed;
    }

    .safety__text {
        color: #9aa0a6;
        fill: #9aa0a6;
        stop-color: #9aa0a6;
    }

    .XGHsbd {
        border-color: #3c4043;
    }

    .wGcURe > div {
        color: #9aa0a6;
        fill: #9aa0a6;
        stop-color: #9aa0a6;
    }

    .jECfAf {
        color: #9aa0a6;
    }

    .VfPpkd-vQzf8d,
    .VfPpkd-vQzf8d div {
        color: #a8c7fa;
    }

    /* Reviews section */
    .reviews__title {
        color: #e8eaed;
        fill: #e8eaed;
        stop-color: #e8eaed;
    }

    .reviews__disclaimer {
        color: #9aa0a6;
    }

    .reviews__see-all {
        color: #a8c7fa;
    }

    .reviews__footer {
        border-top-color: #3c4043;
    }

    /* Rating block */
    .rating__number {
        color: #e8eaed;
        fill: #e8eaed;
        stop-color: #e8eaed;
    }

    .rating__quantity {
        color: #9aa0a6;
    }

    .rating__quantity:first-of-type span {
        color: #a8c7fa;
    }

    .rating__scale-row span {
        color: #9aa0a6;
    }

    .rating__percentage-line {
        background: #3c4043;
    }

    .rating__percentage-line:after {
        background: #a8c7fa;
    }

    .RJfYGf {
        background-color: #3c4043;
    }

    .RutFAf.wcB8se {
        background-color: #a8c7fa;
    }

    .Z1Dz7b,
    .Z1Dz7b svg {
        fill: #a8c7fa;
        stop-color: #a8c7fa;
    }

    .jILTFe div {
        color: #e8eaed;
        fill: #e8eaed;
        stop-color: #e8eaed;
    }

    .EHUI5b,
    .Qjdn7d,
    .SfzRHd,
    .SfzRHd:not(:disabled),
    .VMq4uf .W7A5Qb:not(:disabled),
    .aJedd:not(:disabled) {
        color: #9aa0a6;
        fill: #9aa0a6;
        stop-color: #9aa0a6;
    }

    .tU8Y5c,
    .NlS5xc:not(:disabled),
    .dzkqwc:not(:disabled),
    .tU8Y5c:not(:disabled) {
        color: #e8eaed;
        fill: #e8eaed;
        stop-color: #e8eaed;
    }

    /* Comments */
    .comment__name {
        color: #e8eaed;
    }

    .comment__stars {
        color: #a8c7fa;
    }

    .comment__date,
    .comment__text,
    .comment__likes,
    .comment__helpful-text {
        color: #9aa0a6;
    }

    .comment__helpful-button {
        border-color: #3c4043;
        background: #2b2c2e;
        color: #9aa0a6;
    }

    .comment__helpful-button:hover {
        background-color: #35363a;
    }

    .helpful-button--clicked {
        background-color: #1a3028 !important;
        border-color: #34a853 !important;
    }

    /* Screenshots */
    .screenshots {
        background-color: #131314;
    }

    /* Screenshot modal */
    .screenshot-modal__close,
    .screenshot-modal__nav {
        background-color: #2b2c2e;
    }

    .screenshot-modal__close:hover,
    .screenshot-modal__nav:hover {
        background-color: #35363a;
    }

    .screenshot-modal__close {
        background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24'%20viewBox='0%20-960%20960%20960'%20width='24'%3e%3cpath%20fill='%239aa0a6'%20d='m256-200-56-56%20224-224-224-224%2056-56%20224%20224%20224-224%2056%2056-224%20224%20224%20224-56%2056-224-224-224%20224Z'/%3e%3c/svg%3e");
    }

    .screenshot-modal__nav--prev {
        background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24'%20viewBox='0%20-960%20960%20960'%20width='24'%3e%3cpath%20fill='%239aa0a6'%20d='M560-240%20320-480l240-240%2056%2056-184%20184%20184%20184-56%2056Z'/%3e%3c/svg%3e");
    }

    .screenshot-modal__nav--next {
        background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20height='24'%20viewBox='0%20-960%20960%20960'%20width='24'%3e%3cpath%20fill='%239aa0a6'%20d='M504-480%20320-664l56-56%20240%20240-240%20240-56-56%20184-184Z'/%3e%3c/svg%3e");
    }

    /* Similar games */
    .similar-game__name {
        color: #e8eaed;
    }

    .similar-game__rating {
        color: #9aa0a6;
    }

    /* Refund policy */
    .refund-policy__title,
    .refund-policy__text {
        color: #9aa0a6;
        fill: #9aa0a6;
        stop-color: #9aa0a6;
    }

    .refund-policy__header svg path {
        fill: #9aa0a6;
    }

    /* Description modal */
    .description-modal__content {
        background-color: #2b2c2e;
    }

    .description-modal__title {
        color: #e8eaed;
    }

    .description-modal__subtitle,
    .description-modal__text {
        color: #9aa0a6;
    }

    .description-modal__footer {
        border-top-color: #3c4043;
    }

    .description-modal__footer-item span:first-child {
        color: #e8eaed;
    }

    .description-modal__footer-item span:last-child {
        color: #9aa0a6;
    }

    .description-modal__close {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3e%3cpath fill='%239aa0a6' d='m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z'/%3e%3c/svg%3e");
    }

    .description-modal__close:hover {
        background-color: #3c4043;
    }

    /* Reviews modal */
    .reviews-modal__content {
        background-color: #2b2c2e;
    }

    .reviews-modal__title {
        color: #e8eaed;
    }

    .reviews-modal__subtitle {
        color: #9aa0a6;
    }

    .reviews-modal__close {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3e%3cpath fill='%239aa0a6' d='m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z'/%3e%3c/svg%3e");
    }

    .reviews-modal__close:hover {
        background-color: #3c4043;
    }

    /* Android install dialog */
    .android-install-dialog {
        background: #2b2c2e;
    }

    .android-install-dialog__name {
        color: #e8eaed;
    }

    .android-install-dialog__url,
    .android-install-dialog__message {
        color: #9aa0a6;
    }

    /* Footer navigation */
    .footer-nav {
        background-color: #2b2c2b;
        color: #bdc1c6;
    }

    .footer-nav__item {
        color: #bdc1c6;
    }

    .footer-nav__icon svg {
        fill: #bdc1c6;
    }
}
