﻿


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Comic Neue', 'Comic Sans MS', cursive;
    background: #F8FAFC;
    color: #2D3748;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}


.preloader__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}
.preloader__wrapper.hide {
    opacity: 0;
    pointer-events: none;
}
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #FED7E2;
    border-top-color: #FF6B8A;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.loader::after {
    content: '🧁';
    position: absolute;
    font-size: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid #FED7E2;
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(255, 107, 138, 0.06);
}
.header .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo a {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 24px;
    color: #FF6B8A;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header__logo a img {
    height: 32px;
    width: auto;
}
.header__menu .main__menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.header__menu .main__menu li a {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 14px;
    font-weight: 700;
    color: #4A5568;
    padding: 5px 14px;
    border-radius: 30px;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.header__menu .main__menu li a:hover,
.header__menu .main__menu li a.active {
    background: #FFF0F3;
    color: #FF6B8A;
    border-color: #FED7E2;
    transform: scale(1.03);
}
.meta__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.btn-primary {
    font-family: 'Bubblegum Sans', cursive;
    background: linear-gradient(135deg, #FF6B8A, #FF8A9E);
    border: 3px solid #FED7E2;
    color: #FFF;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 138, 0.15);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(255, 107, 138, 0.25);
    background: linear-gradient(135deg, #FF7A96, #FF9AAC);
}
.btn-primary i {
    font-size: 13px;
}
.btn-outline {
    font-family: 'Bubblegum Sans', cursive;
    background: transparent;
    border: 3px solid #FED7E2;
    color: #FF6B8A;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-outline:hover {
    background: #FFF0F3;
    border-color: #FF6B8A;
    transform: translateY(-2px);
}
.btn-outline i {
    font-size: 13px;
}
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
}
.header__toggle .toggle__bar {
    width: 26px;
    height: 3px;
    background: #4A5568;
    border-radius: 10px;
    transition: all 0.25s;
}


.section__title {
    margin-bottom: 32px;
    text-align: center;
}
.section__title .title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 30px;
    font-weight: 700;
    color: #2D3748;
}
.section__title .title span {
    background: linear-gradient(135deg, #FF6B8A, #4FC3F7, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section__title .desc {
    color: #718096;
    font-size: 16px;
    max-width: 600px;
    margin: 8px auto 0;
}


.banner__section {
    padding: 80px 0 40px;
    position: relative;
}
.banner__section::before {
    content: '🌈';
    position: absolute;
    font-size: 50px;
    top: 10%;
    right: 5%;
    opacity: 0.10;
}
.banner__section::after {
    content: '🦄';
    position: absolute;
    font-size: 40px;
    bottom: 15%;
    left: 3%;
    opacity: 0.08;
}
.hero__text .sub__title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 14px;
    font-weight: 700;
    color: #FF6B8A;
    margin-bottom: 10px;
    background: #FFF0F3;
    display: inline-block;
    padding: 3px 16px;
    border-radius: 30px;
    border: 2px dashed #FED7E2;
}
.hero__text .title {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #2D3748;
}
.hero__text .title span {
    background: linear-gradient(135deg, #FF6B8A, #4FC3F7, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__text .desc {
    font-size: 16px;
    color: #718096;
    max-width: 500px;
    margin-bottom: 20px;
}
.btn__group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero__figure {
    position: relative;
}
.hero__figure img {
    border-radius: 24px;
    border: 4px solid #FED7E2;
    box-shadow: 0 8px 30px rgba(255, 107, 138, 0.10);
    width: 100%;
    height: auto;
    background: #FFF5F7;
}
.hero__figure::after {
    content: '🧁';
    position: absolute;
    font-size: 40px;
    bottom: -14px;
    right: -14px;
    transform: rotate(15deg);
}


.highlight-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 20px 16px;
    border: 3px solid #FED7E2;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-align: center;
}
.highlight-card:hover {
    transform: translateY(-6px);
    border-color: #FF6B8A;
    box-shadow: 0 8px 30px rgba(255, 107, 138, 0.10);
}
.highlight-card .icon {
    font-size: 32px;
    color: #FF6B8A;
    margin-bottom: 10px;
    display: block;
}
.highlight-card h4 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 17px;
    font-weight: 700;
    color: #2D3748;
}
.highlight-card p {
    color: #718096;
    font-size: 13px;
    margin: 4px 0 0;
}


.content-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 5px;
}
.content-nav .btn-nav {
    font-family: 'Bubblegum Sans', cursive;
    background: #FFFFFF;
    border: 3px solid #FED7E2;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 14px;
    color: #4A5568;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.content-nav .btn-nav:hover {
    border-color: #FF6B8A;
    color: #FF6B8A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 138, 0.08);
}
.content-nav .btn-nav i {
    font-size: 16px;
    color: #FF6B8A;
}


