* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0d10;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #d4a853;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #f0d080;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 12px;
        }
        header {
            background: #14181c;
            border-bottom: 2px solid #2a2f35;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #d4a853;
            text-transform: uppercase;
            background: linear-gradient(135deg, #d4a853, #b8862c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 1px;
            color: #aaa;
            background: none;
            -webkit-text-fill-color: #aaa;
            display: block;
            line-height: 1.2;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a853;
            color: #d4a853;
            font-size: 26px;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #d4a85322;
        }
        nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            color: #ccc;
        }
        nav a:hover {
            border-bottom-color: #d4a853;
            color: #fff;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 16px 0 8px 0;
                border-top: 1px solid #2a2f35;
                margin-top: 10px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                font-size: 17px;
                border-bottom: 1px solid #222;
            }
            .my-logo {
                font-size: 22px;
            }
        }
        .breadcrumb {
            padding: 14px 0 6px 0;
            font-size: 14px;
            color: #999;
            max-width: 1120px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #b99a5a;
        }
        .breadcrumb span {
            color: #666;
        }
        main {
            max-width: 1120px;
            margin: 20px auto 40px;
        }
        h1 {
            font-size: 38px;
            font-weight: 800;
            color: #f0e6d2;
            margin: 20px 0 10px 0;
            line-height: 1.2;
            border-left: 6px solid #d4a853;
            padding-left: 20px;
        }
        h2 {
            font-size: 28px;
            font-weight: 700;
            color: #e6d5b8;
            margin: 40px 0 16px 0;
            border-bottom: 2px solid #2f363e;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 22px;
            font-weight: 600;
            color: #dcc9a8;
            margin: 30px 0 12px 0;
        }
        h4 {
            font-size: 18px;
            font-weight: 600;
            color: #cfbe9a;
            margin: 20px 0 8px 0;
        }
        p {
            margin: 16px 0;
            color: #d5d2cd;
        }
        .last-updated {
            font-size: 14px;
            color: #888;
            margin: 4px 0 20px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .last-updated i {
            color: #d4a853;
        }
        .content-card {
            background: #151a1f;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 28px 0;
            border: 1px solid #2a3038;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .highlight {
            background: #1e252d;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            color: #d4a853;
        }
        .emoji-big {
            font-size: 28px;
            margin-right: 8px;
        }
        ul,
        ol {
            padding-left: 28px;
            margin: 16px 0;
            color: #d0ccc6;
        }
        li {
            margin: 6px 0;
        }
        blockquote {
            border-left: 4px solid #d4a853;
            background: #1a2128;
            padding: 16px 24px;
            margin: 20px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c9c3b8;
        }
        .form-section {
            background: #151a1f;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 30px 0;
            border: 1px solid #2a3038;
        }
        .form-section h2 {
            border-bottom: none;
            margin-top: 0;
            padding-bottom: 0;
        }
        .form-group {
            margin: 16px 0;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #c9c3b8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2f363e;
            background: #1d242b;
            color: #e8e6e3;
            font-size: 15px;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d4a853;
            box-shadow: 0 0 0 3px #d4a85333;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #d4a853;
            color: #0b0d10;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #e6c06a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px #d4a85344;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #d4a853;
            color: #d4a853;
        }
        .btn-outline:hover {
            background: #d4a85322;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 30px;
            cursor: pointer;
            color: #555;
            transition: 0.2s;
        }
        .star-rating .star {
            transition: 0.2s;
            color: #555;
        }
        .star-rating .star.active,
        .star-rating .star:hover {
            color: #f5c842;
        }
        .star-rating .star:hover~.star {
            color: #555;
        }
        footer {
            background: #14181c;
            border-top: 2px solid #2a2f35;
            padding: 32px 0 20px;
            margin-top: 50px;
        }
        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 12px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #d4a853;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .footer-col a {
            display: block;
            padding: 4px 0;
            color: #aaa;
            font-size: 14px;
        }
        .footer-col a:hover {
            color: #d4a853;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #222;
            margin-top: 16px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #aaa;
            font-size: 14px;
        }
        friend-link a:hover {
            color: #d4a853;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 0;
            font-size: 14px;
            color: #777;
            border-top: 1px solid #222;
            margin-top: 16px;
        }
        .copyright strong {
            color: #b99a5a;
        }
        @media (max-width: 600px) {
            h1 {
                font-size: 26px;
                padding-left: 14px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 18px;
            }
            .content-card,
            .form-section {
                padding: 18px 16px;
            }
            .footer-inner {
                flex-direction: column;
            }
            .star-rating {
                font-size: 26px;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .gap-8 {
            gap: 8px;
        }
        .text-muted {
            color: #999;
        }
        .badge {
            background: #d4a85322;
            color: #d4a853;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
        }
