        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0d0f;
            color: #e8e6e1;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0b87b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffd8a8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1d22;
        }
        ::-webkit-scrollbar-thumb {
            background: #f0b87b;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #14181c, #1a1f24);
            border-bottom: 2px solid #2f3a45;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0b87b, #d38a4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(240, 184, 123, 0.25);
            transition: transform 0.3s ease;
            display: inline-block;
            font-family: 'Georgia', serif;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            background: none;
            display: block;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 18px;
        }
        nav a {
            color: #cfcfcf;
            font-size: 0.92rem;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
            position: relative;
        }
        nav a:hover {
            background: rgba(240, 184, 123, 0.12);
            color: #f0b87b;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e8e6e1;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        .breadcrumb {
            background: #151a1f;
            padding: 10px 0;
            border-bottom: 1px solid #262e36;
            font-size: 0.85rem;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 14px;
            color: #6a7a88;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #9aabba;
        }
        .breadcrumb a:hover {
            color: #f0b87b;
        }
        .breadcrumb .current {
            color: #f0b87b;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #f0b87b;
            margin-bottom: 0.5rem;
            border-left: 6px solid #f0b87b;
            padding-left: 20px;
        }
        h2 {
            font-size: 2.1rem;
            font-weight: 700;
            color: #e8d5b0;
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid #2f3a45;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #ddc7a2;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #cfb892;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d5d2cc;
        }
        .hero-image {
            margin: 2rem 0 2.5rem;
            border-radius: 18px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
        }
        .inline-links {
            background: #1a2128;
            padding: 18px 24px;
            border-radius: 16px;
            margin: 2rem 0;
            border-left: 4px solid #f0b87b;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        .inline-links a {
            font-weight: 500;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .inline-links a i {
            font-size: 0.8rem;
        }
        .interactive-section {
            background: #181e24;
            border-radius: 20px;
            padding: 30px 30px 36px;
            margin: 3rem 0;
            border: 1px solid #2c3845;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
        }
        .interactive-section h2 {
            margin-top: 0;
            border-bottom: none;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #d5c7b0;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: #0f1419;
            border: 1px solid #2f3a45;
            border-radius: 12px;
            color: #e8e6e1;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0b87b;
            box-shadow: 0 0 0 3px rgba(240, 184, 123, 0.2);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: linear-gradient(135deg, #f0b87b, #d38a4a);
            color: #0b0d0f;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
            box-shadow: 0 4px 14px rgba(240, 184, 123, 0.25);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(240, 184, 123, 0.35);
            background: linear-gradient(135deg, #fcc28c, #de9a5a);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn i {
            font-size: 1.1rem;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #4a4f55;
            cursor: pointer;
            transition: color 0.2s;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f0b87b;
            transform: scale(1.1);
        }
        .star-rating i.selected {
            color: #f0b87b;
            transform: scale(1.15);
        }
        footer {
            background: #101418;
            border-top: 2px solid #1f2a33;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #f0b87b;
            margin-bottom: 12px;
            font-size: 1.1rem;
            border-bottom: 1px solid #2a3540;
            padding-bottom: 6px;
        }
        footer a {
            color: #aabaca;
            font-size: 0.92rem;
            display: inline-block;
            margin-bottom: 6px;
        }
        footer a:hover {
            color: #f0b87b;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 18px;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #1f2a33;
            padding-top: 22px;
            font-size: 0.85rem;
            color: #7b8a99;
        }
        .copyright i {
            color: #f0b87b;
        }
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            h1 {
                font-size: 2.2rem;
                padding-left: 16px;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                flex-basis: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 4px 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding-top: 0;
                background: #14181c;
                border-radius: 0 0 16px 16px;
            }
            nav.open {
                max-height: 600px;
                padding-top: 18px;
                padding-bottom: 18px;
            }
            nav a {
                width: 100%;
                padding: 10px 16px;
                border-radius: 8px;
                font-size: 1rem;
            }
            .breadcrumb ul {
                gap: 4px 10px;
                font-size: 0.78rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 12px;
                border-left-width: 4px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            h4 {
                font-size: 1.05rem;
            }
            .interactive-section {
                padding: 20px 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .inline-links {
                flex-direction: column;
                gap: 6px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
            }
        }
        .tag {
            display: inline-block;
            background: #232d36;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #b8c9d6;
            letter-spacing: 0.3px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(240, 184, 123, 0.15), rgba(240, 184, 123, 0.02));
            padding: 0 6px;
            border-radius: 4px;
        }
        .last-updated {
            display: inline-block;
            background: #1f2a33;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.82rem;
            color: #b0c4d4;
            margin-bottom: 20px;
        }
