* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0f14;
            color: #e8e6e0;
            line-height: 1.75;
            padding: 0 16px;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffdd99;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #15181f;
            border-radius: 24px;
            padding: 20px 24px 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
        }
        header {
            padding: 18px 0 10px;
            border-bottom: 1px solid #2f3545;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c27f, #e6a756);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 194, 127, 0.15);
            font-variant: small-caps;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c27f;
            margin-right: 6px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-menu {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            padding: 6px 10px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c9c6c0;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            background: #2f3545;
            color: #f0c27f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid #3f4555;
            color: #f0c27f;
            font-size: 1.8rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2f3545;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 12px 0 8px;
            font-size: 0.9rem;
            color: #9a9aa0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
        }
        .breadcrumb li+li:before {
            content: "›";
            margin-right: 12px;
            color: #6a6a70;
        }
        .breadcrumb a {
            color: #b0aca0;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .active {
            color: #f0c27f;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin: 28px 0 12px;
            background: linear-gradient(135deg, #fae3c6, #e6a756);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 14px;
            color: #f0dbb8;
            border-left: 6px solid #e6a756;
            padding-left: 18px;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 10px;
            color: #ddc8a8;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #ccb894;
        }
        p {
            margin: 16px 0;
            font-size: 1.05rem;
            color: #d6d2ca;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #e8e0d0;
            margin: 20px 0 28px;
            padding: 16px 20px;
            background: #1c202b;
            border-radius: 14px;
            border-left: 4px solid #e6a756;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
            margin-right: 8px;
        }
        strong,
        b {
            color: #f5e6d0;
            font-weight: 700;
        }
        .highlight-box {
            background: #1e232f;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 28px 0;
            border: 1px solid #2f3545;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 24px;
            margin: 28px 0;
        }
        .grid-2 {
            grid-template-columns: 1fr 1fr;
        }
        .grid-3 {
            grid-template-columns: 1fr 1fr 1fr;
        }
        .feature-img {
            margin: 32px 0 18px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .feature-img figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #9a9aa0;
            margin-top: 8px;
            font-style: italic;
        }
        .form-card {
            background: #1a1e29;
            border-radius: 18px;
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid #2f3545;
        }
        .form-card label {
            display: block;
            font-weight: 600;
            margin: 14px 0 6px;
            color: #ddd6c8;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            background: #0d0f14;
            border: 1px solid #3f4555;
            border-radius: 10px;
            color: #e8e6e0;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            border-color: #e6a756;
            outline: none;
            box-shadow: 0 0 0 3px rgba(230, 167, 86, 0.2);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #e6a756;
            color: #0d0f14;
            font-weight: 700;
            padding: 12px 32px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-block;
            margin-top: 12px;
        }
        .btn:hover {
            background: #f0c27f;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn-secondary {
            background: #2f3545;
            color: #e8e6e0;
        }
        .btn-secondary:hover {
            background: #3f4555;
            color: #f0c27f;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #4a4a50;
            cursor: pointer;
            margin: 8px 0;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f0c27f;
            transform: scale(1.1);
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 1px solid #2f3545;
        }
        friend-link {
            display: block;
            padding: 18px 0 8px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding: 18px 0 8px;
            color: #8a8a90;
            font-size: 0.9rem;
            border-top: 1px solid #1e232f;
            margin-top: 18px;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 30px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1e29;
                padding: 16px 12px;
                border-radius: 14px;
                margin-top: 12px;
                border: 1px solid #2f3545;
            }
            .nav-menu li a {
                padding: 10px 12px;
                display: block;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked~.nav-menu {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .form-card {
                padding: 16px 18px;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            #nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .text-small {
            font-size: 0.9rem;
            color: #9a9aa0;
        }
        .mt-2 {
            margin-top: 20px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .tag {
            display: inline-block;
            background: #2f3545;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #ddd6c8;
            margin: 2px 4px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1e29;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2f3545;
        }
        th {
            background: #2f3545;
            font-weight: 600;
            color: #f0dbb8;
        }
        tr:hover td {
            background: #1e232f;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 10px 18px;
            margin: 18px 0;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: block;
            padding: 8px 14px;
            background: #1a1e29;
            border-radius: 10px;
            border: 1px solid #2a2f3d;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-grid li a:hover {
            background: #2f3545;
            border-color: #e6a756;
            text-decoration: none;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a8a90;
            text-align: right;
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px dashed #2f3545;
        }
