html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 400;
}

body {
    background: #FFF5F7;
    color: #2A1E23;
    line-height: 1.7;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

header {
    background: #F06F86;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(184,31,53,0.18);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 20px;
}

.site-logo {
    width: 134px;
    height: auto;
    object-fit: contain;
}

.brand-link,
.mobile-logo-link {
    flex: 0 0 auto;
}

.main-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    min-width: 0;
}

.main-nav a {
    color: #FFFFFF;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #7A1022;
    border-color: #7A1022;
    transform: translateY(-1px);
}

.login-btn {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    background: #FFFFFF;
    color: #B81F35;
    border: 1px solid rgba(233,66,85,0.35);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(184,31,53,0.10);
    padding: 10px 18px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(122,16,34,0.20);
    background: #FFF9FA;
}

.mobile-header {
    display: none;
    justify-content: space-between;
}

.menu-toggle,
.drawer-close,
.slider-arrow {
    border: 0;
    cursor: pointer;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    color: #FFFFFF;
    font-size: 24px;
}

.mobile-login {
    padding: 9px 13px;
    font-size: 13px;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42,30,35,0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 10000;
}

.drawer-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 84vw;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F7 100%);
    z-index: 10001;
    transform: translateX(-105%);
    transition: transform .32s ease;
    padding: 18px;
    overflow-y: auto;
    box-shadow: 18px 0 40px rgba(122,16,34,0.22);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-open {
    overflow: hidden;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(233,66,85,0.16);
}

.drawer-logo,
.footer-logo {
    width: 132px;
    height: auto;
    object-fit: contain;
}

.drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFE8EE;
    color: #B81F35;
    font-size: 28px;
    line-height: 1;
}

.drawer-login {
    width: 100%;
    margin: 18px 0 12px;
}

.drawer-nav {
    display: grid;
    gap: 8px;
}

.drawer-nav a {
    color: #7A1022;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    padding: 12px 12px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.15);
}

.site-main {
    min-height: 62vh;
}

.container,
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-block,
.page-hero {
    max-width: 1200px;
    margin: 30px auto 24px;
    padding: 42px;
    border-radius: 26px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 48%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
}

h1,
.page-title,
.hero-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    line-height: 1.16;
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
}

h2,
.section-title {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #9A1730;
    line-height: 1.25;
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 38px);
}

h3,
.card-title,
.zone-card h3,
.info-card h3 {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    color: #B81F35;
    line-height: 1.28;
    margin: 0 0 10px;
}

p,
li,
.faq-answer,
.section-desc,
.card p,
.zone-card p,
.info-card p {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 400;
}

p {
    margin: 0 0 14px;
}

.section-desc,
.lead,
.meta-text,
.small-note {
    color: #7A5D65;
}

.nav a,
.text-link,
.meta-text,
.small-note {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
}

.text-link {
    color: #B81F35;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.text-link:hover {
    color: #E94255;
}

.main-btn {
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    background: linear-gradient(135deg, #FF8CA3 0%, #E94255 45%, #B81F35 100%);
    color: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(184,31,53,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(184,31,53,0.28);
}

.banner-slider {
    max-width: 1200px;
    margin: 28px auto 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 48%, #FFE8EE 100%);
    border: 1px solid rgba(233,66,85,0.22);
    box-shadow: 0 18px 42px rgba(184,31,53,0.14);
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform .55s ease;
}

.slider-slide {
    min-width: 100%;
    background: #FFFFFF;
}

.slider-slide img,
.banner-slider img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    background: #FFF9FA;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.88);
    color: #B81F35;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(122,16,34,0.16);
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    background: rgba(255,255,255,0.65);
    cursor: pointer;
}

.slider-dot.active {
    background: #E94255;
}

.intro-strip,
.notice-box {
    max-width: 1200px;
    margin: 0 auto 34px;
    padding: 24px 28px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
}

.pill-nav {
    max-width: 1200px;
    margin: 0 auto 34px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    background: #FFE8EE;
    color: #B81F35;
    border: 1px solid rgba(233,66,85,0.18);
    font-weight: 700;
}

.grid-10,
.card-grid,
.zone-grid,
.help-grid,
.faq-grid,
.feature-grid {
    display: grid;
    gap: 18px;
}

.grid-10 {
    grid-template-columns: repeat(5, 1fr);
}

.card-grid,
.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.zone-grid {
    grid-template-columns: repeat(3, 1fr);
}

.help-grid,
.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}

.section-space {
    margin: 50px auto;
}

.card,
.zone-card,
.info-card,
.faq-item,
.content-panel {
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    color: #2A1E23;
    border-radius: 22px;
    padding: 24px;
}

.card .num,
.info-number,
.red-label {
    color: #E94255;
    font-family: "Charis SIL", Georgia, serif;
    font-weight: 700;
    letter-spacing: .02em;
}

.red-label {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #FFE8EE;
}

