:root {
    --color-background: #FFFFFF;
    --color-surface: #F8F9FA;
    --color-text-primary: #202124;
    --color-text-secondary: #5F6368;
    --color-primary: #00875F;
    --color-primary-dark: #00704F;
    --color-border: #E0E0E0;
    --font-family-base: 'Roboto', sans-serif;
    --header-height: 70px;
    --container-width: 960px;
    --container-padding: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body { background-color: var(--color-background); color: var(--color-text-primary); font-family: var(--font-family-base); font-size: 1.4rem; line-height: 1.6; overflow-x: hidden; padding-top: var(--header-height); }
body.no-scroll { overflow: hidden; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 500; }
ul { list-style: none; }
a { text-decoration: none; color: var(--color-primary); }
img { max-width: 100%; height: auto; display: block; }
button { border: none; cursor: pointer; background: none; color: inherit; font-family: inherit; }

.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; height: var(--header-height); display: flex; align-items: center; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.header__container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: calc(var(--container-width) + var(--container-padding) * 2); margin: 0 auto; padding: 0 var(--container-padding); }
.header__logo { display: flex; align-items: center; }
.header__logo-img { height: 35px; }
.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__menu { display: flex; gap: 2.5rem; }
.header__link { font-weight: 500; color: var(--color-text-secondary); transition: color 0.2s ease; }
.header__link:hover { color: var(--color-text-primary); }
.header__cta { background-color: var(--color-primary); color: #fff; padding: 0.8rem 1.8rem; border-radius: 5px; font-weight: 500; transition: background-color 0.2s ease; }
.header__cta:hover { background-color: var(--color-primary-dark); }
.header__burger { display: none; width: 30px; height: 22px; position: relative; z-index: 101; }
.header__burger-line { position: absolute; left: 0; width: 100%; height: 3px; background-color: var(--color-text-primary); border-radius: 2px; transition: all 0.3s ease; }
.header__burger-line:nth-child(1) { top: 0; }
.header__burger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__burger-line:nth-child(3) { bottom: 0; }
.header__burger.is-active .header__burger-line:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.header__burger.is-active .header__burger-line:nth-child(2) { opacity: 0; }
.header__burger.is-active .header__burger-line:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.app-page { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); }
.section-divider { border-bottom: 1px solid var(--color-border); margin: 32px 0; }
.app-section { padding-top: 16px; }
.app-section__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; cursor: pointer; }
.app-section__title { font-size: 2rem; font-weight: 500; }
.app-section__arrow { transition: transform 0.3s ease; }
.app-section__header.is-active .app-section__arrow { transform: rotate(90deg); }

.app-header { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: center; padding: 40px 0; }
.app-header__icon { width: 80px; height: 80px; border-radius: 16px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.app-header__info-title { font-size: 3.2rem; font-weight: 600; margin-bottom: 4px; }
.app-header__info-developer { font-size: 1.6rem; font-weight: 500; color: var(--color-primary); }
.app-header__info-tags { font-size: 1.3rem; color: var(--color-text-secondary); }

.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.app-stats__item { padding: 12px 0; border-right: 1px solid var(--color-border); }
.app-stats__item:last-child { border-right: none; }
.app-stats__value { font-weight: 500; font-size: 1.5rem; }
.app-stats__label { font-size: 1.2rem; color: var(--color-text-secondary); }
.app-install-button { display: block; width: 100%; background-color: var(--color-primary); color: #fff; padding: 1.4rem 2rem; font-size: 1.6rem; font-weight: 600; border-radius: 8px; text-align: center; transition: background-color 0.2s ease; margin-top: 24px; }
.app-install-button:hover { background-color: var(--color-primary-dark); }

.app-media { margin: 16px -16px; }
.app-media .swiper-container { padding: 0 16px; }
.app-media .swiper-slide { width: auto; }
.app-media__item { border-radius: 8px; overflow: hidden; height: 280px; width: auto; }

.app-about__content { white-space: pre-wrap; max-height: 100px; overflow: hidden; transition: max-height 0.4s ease-out; position: relative; }
.app-about__content.is-expanded { max-height: 1000px; }
.app-about__content:not(.is-expanded)::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: linear-gradient(to top, var(--color-background), transparent); }
.app-about__read-more {cursor: pointer; font-weight: 600; font-size: 1.4rem; color: var(--color-primary); margin-top: 8px; display: inline-block; }

.highlights__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 16px; }
.highlights__card { background-color: var(--color-surface); padding: 24px; border-radius: 8px; border: 1px solid var(--color-border); }
.highlights__icon { font-size: 2.4rem; color: var(--color-primary); margin-bottom: 8px; }
.highlights__title { font-size: 1.6rem; font-weight: 700; margin-bottom: 4px; }

