* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f9f6f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8a6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a3c2a 0%, #2a5a3e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #d4a017;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #f5e6c8;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 2px 2px 0 #8a6508;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5e6c8;
        }
        .my-logo span {
            color: #d4a017;
        }
        .my-logo small {
            font-size: 13px;
            letter-spacing: 0.5px;
            display: block;
            font-weight: 400;
            color: #c4b48a;
            text-shadow: none;
            text-transform: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5e6c8;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f5e6c8;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 15px;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .nav-menu a:hover {
            background: #d4a017;
            color: #1a3c2a;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #ede7dc;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #dcd5c6;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 8px;
            color: #8a7f6b;
        }
        .breadcrumb a {
            color: #6b5f4a;
        }
        .breadcrumb .active {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            color: #1a3c2a;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .hero h1 i {
            color: #d4a017;
        }
        .hero p {
            font-size: 18px;
            color: #5a4f3a;
            max-width: 800px;
            margin: 0 auto 16px;
        }
        .update-badge {
            display: inline-block;
            background: #d4a017;
            color: #1a3c2a;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        section {
            padding: 40px 0;
            border-bottom: 1px solid #e5ddd0;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1a3c2a;
            margin-bottom: 20px;
            border-left: 6px solid #d4a017;
            padding-left: 18px;
        }
        h2 i {
            color: #d4a017;
            margin-right: 8px;
        }
        h3 {
            font-size: 24px;
            font-weight: 600;
            color: #2a5a3e;
            margin-top: 28px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 20px;
            font-weight: 600;
            color: #3d6b4e;
            margin-top: 20px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            color: #3a342c;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 24px 0;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .card {
            background: #fffcf7;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e5ddd0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }
        .card h3 {
            margin-top: 0;
        }
        .card i {
            color: #d4a017;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #ede7dc;
            padding: 12px 20px;
            font-size: 14px;
            color: #5a4f3a;
            font-style: italic;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }
        .link-list a {
            display: block;
            padding: 12px 18px;
            background: #f5f0e8;
            border-radius: 8px;
            border-left: 4px solid #d4a017;
            font-weight: 500;
            transition: background 0.2s ease, transform 0.2s ease;
        }
        .link-list a:hover {
            background: #e5ddd0;
            transform: translateX(4px);
            text-decoration: none;
        }
        .search-box {
            display: flex;
            max-width: 560px;
            margin: 20px 0;
            border-radius: 40px;
            overflow: hidden;
            border: 2px solid #d4a017;
            background: #fff;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            font-size: 16px;
            outline: none;
            background: transparent;
        }
        .search-box button {
            padding: 14px 28px;
            background: #d4a017;
            border: none;
            color: #1a3c2a;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .search-box button:hover {
            background: #b8860b;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 24px 0;
        }
        @media (max-width: 768px) {
            .interact-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #2d2a24;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dcd5c6;
            border-radius: 8px;
            font-size: 15px;
            background: #fffcf7;
            transition: border-color 0.2s ease;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #d4a017;
            outline: none;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary {
            background: #d4a017;
            color: #1a3c2a;
        }
        .btn-primary:hover {
            background: #b8860b;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: #1a3c2a;
            color: #f5e6c8;
        }
        .btn-secondary:hover {
            background: #2a5a3e;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 28px;
            color: #dcd5c6;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #d4a017;
        }
        footer {
            background: #1a3c2a;
            color: #e5ddd0;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer a {
            color: #d4a017;
        }
        footer a:hover {
            color: #f5e6c8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-grid h4 {
            color: #f5e6c8;
            font-weight: 700;
            margin-top: 0;
        }
        friend-link {
            display: block;
            padding: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 14px;
            background: rgba(212, 160, 23, 0.15);
            border-radius: 6px;
            font-size: 14px;
            transition: background 0.2s ease;
        }
        friend-link a:hover {
            background: rgba(212, 160, 23, 0.3);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #2a5a3e;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #a89f8a;
        }
        .copyright strong {
            color: #d4a017;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 12px;
                border-radius: 4px;
                background: rgba(255, 255, 255, 0.05);
            }
            .hero h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 20px;
            }
            .container {
                padding: 0 16px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 24px;
            }
            .my-logo {
                font-size: 22px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 12px;
            }
            .search-box input {
                border-radius: 0;
            }
            .search-box button {
                border-radius: 0;
            }
        }
        @media print {
            header,
            .breadcrumb,
            .search-box,
            .interact-grid,
            footer {
                display: none;
            }
            body {
                background: #fff;
                color: #000;
            }
        }
        .highlight {
            background: #fcf4e0;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 28px;
            margin-right: 8px;
        }
        .tagline {
            font-size: 20px;
            font-weight: 500;
            color: #5a4f3a;
            border-bottom: 2px dashed #d4a017;
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