.card ul,
.content-panel ul,
.info-card ul,
.app-copy ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.card li,
.content-panel li,
.info-card li,
.app-copy li {
    margin-bottom: 6px;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
    margin: 34px 0;
}

.split-row.reverse .content-visual {
    order: 2;
}

.split-row.reverse .content-panel {
    order: 1;
}

.content-visual,
.hero-visual,
.app-visual,
.zone-media,
.promo-banner {
    border-radius: 22px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    padding: 14px;
}

.content-img,
.zone-card img,
.app-section img,
.hero-visual img,
.promo-banner img,
.category-banners img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.content-img,
.hero-visual img,
.app-section img {
    width: 100%;
    border-radius: 16px;
    background: #FFF9FA;
}

.zone-card {
    overflow: hidden;
    padding: 0;
}

.zone-card .zone-body {
    padding: 22px;
}

.zone-card img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    background: #FFF9FA;
    border-bottom: 1px solid rgba(233,66,85,0.14);
}

.graphic-card {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, #FFE8EE 0, #FFFFFF 42%, #FFF5F7 100%);
    color: #B81F35;
    font-weight: 700;
    font-size: 38px;
}

.app-section {
    max-width: 1200px;
    margin: 52px auto;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #FFE8EE 0%, #FFFFFF 54%, #FFF5F7 100%);
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 18px 42px rgba(184,31,53,0.13);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px;
    align-items: center;
}

.category-banners {
    max-width: 1200px;
    margin: 24px auto 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 20px;
}

.category-banners img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 14px 32px rgba(184,31,53,0.12);
}

.article-body {
    max-width: 980px;
    margin: 0 auto 54px;
    padding: 0 20px;
}

.article-body .content-panel {
    margin-bottom: 22px;
}

.article-media {
    max-width: 980px;
    margin: 0 auto 28px;
    padding: 0 20px;
}

.article-media img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 22px;
    background: #FFFFFF;
    border: 1px solid rgba(233,66,85,0.18);
    box-shadow: 0 16px 40px rgba(184,31,53,0.10);
    padding: 12px;
}

.faq-item h3 {
    color: #B81F35;
}

.responsible-box {
    max-width: 1200px;
    margin: 52px auto;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #7A1022 0%, #B81F35 100%);
    color: #FFF5F7;
    box-shadow: 0 18px 42px rgba(122,16,34,0.24);
}

.responsible-box h2,
.responsible-box p {
    color: #FFF5F7;
}

.site-footer {
    background: #7A1022;
    color: #FFF5F7;
    margin-top: 64px;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 20px;
    display: grid;
    grid-template-columns: 1.35fr .85fr .85fr 1.1fr;
    gap: 28px;
}

.footer-wrap h3 {
    color: #FFFFFF;
}

.footer-wrap p {
    color: #FFF5F7;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-links a {
    color: #FFF5F7;
    font-weight: 700;
}

.footer-links a:hover {
    color: #FF8CA3;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.16);
    text-align: center;
    padding: 16px 20px;
    color: #FFF5F7;
}

@media (max-width: 1180px) {
    .main-nav {
        gap: 12px;
    }
    .main-nav a {
        font-size: 14px;
    }
}

@media (max-width: 980px) {
    .desktop-header {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .mobile-logo-link {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .mobile-logo-link .site-logo {
        width: 116px;
    }
    .hero-block,
    .page-hero {
        margin: 22px 20px;
        padding: 28px;
    }
    .page-hero-grid,
    .split-row,
    .app-section {
        grid-template-columns: 1fr;
    }
    .split-row.reverse .content-visual,
    .split-row.reverse .content-panel {
        order: initial;
    }
    .grid-10 {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-grid,
    .zone-grid,
    .help-grid,
    .faq-grid,
    .feature-grid,
    .footer-wrap,
    .category-banners {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .header-wrap {
        padding: 10px 14px;
    }
    .mobile-login {
        padding: 8px 10px;
        font-size: 12px;
    }
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    .banner-slider {
        margin: 18px 14px 26px;
        border-radius: 16px;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    .slider-arrow.prev {
        left: 8px;
    }
    .slider-arrow.next {
        right: 8px;
    }
    .intro-strip,
    .notice-box,
    .responsible-box,
    .app-section {
        margin-left: 14px;
        margin-right: 14px;
        padding: 22px;
    }
    .container,
    .section {
        padding: 0 14px;
    }
    .grid-10,
    .card-grid,
    .zone-grid,
    .help-grid,
    .faq-grid,
    .feature-grid,
    .footer-wrap,
    .category-banners {
        grid-template-columns: 1fr;
    }
    .card,
    .zone-card .zone-body,
    .info-card,
    .faq-item,
    .content-panel {
        padding: 20px;
    }
    .hero-block,
    .page-hero {
        margin: 18px 14px;
        padding: 24px 20px;
    }
    .pill-nav {
        padding: 0 14px;
        gap: 9px;
    }
    .pill-nav a {
        padding: 9px 12px;
        font-size: 14px;
    }
}