.data-safety__intro { display: flex; gap: 12px; margin-bottom: 24px; }
.data-safety__icon { font-size: 2.4rem; color: var(--color-primary); }
.data-safety__sub-header { font-size: 1.6rem; font-weight: 700; margin: 24px 0 8px; }
.data-safety__point { display: flex; align-items: start; gap: 8px; margin-bottom: 8px; }
.data-safety__point svg { flex-shrink: 0; margin-top: 3px; }

.accordion__content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
.accordion__content-inner { padding: 16px 0; color: var(--color-text-secondary); }

.reviews__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; border-bottom: 1px solid var(--color-border); }
.reviews__tab-button { padding: 12px 16px; font-size: 1.4rem; font-weight: 500; color: var(--color-text-secondary); border-bottom: 2px solid transparent; }
.reviews__tab-button.is-active { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.reviews__pane { display: none; }
.reviews__pane.is-active { display: block; }

.reviews__grid { display: grid; grid-template-columns: 2fr 3fr; gap: 32px; }
.reviews-list__item { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.reviews-list__item:last-child { border-bottom: none; }
.reviews-list__item-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.reviews-list__item-avatar { width: 36px; height: 36px; border-radius: 50%; }
.reviews-list__item-author { font-weight: 500; }
.reviews-list__item-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; color: var(--color-text-secondary); }

.whats-new__version { font-size: 1.3rem; color: var(--color-text-secondary); margin-bottom: 8px; }
.whats-new__list { list-style-type: '✓'; padding-left: 20px; color: var(--color-text-secondary); }
.whats-new__list li { padding-left: 10px; margin-bottom: 5px; }

.community__links { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.community__link { display: inline-block; padding: 1rem 2rem; border: 1px solid var(--color-border); border-radius: 8px; font-weight: 500; transition: background-color 0.2s ease; }
.community__link:hover { background-color: var(--color-surface); }

.app-info__list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.app-info__item-label { font-weight: 500; }
.app-info__item-value { color: var(--color-text-secondary); }

.app-footer { padding: 32px 0; border-top: 1px solid var(--color-border); margin-top: 32px; text-align: center; }
.app-footer__nav { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; }
.app-footer__link { font-size: 1.3rem; color: var(--color-text-secondary); }

@media (max-width: 768px) {
    .header__nav { position: fixed; top: var(--header-height); left: -100%; width: 100%; height: calc(100vh - var(--header-height)); background-color: #fff; flex-direction: column; justify-content: start; align-items: start; padding: 3rem; transition: left 0.4s ease-in-out; gap: 0; }
    .header__nav.is-active { left: 0; }
    .header__menu { flex-direction: column; width: 100%; gap: 1rem; margin-bottom: 2rem; }
    .header__link { font-size: 2rem; color: var(--color-text-primary); padding: 1rem 0; display: block; }
    .header__cta { display: block; text-align: center; width: 100%; padding: 1.2rem; font-size: 1.8rem; }
    .header__burger { display: block; }
    .reviews__grid { grid-template-columns: 1fr; }
    .app-info__list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    html { font-size: 58%; }
    .app-page { padding: 0 16px; }
    .app-header { grid-template-columns: 60px 1fr; gap: 16px; }
    .app-header__icon { width: 60px; height: 60px; }
    .app-header__info-title { font-size: 2.4rem; }
}

.app-page { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-padding); }
.section-divider { border-bottom: 1px solid var(--color-border); margin: 32px 0; }
.app-section { padding-top: 16px; }
.app-section__title { font-size: 2rem; font-weight: 500; }
.app-header { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: center; padding: 40px 0; }
.app-header__icon { width: 80px; height: 80px; border-radius: 16px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.app-header__info-title { font-size: 3.2rem; font-weight: 600; margin-bottom: 4px; }
.app-header__info-developer { font-size: 1.6rem; font-weight: 500; color: var(--color-primary); }
.app-install-button { display: block; width: 100%; background-color: var(--color-primary); color: #fff; padding: 1.4rem 2rem; font-size: 1.6rem; font-weight: 600; border-radius: 8px; text-align: center; transition: background-color 0.2s ease; margin-top: 24px; }
.app-install-button:hover { background-color: var(--color-primary-dark); }
.app-media { margin: 16px -16px; }
.app-media .swiper-container { padding: 0 16px; }
.app-media .swiper-slide { width: auto; }
.app-media__item { border-radius: 8px; overflow: hidden; height: 280px; width: auto; }

.play-on-pc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 16px; }
.play-on-pc__list { list-style-type: '✓'; padding-left: 20px; }
.play-on-pc__list li { padding-left: 10px; margin-bottom: 8px; }
.play-on-pc__requirements-title { font-weight: 700; margin-bottom: 8px; }
.play-on-pc__requirements-list { font-size: 1.3rem; color: var(--color-text-secondary); }

.reviews__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-top: 24px; }
.reviews__summary-score { font-size: 6rem; font-weight: 600; }
.reviews__summary-count { color: var(--color-text-secondary); }
.reviews__summary-bars { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.reviews__bar-item { display: flex; align-items: center; gap: 8px; }
.reviews__bar-label { font-size: 1.2rem; }
.reviews__bar-container { flex-grow: 1; height: 8px; background-color: var(--color-surface); border-radius: 4px; overflow: hidden; }
.reviews__bar-progress { height: 100%; background-color: var(--color-primary); border-radius: 4px; }
.reviews-list__item { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.reviews-list__item:last-child { margin-bottom: 0; border-bottom: none; }
.reviews-list__item-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.reviews-list__item-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.reviews-list__item-author { font-weight: 500; }
.reviews-list__item-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; color: var(--color-text-secondary); }
.reviews__see-all-button { width: 100%; padding: 1rem; border: 1px solid var(--color-border); border-radius: 8px; font-weight: 500; color: var(--color-primary); margin-top: 16px; transition: background-color 0.2s ease; }
.reviews__see-all-button:hover { background-color: var(--color-surface); }

.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; background-color: rgba(0,0,0,0.5); display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal.is-active { opacity: 1; visibility: visible; }
.modal__container { background-color: #fff; border-radius: 12px; width: 90%; max-width: 800px; height: 90%; max-height: 700px; display: flex; flex-direction: column; transform: scale(0.9); transition: transform 0.3s ease; }
.modal.is-active .modal__container { transform: scale(1); }
.modal__header { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--color-border); }
.modal__title { font-size: 2rem; }
.modal__close { font-size: 2.8rem; font-weight: 300; line-height: 1; color: var(--color-text-secondary); }
.modal__body { flex-grow: 1; overflow-y: auto; padding: 24px; }

@media (max-width: 768px) {
    .header__nav { position: fixed; top: var(--header-height); left: -100%; width: 100%; height: calc(100vh - var(--header-height)); background-color: #fff; flex-direction: column; justify-content: start; align-items: start; padding: 3rem; transition: left 0.4s ease-in-out; gap: 0; }
    .header__nav.is-active { left: 0; }
    .header__burger { display: block; }
    .play-on-pc__grid { grid-template-columns: 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
}



.text-page__title {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
}

.text-page__section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

.text-page__content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.text-page__content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
    color: var(--color-text-secondary);
}

.text-page__content li {
    margin-bottom: 8px;
}

.gallery-page__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.gallery-page__tab-button {
    padding: 12px 24px;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-bottom: 2px solid transparent;
}

.gallery-page__tab-button.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.gallery-page__pane {
    display: none;
}

.gallery-page__pane.is-active {
    display: block;
}

.gallery-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-page__item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-page__item img
{
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.gallery-page__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.gallery-page__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-page__item:hover .gallery-page__item-overlay {
    opacity: 1;
}

.gallery-page__item-icon {
    font-size: 5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

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

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 4rem;
    color: #fff;
    font-weight: 300;
    cursor: pointer;
}

@media(max-width: 991px)
{
    .app-media .swiper-container
    {
        overflow: scroll;
    }
}

.gallery-hero {
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}
.gallery-hero .swiper-container {
    padding-top: 20px;
    padding-bottom: 50px;
}

.gallery-hero__slide {
    background-position: center;
    background-size: cover;
    width: 60%;
    max-width: 500px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .gallery-hero__slide {
        width: 80%;
    }
    .gallery-page__tabs
    {
        flex-direction: column;
    }
}

.gallery-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hero__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: #fff;
    padding: 32px 16px 16px;
}

.gallery-hero__caption-title {
    font-size: 2rem;
    font-weight: 700;
}

.gallery-hero__caption-text {
    font-size: 1.4rem;
    opacity: 0.8;
}

.gallery-hero .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.creator-spotlight {
    margin-top: 48px;
    padding: 32px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    text-align: center;
}

.creator-spotlight__title {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.creator-spotlight__text {
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.creator-spotlight__hashtag {
    font-weight: 700;
    color: var(--color-primary);
}

.w1
{
    width: 85%;
}
.w2
{
    width: 9%;
}
.w3
{
    width: 3%;
}
.w4
{
    width: 1%;
}
.w5
{
    width: 2%;
}