* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f2eb;
            color: #2e2a24;
            line-height: 1.75;
            font-size: 16px;
        }
        a {
            color: #2d6a4f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #1b4332;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #c9a84c;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5d77b, #c9a84c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
            font-family: 'Georgia', 'Times New Roman', serif;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #c9a84c;
            margin-right: 6px;
            font-size: 1.8rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5d77b;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8e0d0;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(201, 168, 76, 0.2);
            color: #f5d77b;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
            color: #c9a84c;
        }
        .breadcrumb {
            background: #e8e2d8;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cec0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0 20px;
            max-width: 1180px;
            margin: 0 auto;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #5a4f42;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #9a8a78;
            font-weight: 700;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #2d6a4f;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #1b4332;
        }
        .hero {
            background: linear-gradient(135deg, #1e2a38 0%, #2d3e4f 100%);
            padding: 48px 0 40px;
            text-align: center;
            color: #f5f0e8;
            border-bottom: 3px solid #c9a84c;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            line-height: 1.2;
            margin-bottom: 12px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .hero h1 i {
            color: #f5d77b;
            margin-right: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            margin: 0 auto 18px;
            color: #d6cec0;
        }
        .hero .last-updated {
            font-size: 0.95rem;
            color: #c9a84c;
            background: rgba(255, 255, 255, 0.06);
            display: inline-block;
            padding: 6px 20px;
            border-radius: 30px;
            border: 1px solid rgba(201, 168, 76, 0.3);
        }
        .search-section {
            background: #fffcf7;
            padding: 28px 0;
            border-bottom: 1px solid #e0d8ce;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #d6cec0;
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            font-size: 1rem;
            background: #fff;
            outline: none;
            color: #2e2a24;
        }
        .search-form input::placeholder {
            color: #9a8a78;
        }
        .search-form button {
            background: #2d6a4f;
            color: #fff;
            border: none;
            padding: 14px 28px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #1b4332;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .content-section {
            margin-bottom: 48px;
        }
        .content-section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1b4332;
            border-left: 6px solid #c9a84c;
            padding-left: 18px;
            margin-bottom: 20px;
            margin-top: 12px;
        }
        .content-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d6a4f;
            margin-top: 28px;
            margin-bottom: 12px;
            padding-bottom: 6px;
            border-bottom: 2px solid #e0d8ce;
        }
        .content-section h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d3328;
            margin-top: 20px;
            margin-bottom: 8px;
        }
        .content-section p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: #2e2a24;
        }
        .content-section ul,
        .content-section ol {
            margin: 12px 0 20px 24px;
        }
        .content-section li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .highlight-box {
            background: #f0ebe2;
            border-left: 6px solid #c9a84c;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #1b4332;
        }
        .feature-image {
            margin: 28px 0;
            border-radius: 14px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .feature-image figcaption {
            font-size: 0.9rem;
            color: #6a5e4e;
            text-align: center;
            margin-top: 8px;
            font-style: italic;
        }
        .inline-link-list {
            background: #f8f4ee;
            padding: 16px 20px;
            border-radius: 10px;
            margin: 16px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .inline-link-list a {
            font-weight: 500;
            padding: 4px 0;
        }
        .sidebar-card {
            background: #fffcf7;
            border-radius: 14px;
            padding: 24px 20px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0d8ce;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1b4332;
            margin-bottom: 14px;
            border-bottom: 2px solid #c9a84c;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
            padding: 4px 0;
        }
        .sidebar-card li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card li a i {
            color: #c9a84c;
            width: 18px;
            text-align: center;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0 20px;
        }
        .feedback-card {
            background: #f8f4ee;
            border-radius: 14px;
            padding: 24px 24px 28px;
            border: 1px solid #e0d8ce;
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1b4332;
            margin-bottom: 16px;
            border-bottom: 2px solid #c9a84c;
            padding-bottom: 8px;
        }
        .feedback-card label {
            display: block;
            font-weight: 600;
            margin: 12px 0 4px;
            color: #3d3328;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #d6cec0;
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fff;
            color: #2e2a24;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #2d6a4f;
            box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #2d6a4f;
            color: #fff;
            border: none;
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            background: #1b4332;
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d6cec0;
            cursor: pointer;
            margin: 8px 0 4px;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c542;
            transform: scale(1.1);
        }
        .friend-links-section {
            background: #1a1a2e;
            color: #e8e0d0;
            padding: 32px 0;
            border-top: 4px solid #c9a84c;
        }
        .friend-links-section h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f5d77b;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 8px 0;
        }
        friend-link a {
            color: #d6cec0;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: rgba(201, 168, 76, 0.15);
            color: #f5d77b;
            text-decoration: none;
        }
        .site-footer {
            background: #0f0f1a;
            color: #9a8a78;
            padding: 28px 0;
            font-size: 0.9rem;
            border-top: 1px solid #2a2a3e;
        }
        .site-footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .site-footer a {
            color: #c9a84c;
        }
        .site-footer a:hover {
            color: #f5d77b;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .sidebar {
                order: 2;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-section h2 {
                font-size: 1.6rem;
            }
            .content-section h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form input {
                border-radius: 16px 16px 0 0;
            }
            .search-form button {
                border-radius: 0 0 16px 16px;
                justify-content: center;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 14px;
            }
            .feedback-card {
                padding: 18px 16px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #c9a84c;
            color: #1a1a2e;
        }
