        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f2e9;
            color: #2c2c2c;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6b3fa0;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #c9a84c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a0e2e;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 3px solid #c9a84c;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.6rem;
            color: #2d1b4e;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #3e2a6b;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .badge {
            display: inline-block;
            background: #c9a84c;
            color: #1a0e2e;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .section-bg {
            background: #fffcf7;
            border-radius: 20px;
            padding: 1.8rem 1.8rem 2.2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .site-header {
            background: linear-gradient(135deg, #1a0e2e 0%, #2d1b4e 100%);
            color: #f5f0e8;
            padding: 1rem 0 0.6rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #c9a84c;
            letter-spacing: 1px;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.2rem 1rem 0.2rem 0.8rem;
            border-radius: 40px;
            border-left: 4px solid #c9a84c;
            transition: 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            background: rgba(201, 168, 76, 0.15);
            color: #f5e3a0;
        }
        .my-logo i {
            margin-right: 0.4rem;
            color: #f0d080;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c9a84c;
            color: #c9a84c;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.25s;
        }
        .nav-toggle:hover {
            background: #c9a84c;
            color: #1a0e2e;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem 0.8rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8dff5;
            padding: 0.3rem 0.7rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(201, 168, 76, 0.2);
            color: #f5e3a0;
        }
        .main-nav .nav-cta {
            background: #c9a84c;
            color: #1a0e2e;
            font-weight: 600;
        }
        .main-nav .nav-cta:hover {
            background: #f0d080;
            color: #1a0e2e;
        }
        .breadcrumb {
            background: transparent;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.85rem;
            color: #b0a0c0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #c9a84c;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #d4c8e6;
        }
        .breadcrumb a:hover {
            color: #f5e3a0;
        }
        .breadcrumb .active {
            color: #c9a84c;
        }
        .search-wrap {
            background: #fffcf7;
            border-radius: 60px;
            padding: 0.3rem 0.3rem 0.3rem 1.5rem;
            display: flex;
            align-items: center;
            max-width: 500px;
            border: 1px solid #ddd6c8;
            transition: 0.3s;
            margin: 1.5rem 0 1rem;
        }
        .search-wrap:focus-within {
            border-color: #c9a84c;
            box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
        }
        .search-wrap input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.8rem 0;
            font-size: 1rem;
            outline: none;
            color: #2c2c2c;
        }
        .search-wrap input::placeholder {
            color: #8a7a6a;
        }
        .search-wrap button {
            background: #2d1b4e;
            color: #f5f0e8;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            font-size: 0.95rem;
        }
        .search-wrap button:hover {
            background: #c9a84c;
            color: #1a0e2e;
        }
        .hero-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-img-caption {
            background: rgba(26, 14, 46, 0.75);
            color: #f5f0e8;
            padding: 0.8rem 1.4rem;
            font-size: 0.9rem;
            text-align: center;
            backdrop-filter: blur(4px);
        }
        .rating-area,
        .comment-area {
            background: #f5efe6;
            border-radius: 20px;
            padding: 1.6rem 1.8rem 2rem;
            margin: 2rem 0;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-group {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #d4c8b0;
            margin: 0.6rem 0 1rem;
            cursor: pointer;
        }
        .star-group i {
            transition: 0.2s;
        }
        .star-group i.active,
        .star-group i:hover {
            color: #c9a84c;
        }
        .rating-area form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.2rem;
        }
        .rating-area form input[type="number"] {
            width: 80px;
            padding: 0.5rem;
            border: 1px solid #ccc4b8;
            border-radius: 10px;
            background: #fffcf7;
            font-size: 1rem;
        }
        .rating-area form button,
        .comment-area form button {
            background: #2d1b4e;
            color: #f5f0e8;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .rating-area form button:hover,
        .comment-area form button:hover {
            background: #c9a84c;
            color: #1a0e2e;
        }
        .comment-area textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 1px solid #ccc4b8;
            border-radius: 16px;
            background: #fffcf7;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: 0.25s;
        }
        .comment-area textarea:focus {
            border-color: #c9a84c;
            box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
            outline: none;
        }
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .site-footer {
            background: #1a0e2e;
            color: #d4c8e6;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem 3rem;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #c9a84c;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            border-bottom: 1px solid #3e2a6b;
            padding-bottom: 0.3rem;
        }
        .footer-col a {
            color: #b8a8d0;
            display: block;
            padding: 0.25rem 0;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #f5e3a0;
        }
        friend-link {
            display: block;
            padding: 0.25rem 0;
        }
        friend-link a {
            color: #b8a8d0;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f5e3a0;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #3e2a6b;
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: #8a7aaa;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.8rem 0 0.4rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.04);
            }
            .main-nav .nav-cta {
                background: rgba(201, 168, 76, 0.2);
                color: #f5e3a0;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 20px;
                padding: 0.8rem;
                gap: 0.5rem;
            }
            .search-wrap input {
                width: 100%;
                padding: 0.5rem 0;
            }
            .search-wrap button {
                width: 100%;
                text-align: center;
            }
            .section-bg {
                padding: 1.2rem 1rem 1.6rem;
            }
            .rating-area,
            .comment-area {
                padding: 1.2rem 1rem 1.6rem;
            }
            .star-group {
                font-size: 1.4rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1.2rem;
            }
            .hero-img-wrap img {
                max-height: 220px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.2rem;
                padding: 0.1rem 0.6rem;
            }
        }
        .update-badge {
            display: inline-block;
            background: #e8ddd0;
            color: #3e2a6b;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .highlight-box {
            background: #f0ebe0;
            border-left: 5px solid #c9a84c;
            padding: 1rem 1.5rem;
            border-radius: 0 16px 16px 0;
            margin: 1.2rem 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.2rem 0;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .stat-card {
            background: #fffcf7;
            border-radius: 16px;
            padding: 1.2rem 1.4rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #e8ddd0;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #2d1b4e;
        }
        .stat-card .label {
            color: #6a5a4a;
            font-size: 0.9rem;
        }
        .quote-block {
            font-style: italic;
            background: #f5efe6;
            padding: 1.2rem 1.8rem;
            border-radius: 20px;
            margin: 1.4rem 0;
            position: relative;
        }
        .quote-block::before {
            content: "“";
            font-size: 3rem;
            color: #c9a84c;
            position: absolute;
            top: -0.2rem;
            left: 0.6rem;
            opacity: 0.4;
            line-height: 1;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #2d1b4e;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: #c9a84c;
            color: #1a0e2e;
            padding: 0.6rem 1.2rem;
            font-weight: 600;
            z-index: 200;
            border-radius: 0 0 12px 0;
        }
        .skip-link:focus {
            top: 0;
        }