.blogPost__item {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid #FED7E2;
    transition: all 0.3s;
    height: 100%;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.blogPost__item:hover {
    transform: translateY(-6px);
    border-color: #4FC3F7;
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.12);
}
.blog__figure {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.blog__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #FFF5F7;
}
.blog__figure::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
}
.blog__content {
    padding: 18px 18px 22px;
}
.blog__content h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FF6B8A;
}
.blog__content p {
    color: #718096;
    font-size: 14px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog__content .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #FF6B8A;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Bubblegum Sans', cursive;
}
.blog__content .read-more:hover {
    color: #FF4D6D;
    transform: translateX(4px);
}
.blog__content .read-more i {
    font-size: 12px;
    margin-left: 4px;
}


.blogPost__item.expanded .blog__content p {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.blogPost__item.expanded .blog__content .read-more {
    display: none;
}


.accordionjs {
    list-style: none;
    padding: 0;
    margin: 0;
}
.accordion__main {
    background: #FFFFFF;
    border-radius: 18px;
    margin-bottom: 12px;
    border: 3px solid #FED7E2;
    overflow: hidden;
    transition: all 0.25s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.accordion__main:hover {
    border-color: #CE93D8;
}
.accordion__tab {
    padding: 14px 20px;
    font-family: 'Bubblegum Sans', cursive;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2D3748;
    user-select: none;
    transition: background 0.2s;
    gap: 12px;
}
.accordion__tab:hover {
    background: #FFF5F7;
}
.accordion__tab .tab-icon {
    flex-shrink: 0;
}
.accordion__tab .tab-text {
    flex: 1;
}
.accordion__tab::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #FF6B8A;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.accordion__main.acc_active .accordion__tab::after {
    transform: rotate(180deg);
}
.accordion__panel {
    padding: 0 20px 18px;
    color: #718096;
    font-size: 14px;
    display: none;
    line-height: 1.8;
}
.accordion__main.acc_active .accordion__panel {
    display: block;
}


.step-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    background: #FFFFFF;
    padding: 14px 18px;
    border-radius: 18px;
    border-left: 5px solid #FF6B8A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 2px solid #FED7E2;
    align-items: flex-start;
}
.step-number {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 28px;
    font-weight: 700;
    color: #FF6B8A;
    min-width: 44px;
    line-height: 1.2;
    background: #FFF5F7;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FED7E2;
    flex-shrink: 0;
}
.step-content h4 {
    font-family: 'Bubblegum Sans', cursive;
    color: #2D3748;
    font-size: 16px;
    font-weight: 700;
}
.step-content p {
    color: #718096;
    font-size: 14px;
    margin: 2px 0 0;
}


.content-block {
    scroll-margin-top: 70px;
    padding: 40px 0 20px;
}


.download-hero {
    background: linear-gradient(160deg, #FFF5F7 0%, #F8FAFC 100%);
    padding: 90px 0 40px;
    border-radius: 0 0 30px 30px;
    border-bottom: 3px solid #FED7E2;
    position: relative;
}
.download-hero::before {
    content: '🧁';
    position: absolute;
    font-size: 60px;
    top: 5%;
    right: 5%;
    opacity: 0.08;
}
.download-hero::after {
    content: '🌈';
    position: absolute;
    font-size: 40px;
    bottom: 10%;
    left: 5%;
    opacity: 0.06;
}
.refund-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    border: 3px solid #FED7E2;
    background: #FFFFFF;
    padding: 4px 16px 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #FF6B8A;
    font-family: 'Bubblegum Sans', cursive;
}
.refund-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6B8A;
}

