*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f8f7f2;
            color: #1a1a2e;
            line-height: 1.75;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: color .3s, border-color .3s;
        }
        a:hover {
            color: #8b6b0a;
            border-color: #b8860b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 40%, #2d1b3d 100%);
            padding: 20px 0;
            border-bottom: 3px solid #c9a227;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #f4d03f, #c9a227, #f4d03f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            border-bottom: none;
            font-family: Georgia, serif;
            text-shadow: 0 0 30px rgba(201, 162, 39, .3);
        }
        .my-logo:hover {
            color: transparent;
            border-bottom: none;
            filter: drop-shadow(0 0 10px rgba(244, 208, 63, .5));
        }
        .logo-wrap {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .logo-domain {
            font-size: .75rem;
            color: #f4d03f;
            opacity: .8;
            letter-spacing: 1px;
            margin-top: 4px;
            font-family: monospace;
        }
        .nav-menu {
            display: flex;
            gap: 28px;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8e8f0;
            font-size: .9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: color .3s, border-color .3s;
        }
        .nav-menu a:hover {
            color: #f4d03f;
            border-bottom-color: #c9a227;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #c9a227;
            border-radius: 6px;
            padding: 8px 12px;
            cursor: pointer;
            color: #c9a227;
            font-size: 1.3rem;
            transition: all .3s;
        }
        .hamburger:hover {
            background: #c9a227;
            color: #0f0f1a;
        }
        .breadcrumb-wrapper {
            background: #fff;
            border-bottom: 1px solid #e5e0d4;
            padding: 12px 0;
        }
        .breadcrumb {
            font-size: .85rem;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            list-style: none;
        }
        .breadcrumb li+li:before {
            content: '›';
            margin: 0 8px;
            color: #999;
        }
        .breadcrumb a {
            color: #666;
            border-bottom: none;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 70%, #4a2c5c 100%);
            color: #fff;
            padding: 70px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="30" cy="40" r="2" fill="%23f4d03f" opacity="0.4"/><circle cx="160" cy="80" r="3" fill="%23f4d03f" opacity="0.3"/><circle cx="100" cy="150" r="2" fill="%23f4d03f" opacity="0.5"/><circle cx="50" cy="120" r="1.5" fill="%23fff" opacity="0.3"/><circle cx="180" cy="30" r="1" fill="%23fff" opacity="0.2"/></svg>');
            background-size: 300px 300px;
            opacity: .5;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #f4d03f, #fff, #f4d03f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.15rem;
            opacity: .9;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(244, 208, 63, .15);
            border: 1px solid #f4d03f;
            border-radius: 50px;
            padding: 6px 18px;
            font-size: .8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #f4d03f;
            margin-bottom: 16px;
        }
        .main-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 50px 0;
        }
        .content-area {
            max-width: 850px;
            margin: 0 auto;
        }
        .article-body {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, .05);
        }
        .article-body h2 {
            font-size: 2rem;
            color: #0f0f1a;
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #f4d03f;
            font-family: Georgia, serif;
        }
        .article-body h3 {
            font-size: 1.4rem;
            color: #2d1b3d;
            margin: 30px 0 15px;
            font-family: Georgia, serif;
        }
        .article-body h4 {
            font-size: 1.1rem;
            color: #555;
            margin: 20px 0 10px;
            font-weight: 700;
        }
        .article-body p {
            margin-bottom: 18px;
            font-size: 1.02rem;
        }
        .article-body ul,
        .article-body ol {
            margin: 0 0 20px 20px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 4px solid #f4d03f;
            padding: 20px 24px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stat-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-item {
            background: linear-gradient(135deg, #0f0f1a, #2d1b3d);
            border-radius: 12px;
            padding: 24px 16px;
            text-align: center;
            color: #fff;
            border-bottom: 3px solid #c9a227;
        }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f4d03f;
            display: block;
        }
        .stat-item .label {
            font-size: .8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: .8;
            margin-top: 6px;
        }
        .figure-img {
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
        }
        .figure-img img {
            width: 100%;
            object-fit: cover;
        }
        .figure-img figcaption {
            padding: 12px 16px;
            background: #f8f7f2;
            font-size: .85rem;
            color: #666;
            text-align: center;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #c9a227;
            background: #faf6e9;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: .95rem;
        }
        th {
            background: #0f0f1a;
            color: #f4d03f;
            padding: 12px;
            text-align: left;
        }
        td {
            padding: 10px 12px;
            border-bottom: 1px solid #e5e0d4;
        }
        tr:hover td {
            background: #faf6e9;
        }
        .search-section {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
            border: 1px solid #e5e0d4;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .search-form input[type="search"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border: 2px solid #e0ddd3;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color .3s;
        }
        .search-form input[type="search"]:focus {
            border-color: #c9a227;
        }
        .search-form button {
            background: linear-gradient(135deg, #c9a227, #f4d03f);
            color: #0f0f1a;
            border: none;
            border-radius: 50px;
            padding: 14px 28px;
            font-weight: 700;
            font-size: .95rem;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 162, 39, .4);
        }
        .comments-section {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
            border: 1px solid #e5e0d4;
        }
        .comment-list {
            list-style: none;
            margin: 20px 0 0 !important;
            padding: 0;
        }
        .comment-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: #faf6e9;
            border-radius: 8px;
        }
        .comment-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #c9a227, #f4d03f);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #0f0f1a;
            flex-shrink: 0;
        }
        .comment-body {
            flex: 1;
        }
        .comment-author {
            font-weight: 700;
            font-size: .9rem;
        }
        .comment-date {
            font-size: .75rem;
            color: #999;
            margin-left: 8px;
        }
        .comment-text {
            font-size: .9rem;
            margin-top: 4px;
            line-height: 1.5;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid #e0ddd3;
            border-radius: 8px;
            font-size: .95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border-color .3s;
        }
        .comment-form textarea:focus {
            border-color: #c9a227;
        }
        .comment-form button {
            background: #0f0f1a;
            color: #f4d03f;
            border: none;
            border-radius: 6px;
            padding: 12px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            margin-top: 10px;
        }
        .comment-form button:hover {
            background: #2d1b3d;
        }
        .rating-section {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
            border: 1px solid #e5e0d4;
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            letter-spacing: 6px;
            display: inline-flex;
            gap: 4px;
            transition: color .2s;
        }
        .stars .fa-star {
            transition: transform .2s, color .2s;
        }
        .stars .fa-star:hover,
        .stars .fa-star.active {
            color: #f4d03f;
            transform: scale(1.2);
        }
        .rating-result {
            font-size: .9rem;
            color: #666;
            margin-top: 10px;
        }
        .rating-value {
            font-weight: 700;
            color: #0f0f1a;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f0ede4;
            border-radius: 50px;
            padding: 8px 16px;
            font-size: .8rem;
            color: #666;
            margin-top: 20px;
        }
        .site-footer {
            background: #0f0f1a;
            color: #a0a0b0;
            padding: 50px 0 20px;
            border-top: 3px solid #c9a227;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }
        .footer-title {
            color: #f4d03f;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: Georgia, serif;
        }
        .footer-links {
            list-style: none;
            margin: 0 !important;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #a0a0b0;
            font-size: .9rem;
        }
        .footer-links a:hover {
            color: #f4d03f;
        }
        .copyright {
            text-align: center;
            padding: 25px 0 0;
            font-size: .8rem;
            color: #666;
            line-height: 1.8;
        }
        .copyright a {
            color: #a0a0b0;
        }
        friend-link {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        friend-link a {
            color: #a0a0b0;
            font-size: .9rem;
        }
        friend-link a:hover {
            color: #f4d03f;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                padding: 20px 0 10px;
                border-top: 1px solid rgba(255, 255, 255, .1);
                margin-top: 10px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 12px 0;
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .article-body {
                padding: 24px 18px;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .hero {
                padding: 50px 0 40px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .header-inner {
                gap: 10px;
            }
        }
        .author-box {
            display: flex;
            gap: 16px;
            margin: 30px 0;
            padding: 20px;
            background: #faf6e9;
            border-radius: 8px;
            border: 1px solid #e5e0d4;
        }
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1a1a2e, #4a2c5c);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f4d03f;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .author-info {
            font-size: .9rem;
        }
        .author-info strong {
            font-size: 1.05rem;
            display: block;
        }
        .author-info .role {
            color: #888;
            font-size: .8rem;
        }
