* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f2eb;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf7;
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.06);
            border-radius: 28px;
            padding: 20px 24px 32px;
            position: relative;
            overflow: hidden;
        }
        @media (min-width:768px) {
            .container {
                padding: 32px 48px 48px;
            }
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #e8e0d5;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #4a3728;
            background: linear-gradient(145deg, #b8860b, #7a5a0a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #7a6b5a;
            color: #7a6b5a;
            letter-spacing: 0.5px;
        }
        .my-logo a {
            text-decoration: none;
            background: inherit;
            -webkit-text-fill-color: inherit;
            color: inherit;
        }
        .nav-toggle {
            display: block;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #4a3728;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #ede6dc;
        }
        @media (min-width:768px) {
            .nav-toggle {
                display: none;
            }
        }
        .nav-menu {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 6px;
            padding: 16px 0 8px;
        }
        .nav-menu.open {
            display: flex;
        }
        @media (min-width:768px) {
            .nav-menu {
                display: flex !important;
                flex-direction: row;
                width: auto;
                gap: 20px;
                padding: 0;
                align-items: center;
            }
        }
        .nav-menu a {
            font-weight: 600;
            padding: 6px 0;
            color: #4a3728;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            border-bottom-color: #b8860b;
            color: #b8860b;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: #8a7a6a;
        }
        .breadcrumb a {
            color: #8a7a6a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb span {
            color: #b8860b;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #2d1f12;
            margin: 24px 0 12px;
            line-height: 1.2;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3d2b1a;
            margin: 40px 0 12px;
            border-left: 6px solid #b8860b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #4a3728;
            margin: 28px 0 10px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #5a4738;
            margin: 20px 0 8px;
        }
        p {
            margin: 0 0 16px;
            color: #3d352c;
        }
        .hero-img-wrap {
            margin: 20px 0 28px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #e8e0d5;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            min-height: 200px;
            max-height: 480px;
        }
        .hero-img-wrap .img-caption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #5a4a3a;
            background: #f5f0e8;
            font-style: italic;
        }
        .update-badge {
            display: inline-block;
            background: #e8e0d5;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #5a4a3a;
            margin: 4px 0 16px;
            font-weight: 500;
        }
        .feature-box {
            background: #f8f4ee;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 24px 0;
            border: 1px solid #e8e0d5;
        }
        .feature-box ul {
            padding-left: 24px;
            margin: 8px 0;
        }
        .feature-box li {
            margin: 6px 0;
        }
        .btn {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #9a7209;
            color: #fff;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b8860b;
            color: #b8860b;
        }
        .btn-outline:hover {
            background: #b8860b;
            color: #fff;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            padding: 8px 0 16px;
        }
        .link-list a {
            font-weight: 500;
            padding: 2px 0;
        }
        .link-list a i {
            margin-right: 6px;
            font-size: 0.8rem;
        }
        .search-section {
            background: #f8f4ee;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid #e8e0d5;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #ddd6cc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
        }
        .search-form button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #b8860b;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #9a7209;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        @media (min-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .card {
            background: #f8f4ee;
            border-radius: 18px;
            padding: 24px 28px;
            border: 1px solid #e8e0d5;
        }
        .card h3 {
            margin-top: 0;
        }
        .form-group {
            margin: 12px 0;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #4a3728;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #ddd6cc;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #b8860b;
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.6rem;
            margin: 6px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd6cc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #e8e0d5;
        }
        friend-link {
            display: block;
            padding: 12px 0 8px;
            font-weight: 500;
            color: #5a4a3a;
        }
        friend-link a {
            margin: 0 12px 0 4px;
        }
        .copyright {
            font-size: 0.85rem;
            color: #8a7a6a;
            padding: 16px 0 8px;
            text-align: center;
        }
        @media (max-width:767px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 12px 14px 24px;
            }
            .feature-box,
            .search-section,
            .card {
                padding: 18px 16px;
            }
        }
        .toc {
            background: #f8f4ee;
            border-radius: 16px;
            padding: 18px 24px;
            margin: 20px 0 28px;
            border: 1px solid #e8e0d5;
        }
        .toc ul {
            padding-left: 20px;
            margin: 6px 0;
        }
        .toc li {
            margin: 4px 0;
        }
        .highlight {
            background: #fdf6e7;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .guild-table {
            width: 100%;
            border-collapse: collapse;
            margin: 16px 0;
            font-size: 0.9rem;
        }
        .guild-table th,
        .guild-table td {
            padding: 10px 14px;
            border: 1px solid #ddd6cc;
            text-align: left;
        }
        .guild-table th {
            background: #ede6dc;
            font-weight: 600;
        }
        .guild-table tr:nth-child(even) {
            background: #f8f4ee;
        }
        @media (max-width:600px) {
            .guild-table {
                font-size: 0.78rem;
            }
            .guild-table th,
            .guild-table td {
                padding: 6px 8px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #b8860b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            border: none;
            transition: background 0.2s, transform 0.2s;
            z-index: 100;
        }
        .scroll-top:hover {
            background: #9a7209;
            transform: scale(1.05);
        }
        @media (max-width:600px) {
            .scroll-top {
                bottom: 16px;
                right: 16px;
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
        }