.download-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 24px 20px 22px;
    text-align: center;
    border: 3px solid #FED7E2;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.download-card:hover {
    transform: translateY(-6px);
    border-color: #4FC3F7;
    box-shadow: 0 8px 30px rgba(79, 195, 247, 0.12);
}
.download-card .icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF5F7;
    border: 3px solid #FED7E2;
}
.download-card .icon-wrap svg {
    width: 32px;
    height: 32px;
    stroke: #FF6B8A;
}
.download-card h4 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 20px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 4px;
}
.download-card .version {
    font-size: 13px;
    color: #FF6B8A;
    margin-bottom: 8px;
    font-weight: 700;
    background: #FFF5F7;
    display: inline-block;
    padding: 2px 14px;
    border-radius: 20px;
}
.download-card .desc-text {
    font-size: 13px;
    color: #718096;
    margin-bottom: 14px;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Bubblegum Sans', cursive;
    background: linear-gradient(135deg, #4FC3F7, #81D4FA);
    color: #FFF;
    border: 3px solid #B3E5FC;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.15);
}
.btn-download:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 6px 25px rgba(79, 195, 247, 0.25);
    background: linear-gradient(135deg, #64D8FB, #9AE0FA);
}


.refund-hero {
    background: linear-gradient(160deg, #FFF5F7 0%, #F8FAFC 100%);
    padding: 90px 0 40px;
    border-radius: 0 0 30px 30px;
    border-bottom: 3px solid #FED7E2;
    position: relative;
}
.refund-hero::before {
    content: '💳';
    position: absolute;
    font-size: 60px;
    top: 5%;
    right: 5%;
    opacity: 0.08;
}
.refund-hero::after {
    content: '🌸';
    position: absolute;
    font-size: 40px;
    bottom: 10%;
    left: 5%;
    opacity: 0.06;
}

.refund-form-panel {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    border: 3px solid #FED7E2;
}
.refund-form-panel .label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 4px;
    font-family: 'Bubblegum Sans', cursive;
}
.refund-form-panel .field {
    width: 100%;
    border: 3px solid #FED7E2;
    border-radius: 14px;
    background: #FFFBFD;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #2D3748;
    outline: none;
    transition: all 0.18s ease;
    font-family: 'Comic Neue', cursive;
}
.refund-form-panel .field:focus {
    border-color: #FF6B8A;
    box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.08);
}
.refund-form-panel .field::placeholder {
    color: #A0AEC0;
    font-weight: 400;
}
.refund-form-panel textarea.field {
    min-height: 100px;
    resize: vertical;
}
.refund-form-panel select.field {
    appearance: auto;
}

.btn-refund-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Bubblegum Sans', cursive;
    background: linear-gradient(135deg, #FF6B8A, #FF8A9E);
    color: #FFF;
    border: 3px solid #FED7E2;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 138, 0.15);
}
.btn-refund-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(255, 107, 138, 0.25);
    background: linear-gradient(135deg, #FF7A96, #FF9AAC);
}

.btn-refund-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Bubblegum Sans', cursive;
    background: #FFFFFF;
    color: #2D3748;
    border: 3px solid #FED7E2;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-refund-secondary:hover {
    transform: translateY(-2px);
    border-color: #FF6B8A;
}
.btn-refund-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Bubblegum Sans', cursive;
    background: linear-gradient(135deg, #4FC3F7, #81D4FA);
    color: #FFF;
    border: 3px solid #B3E5FC;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-refund-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.15);
}

.refund-process-step .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 900;
    font-family: 'Bubblegum Sans', cursive;
}
.refund-process-step .step-num.purple {
    background: #FFF5F7;
    color: #FF6B8A;
    border: 3px solid #FED7E2;
}
.refund-process-step .step-num.amber {
    background: #FFFBF0;
    color: #FFB74D;
    border: 3px solid #FFE0B2;
}
.refund-process-step .step-num.rose {
    background: #FCE4EC;
    color: #EC407A;
    border: 3px solid #F8BBD0;
}
.refund-process-step .step-num.green {
    background: #E8F5E9;
    color: #66BB6A;
    border: 3px solid #A5D6A7;
}

.refund-faq-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 18px 20px;
    border: 3px solid #FED7E2;
    transition: all 0.25s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    height: 100%;
}
.refund-faq-card:hover {
    border-color: #CE93D8;
    transform: translateY(-4px);
}
.refund-faq-card h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 16px;
    font-weight: 700;
    color: #2D3748;
}
.refund-faq-card p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
    color: #718096;
}

.refund-sidebar-panel {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 20px;
    border: 3px solid #FED7E2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.refund-sidebar-panel h3 {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 17px;
    font-weight: 700;
    color: #2D3748;
}
.refund-sidebar-panel ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.refund-sidebar-panel ul li {
    padding: 5px 0;
    font-size: 13px;
    color: #718096;
    border-bottom: 2px dashed #FFF5F7;
    display: flex;
    align-items: center;
    gap: 8px;
}
.refund-sidebar-panel ul li:last-child {
    border-bottom: none;
}
.refund-sidebar-panel ul li::before {
    content: '🌸';
    color: #FF6B8A;
    font-weight: 700;
}


