        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; }
        html { scroll-behavior: smooth; }
        body { background: #fef6f8; color: #2c1a22; line-height: 1.7; transition: background 0.3s, color 0.3s; }
        body.dark { background: #140c10; color: #f0e0e4; }
        .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

        .glass { background: rgba(255, 245, 247, 0.50); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-radius: 32px; border: 1px solid rgba(240, 98, 146, 0.08); box-shadow: 0 12px 48px rgba(240, 98, 146, 0.04); }
        .dark .glass { background: rgba(36, 20, 30, 0.55); border-color: rgba(240, 98, 146, 0.04); box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5); }
        .card { border-radius: 28px; background: rgba(255, 245, 247, 0.60); backdrop-filter: blur(12px); padding: 28px 26px; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease; border: 1px solid rgba(240, 98, 146, 0.04); }
        .dark .card { background: rgba(36, 20, 30, 0.50); border-color: rgba(240, 98, 146, 0.02); }
        .card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 44px rgba(240, 98, 146, 0.06); }
        .dark .card:hover { box-shadow: 0 20px 44px rgba(0, 0, 0, 0.6); }

        .hero { background: linear-gradient(145deg, #fce4ec 0%, #f8bbd0 30%, #f48fb1 60%, #f06292 100%); color: #1a0e14; padding: 80px 0 70px; border-radius: 0 0 80px 80px; margin-bottom: 48px; position: relative; overflow: hidden; }
        .dark .hero { background: linear-gradient(145deg, #1a0e14 0%, #2a1420 30%, #3a1828 60%, #4a1a2e 100%); color: #fce4ec; }
        .hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .hero::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .hero-content { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
        .hero-text { flex: 1 1 55%; }
        .hero h1 { font-size: clamp(2.6rem, 7vw, 4.2rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
        .hero h1 .accent { color: #880e4f; }
        .dark .hero h1 .accent { color: #f8bbd0; }
        .hero p { font-size: 1.2rem; opacity: 0.85; max-width: 560px; margin-top: 16px; }
        .hero-badge-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
        .badge { background: rgba(136, 14, 79, 0.08); backdrop-filter: blur(6px); padding: 6px 22px; border-radius: 60px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(136, 14, 79, 0.06); color: #880e4f; }
        .dark .badge { background: rgba(248, 187, 208, 0.06); color: #f8bbd0; border-color: rgba(248, 187, 208, 0.04); }
        .badge-light { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.06); color: inherit; }
        .hero-visual { flex: 1 1 35%; display: flex; justify-content: center; align-items: center; }
        .hero-svg { width: 100%; max-width: 300px; aspect-ratio: 1/1; background: rgba(255,255,255,0.08); border-radius: 40px; display: flex; align-items: center; justify-content: center; padding: 20px; border: 2px dashed rgba(136, 14, 79, 0.08); }

        nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 0 10px; flex-wrap: wrap; gap: 12px; }
        .nav-brand { font-size: 1.6rem; font-weight: 700; color: #880e4f; letter-spacing: -0.01em; }
        .dark .nav-brand { color: #f8bbd0; }
        .nav-brand .heart { color: #f06292; }
        .nav-links { display: flex; gap: 28px; font-weight: 500; flex-wrap: wrap; }
        .nav-links a { color: inherit; text-decoration: none; font-size: 0.95rem; border-bottom: 2px solid transparent; padding-bottom: 4px; transition: 0.2s; }
        .nav-links a:hover { border-color: #f06292; color: #f06292; }
        .dark .nav-links a:hover { border-color: #f8bbd0; color: #f8bbd0; }
        .nav-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
        .search-box { display: flex; background: rgba(255,255,255,0.15); border-radius: 60px; padding: 3px 3px 3px 18px; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.04); }
        .dark .search-box { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.02); }
        .search-box input { background: transparent; border: none; padding: 8px 4px; color: inherit; width: 140px; outline: none; font-size: 0.9rem; }
        .search-box input::placeholder { color: rgba(0,0,0,0.25); }
        .dark .search-box input::placeholder { color: rgba(255,255,255,0.15); }
        .search-box button { background: #f06292; border: none; border-radius: 40px; padding: 8px 22px; font-weight: 600; color: #fff; cursor: pointer; transition: 0.2s; }
        .search-box button:hover { background: #d84a7a; transform: scale(1.02); }
        .theme-toggle { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.04); border-radius: 60px; padding: 6px 16px; color: inherit; cursor: pointer; font-size: 1.1rem; backdrop-filter: blur(4px); }
        .theme-toggle:hover { background: rgba(255,255,255,0.12); }
        .menu-toggle { display: none; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.02); border-radius: 12px; padding: 8px 16px; color: inherit; font-size: 1.6rem; cursor: pointer; }
        .breadcrumb { font-size: 0.85rem; padding: 12px 0 4px; opacity: 0.4; display: flex; gap: 6px; flex-wrap: wrap; }
        .breadcrumb a { color: inherit; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; color: #f06292; }

        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 28px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 12px; }
        .section-title .emoji { font-size: 1.8rem; }

        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }

        .img-svg { width: 100%; height: auto; aspect-ratio: 16/9; background: #fce4ec; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #880e4f; font-weight: 500; overflow: hidden; }
        .dark .img-svg { background: #1a0e14; }
        .img-svg svg { width: 100%; height: 100%; display: block; border-radius: 20px; }

        .article-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.04); }
        .dark .article-item { border-color: rgba(255,255,255,0.03); }
        .article-item:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
        .article-item h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
        .article-item .meta { font-size: 0.8rem; opacity: 0.4; display: flex; gap: 16px; flex-wrap: wrap; margin-top: 6px; }

        .back-top { position: fixed; bottom: 32px; right: 32px; background: #f06292; color: #fff; border: none; border-radius: 60px; width: 54px; height: 54px; font-size: 1.8rem; cursor: pointer; box-shadow: 0 10px 28px rgba(240, 98, 146, 0.2); z-index: 999; transition: 0.25s; display: none; align-items: center; justify-content: center; }
        .back-top.show { display: flex; }
        .back-top:hover { background: #d84a7a; transform: scale(1.08); }

        .footer { margin-top: 60px; padding: 48px 0 32px; border-top: 1px solid rgba(0,0,0,0.04); }
        .dark .footer { border-color: rgba(255,255,255,0.02); }
        .footer-links { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
        .footer-links a { color: inherit; text-decoration: none; opacity: 0.4; transition: 0.2s; }
        .footer-links a:hover { opacity: 1; color: #f06292; }
        .qr-placeholder { width: 100px; height: 100px; background: #fce4ec; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #f06292; font-size: 0.7rem; text-align: center; padding: 8px; border: 2px dashed rgba(240, 98, 146, 0.06); margin: 0 auto; }
        .dark .qr-placeholder { background: #1a0e14; }

        .fade-in { opacity: 0; transform: translateY(36px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        .count-num { font-size: 2.8rem; font-weight: 700; line-height: 1.2; color: #f06292; }
        .dark .count-num { color: #f8bbd0; }

        .carousel { display: flex; gap: 20px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
        .carousel::-webkit-scrollbar { height: 4px; background: rgba(0,0,0,0.04); border-radius: 10px; }
        .carousel::-webkit-scrollbar-thumb { background: #f06292; border-radius: 10px; }
        .carousel-item { min-width: 200px; scroll-snap-align: start; flex-shrink: 0; }

        @media (max-width: 820px) {
            .nav-links { display: none; flex-direction: column; width: 100%; gap: 10px; padding: 16px 0; }
            .nav-links.open { display: flex; }
            .menu-toggle { display: block; }
            .search-box input { width: 100px; }
            .hero { padding: 48px 0 40px; border-radius: 0 0 40px 40px; }
            .hero h1 { font-size: 2.2rem; }
            .hero-content { flex-direction: column; text-align: center; }
            .hero p { max-width: 100%; }
            .hero-badge-group { justify-content: center; }
            .grid-2 { grid-template-columns: 1fr; }
            .grid-3 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
            .grid-4 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
            .section-title { font-size: 1.7rem; }
            .carousel-item { min-width: 160px; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            .nav-brand { font-size: 1.2rem; }
            .search-box input { width: 70px; }
            .card { padding: 18px 16px; }
        }
        .flex { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
        .flex-center { justify-content: center; }
        .mt-16 { margin-top: 16px; }
        .mt-24 { margin-top: 24px; }
        .mt-32 { margin-top: 32px; }
        .text-center { text-align: center; }
        .op-6 { opacity: 0.6; }
        .text-sm { font-size: 0.9rem; }
        .accent { color: #f06292; }
        .dark .accent { color: #f8bbd0; }
        .heart-icon { color: #f06292; }