* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f9f7f4;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 24px 32px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #f0ebe4;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #b8860b;
            background: linear-gradient(145deg, #d4a017, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo span {
            font-weight: 300;
            color: #4a3728;
            -webkit-text-fill-color: #4a3728;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #4a3728;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            align-items: center;
            list-style: none;
        }
        .nav-menu a {
            text-decoration: none;
            color: #4a3728;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #b8860b;
            color: #b8860b;
        }
        .breadcrumb {
            width: 100%;
            padding: 12px 0 4px;
            font-size: 14px;
            color: #7a6b5d;
            margin-top: 4px;
        }
        .breadcrumb a {
            color: #7a6b5d;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb i {
            margin: 0 6px;
            font-size: 12px;
        }
        h1 {
            font-size: 36px;
            font-weight: 800;
            color: #1e1e2a;
            margin: 32px 0 16px;
            line-height: 1.2;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            color: #2c2c3e;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0ebe4;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #3d3d52;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #4a4a62;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 16px;
            color: #2a2a38;
        }
        .last-updated {
            display: inline-block;
            background: #f5f0ea;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 14px;
            color: #6b5d4f;
            margin-bottom: 20px;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            border-radius: 20px;
            margin: 24px 0 32px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: 0.2s;
        }
        a:hover {
            color: #8a6508;
        }
        .section-card {
            background: #faf8f5;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 40px 0;
            border: 1px solid #ede8e1;
        }
        .section-card h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #3d3d52;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd6ce;
            border-radius: 12px;
            font-size: 15px;
            background: #ffffff;
            transition: 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #b8860b;
            color: #ffffff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            display: inline-block;
        }
        .btn:hover {
            background: #9e7209;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(184, 134, 11, 0.25);
        }
        .btn-outline {
            background: transparent;
            color: #b8860b;
            border: 2px solid #b8860b;
        }
        .btn-outline:hover {
            background: #b8860b;
            color: #fff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 28px;
            color: #ddd6ce;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        .site-footer {
            border-top: 2px solid #f0ebe4;
            padding: 32px 0 20px;
            margin-top: 48px;
        }
        .footer-friends {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 15px;
        }
        .footer-friends a {
            color: #4a3728;
            text-decoration: none;
            font-weight: 500;
        }
        .footer-friends a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        .footer-copy {
            text-align: center;
            color: #8a7a6a;
            font-size: 14px;
            padding-top: 12px;
            border-top: 1px solid #f0ebe4;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            .container {
                padding: 16px 16px;
                border-radius: 16px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 18px;
            }
            .my-logo {
                font-size: 22px;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 8px 0;
                border-bottom: 1px solid #f0ebe4;
                width: 100%;
            }
            .section-card {
                padding: 18px 16px;
            }
            .star-rating label {
                font-size: 24px;
            }
            .footer-friends {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 12px 10px;
            }
            h1 {
                font-size: 22px;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        .highlight {
            background: #fef7e8;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .text-center {
            text-align: center;
        }
        .schema-hidden {
            display: none;
        }