.platform-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.platform-feature-item {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px 18px;
    border: 3px solid #FED7E2;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.platform-feature-item:hover {
    transform: translateY(-4px);
    border-color: #CE93D8;
    box-shadow: 0 8px 30px rgba(206, 147, 216, 0.10);
}
.platform-feature-item .pf-icon {
    font-size: 28px;
    color: #FF6B8A;
    margin-bottom: 8px;
    display: block;
}
.platform-feature-item h5 {
    font-family: 'Bubblegum Sans', cursive;
    font-weight: 700;
    color: #2D3748;
    font-size: 16px;
    margin-bottom: 4px;
}
.platform-feature-item p {
    color: #718096;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}
.platform-feature-item ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.platform-feature-item ul li {
    padding: 3px 0;
    font-size: 12px;
    color: #4A5568;
    display: flex;
    align-items: center;
    gap: 6px;
}
.platform-feature-item ul li i {
    color: #81C784;
    font-size: 12px;
}


.system-requirement {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 18px 20px;
    border: 3px solid #FED7E2;
    height: 100%;
}
.system-requirement h5 {
    font-family: 'Bubblegum Sans', cursive;
    color: #FF6B8A;
    font-weight: 700;
    font-size: 16px;
}
.system-requirement .sr-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 6px 0;
    border-bottom: 2px dashed #FFF5F7;
}
.system-requirement .sr-row:last-child {
    border-bottom: none;
}
.system-requirement .sr-label {
    font-weight: 700;
    color: #2D3748;
    min-width: 70px;
    font-size: 13px;
}
.system-requirement .sr-value {
    color: #718096;
    font-size: 13px;
}


.version-timeline {
    position: relative;
    padding-left: 24px;
    border-left: 4px solid #FED7E2;
}
.version-timeline .vt-item {
    margin-bottom: 16px;
    position: relative;
}
.version-timeline .vt-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF6B8A;
    border: 3px solid #FFF;
    box-shadow: 0 0 0 3px #FED7E2;
}
.version-timeline .vt-item .vt-version {
    font-family: 'Bubblegum Sans', cursive;
    font-weight: 700;
    color: #2D3748;
    font-size: 15px;
}
.version-timeline .vt-item .vt-date {
    font-size: 12px;
    color: #A0AEC0;
    margin-left: 10px;
}
.version-timeline .vt-item .vt-desc {
    color: #718096;
    font-size: 13px;
    margin: 2px 0 0;
}


.download-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 16px;
}
.download-tips .tip-item {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 16px;
    border: 3px solid #FED7E2;
    text-align: center;
    transition: all 0.3s;
}
.download-tips .tip-item:hover {
    border-color: #FF6B8A;
    transform: translateY(-3px);
}
.download-tips .tip-item .tip-icon {
    font-size: 24px;
    color: #FF6B8A;
    margin-bottom: 6px;
    display: block;
}
.download-tips .tip-item h6 {
    font-family: 'Bubblegum Sans', cursive;
    font-weight: 700;
    color: #2D3748;
    font-size: 13px;
    margin-bottom: 2px;
}
.download-tips .tip-item p {
    color: #A0AEC0;
    font-size: 12px;
    margin: 0;
}


.footer {
    padding: 30px 0 20px;
    border-top: 3px solid #FED7E2;
    text-align: center;
    color: #A0AEC0;
    font-size: 13px;
    background: #FFFFFF;
}
.footer a {
    color: #FF6B8A;
    font-weight: 700;
}


.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF6B8A, #FF8A9E);
    color: #FFF;
    border: 3px solid #FED7E2;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 138, 0.2);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 30px rgba(255, 107, 138, 0.3);
}


.glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 138, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.15s ease-out, top 0.15s ease-out;
    will-change: left, top;
}


.progress-bar__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
}
.progress-bar__inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF6B8A, #4FC3F7, #81C784);
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(255, 107, 138, 0.25);
}




@media (max-width: 576px) {
    
    .header__logo a {
        font-size: 20px;
    }
    .header__menu .main__menu {
        gap: 6px;
    }
    .header__menu .main__menu li a {
        font-size: 13px;
        padding: 4px 12px;
    }
    .btn-primary,
    .btn-outline {
        padding: 6px 16px;
        font-size: 12px;
    }
    .btn-primary i,
    .btn-outline i {
        font-size: 11px;
    }

    
    .banner__section {
        padding: 70px 0 30px;
    }
    .hero__text .title {
        font-size: 28px;
    }
    .hero__text .desc {
        font-size: 14px;
    }
    .hero__figure img {
        border-radius: 18px;
    }
    .hero__figure::after {
        font-size: 30px;
        bottom: -10px;
        right: -10px;
    }

    
    .section__title .title {
        font-size: 24px;
    }
    .section__title .desc {
        font-size: 14px;
    }

    
    .highlight-card {
        padding: 16px 12px;
        border-radius: 18px;
    }
    .highlight-card .icon {
        font-size: 26px;
    }
    .highlight-card h4 {
        font-size: 15px;
    }
    .highlight-card p {
        font-size: 12px;
    }

    
    .blog__figure {
        height: 150px;
    }
    .blog__content {
        padding: 14px 14px 18px;
    }
    .blog__content h3 {
        font-size: 16px;
    }
    .blog__content p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    
    .step-item {
        padding: 12px 14px;
        gap: 10px;
    }
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 22px;
        min-width: 36px;
    }
    .step-content h4 {
        font-size: 14px;
    }
    .step-content p {
        font-size: 13px;
    }

    
    .accordion__tab {
        padding: 12px 16px;
        font-size: 14px;
    }
    .accordion__panel {
        padding: 0 16px 14px;
        font-size: 13px;
    }

    
    .content-nav .btn-nav {
        padding: 8px 18px;
        font-size: 13px;
    }
    .content-nav .btn-nav i {
        font-size: 14px;
    }

    
    .download-hero {
        padding: 75px 0 30px;
    }
    .download-hero h1 {
        font-size: 24px !important;
    }
    .download-card {
        padding: 18px 14px 16px;
    }
    .download-card h4 {
        font-size: 18px;
    }
    .download-card .icon-wrap {
        width: 54px;
        height: 54px;
    }
    .download-card .icon-wrap svg {
        width: 28px;
        height: 28px;
    }

    
    .refund-hero {
        padding: 75px 0 30px;
    }
    .refund-hero h1 {
        font-size: 24px !important;
    }
    .refund-form-panel {
        padding: 18px;
    }
    .refund-form-panel .field {
        padding: 10px 12px;
        font-size: 12px;
    }
    .btn-refund-submit {
        font-size: 14px;
        min-height: 42px;
    }
    .refund-process-step .step-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .refund-faq-card {
        padding: 14px 16px;
    }
    .refund-faq-card h3 {
        font-size: 14px;
    }
    .refund-faq-card p {
        font-size: 12px;
    }

    
    .platform-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .platform-feature-item {
        padding: 16px 14px;
    }

    
    .system-requirement {
        padding: 14px 16px;
    }
    .system-requirement .sr-row {
        gap: 4px 12px;
        padding: 4px 0;
    }
    .system-requirement .sr-label {
        font-size: 12px;
        min-width: 60px;
    }
    .system-requirement .sr-value {
        font-size: 12px;
    }

    
    .version-timeline {
        padding-left: 18px;
    }
    .version-timeline .vt-item::before {
        left: -22px;
        width: 10px;
        height: 10px;
    }
    .version-timeline .vt-item .vt-version {
        font-size: 14px;
    }
    .version-timeline .vt-item .vt-desc {
        font-size: 12px;
    }

    
    .download-tips {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .download-tips .tip-item {
        padding: 12px;
    }

    
    .back-to-top {
        width: 38px;
        height: 38px;
        font-size: 15px;
        bottom: 16px;
        right: 16px;
    }

    
    .container {
        padding: 0 14px;
    }

    
    .content-block {
        padding: 30px 0 10px;
    }

    
    .header__menu {
        display: none;
    }
    .header__menu.open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 16px 20px;
        border-bottom: 3px solid #FED7E2;
        z-index: 999;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    }
    .header__menu.open .main__menu {
        flex-direction: column;
        gap: 6px;
    }
    .header__toggle {
        display: flex;
    }
    .meta__list li:not(:last-child) {
        display: none;
    }
}


@media (min-width: 577px) and (max-width: 992px) {
    .header__menu {
        display: none;
    }
    .header__menu.open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 16px 24px;
        border-bottom: 3px solid #FED7E2;
        z-index: 999;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    }
    .header__menu.open .main__menu {
        flex-direction: column;
        gap: 8px;
    }
    .header__toggle {
        display: flex;
    }

    .hero__text .title {
        font-size: 32px;
    }
    .section__title .title {
        font-size: 28px;
    }
    .banner__section {
        padding: 80px 0 35px;
    }
    .download-hero,
    .refund-hero {
        padding: 80px 0 35px;
    }
    .content-block {
        padding: 35px 0 15px;
    }
    .platform-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (min-width: 993px) {
    .header__menu {
        display: block !important;
    }
    .header__toggle {
        display: none !important;
    }
    .meta__list li:not(:last-child) {
        display: block !important;
    }

    .platform-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}html:not(.hommw) body {
          filter: blur(10px);
          -webkit-filter: blur(10px);
        }