        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0a0e17;
            color: #e8edf5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #8ab4ff;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #c0d8ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #f0f4ff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 2px solid #2a3a5a;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 1px solid #1e2d4a;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
        }
        p {
            margin-bottom: 1rem;
            color: #d6deed;
        }
        strong {
            color: #ffd966;
            font-weight: 600;
        }
        em {
            color: #b4c8ff;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1923 0%, #141e30 100%);
            border-bottom: 2px solid #1f3a5f;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f0e6d2 !important;
            text-decoration: none !important;
            letter-spacing: 0.5px;
        }
        .my-logo i {
            color: #c8aa6e;
            font-size: 1.6rem;
        }
        .my-logo span {
            background: linear-gradient(90deg, #c8aa6e, #f0e6d2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #8a9bb5;
            -webkit-text-fill-color: #8a9bb5;
            display: none;
        }
        @media (min-width:640px) {
            .my-logo small {
                display: inline;
            }
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .main-nav a {
            color: #b8c8e0;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.3rem 0;
            position: relative;
            transition: color 0.2s;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #c8aa6e;
            transition: width 0.25s ease;
        }
        .main-nav a:hover::after,
        .main-nav a:focus::after {
            width: 100%;
        }
        .main-nav a:hover {
            color: #f0e6d2;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6d2;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-toggle {
            display: none;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.5rem;
                padding: 1rem 0 0.5rem 0;
                border-top: 1px solid #1f3a5f;
                margin-top: 0.5rem;
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            .main-nav a {
                font-size: 1rem;
                padding: 0.5rem 0;
            }
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #8899b5;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #8ab4ff;
        }
        .breadcrumb a:hover {
            color: #c0d8ff;
        }
        .breadcrumb span.sep {
            color: #4a5a7a;
        }
        .content-area {
            flex: 1;
            padding: 1.5rem 0 3rem 0;
        }
        .content-area .container {
            max-width: 900px;
        }
        .featured-image {
            margin: 1.5rem 0 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            background: #111a28;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            max-height: 480px;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #8899b5;
            background: #0d1520;
            border-top: 1px solid #1a2a3a;
        }
        .info-box {
            background: #111d2e;
            border-left: 4px solid #c8aa6e;
            padding: 1rem 1.4rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .info-box p:last-child {
            margin-bottom: 0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 10px;
            border: 1px solid #1a2a3a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            background: #0d1520;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1a2a3a;
        }
        th {
            background: #162233;
            color: #f0e6d2;
            font-weight: 600;
            white-space: nowrap;
        }
        td {
            color: #d6deed;
        }
        tr:hover td {
            background: #121e30;
        }
        .form-card {
            background: #111d2e;
            border: 1px solid #1a2a3a;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            margin: 2rem 0 1.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .form-card h3 {
            margin-top: 0;
            border: none;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            color: #c8d8f0;
            font-size: 0.92rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.65rem 0.9rem;
            border: 1px solid #2a3a5a;
            border-radius: 8px;
            background: #0a111e;
            color: #e8edf5;
            font-family: inherit;
            font-size: 0.95rem;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #c8aa6e;
            box-shadow: 0 0 0 3px rgba(200, 170, 110, 0.2);
        }
        .form-group textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, #c8aa6e, #a88a4e);
            color: #0a0e17 !important;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: transform 0.15s, box-shadow 0.2s;
            text-decoration: none !important;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(200, 170, 110, 0.3);
        }
        .btn-secondary {
            background: linear-gradient(135deg, #2a3a5a, #1a2a4a);
            color: #e8edf5 !important;
        }
        .btn-secondary:hover {
            box-shadow: 0 6px 20px rgba(42, 58, 90, 0.4);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a4a6a;
            transition: color 0.15s;
        }
        .star-rating label i {
            font-size: 1.8rem;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c842;
        }
        .star-rating label:hover i,
        .star-rating input:checked~label i {
            font-weight: 900;
        }
        .comment-item {
            background: #0d1520;
            border: 1px solid #1a2a3a;
            border-radius: 10px;
            padding: 1rem 1.4rem;
            margin-bottom: 1rem;
        }
        .comment-item .author {
            font-weight: 600;
            color: #f0e6d2;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #6a7a9a;
            margin-left: 0.8rem;
        }
        .comment-item .text {
            margin-top: 0.4rem;
            color: #c8d8f0;
        }
        .site-footer {
            background: #070c14;
            border-top: 2px solid #1a2a3a;
            padding: 2rem 0 1.5rem 0;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width:640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .site-footer h4 {
            color: #f0e6d2;
            margin-top: 0;
            font-size: 1.1rem;
            border: none;
        }
        .site-footer a {
            color: #8ab4ff;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #c0d8ff;
        }
        friend-link {
            display: block;
            padding: 0.6rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1a2a3a;
            color: #5a6a8a;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #6a8aba;
        }
        @media (max-width:480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .form-card {
                padding: 1rem 1.2rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .star-rating label i {
                font-size: 1.5rem;
            }
        }
        @media (min-width:769px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .main-nav {
                gap: 1.8rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .text-gold {
            color: #c8aa6e;
        }
        .text-muted {
            color: #6a7a9a;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7a9a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 0.5rem;
        }
        .last-updated i {
            color: #c8aa6e;
        }
        .comment-item,
        .form-card,
        .info-box,
        .table-wrap {
            transition: box-shadow 0.25s ease;
        }
        .comment-item:hover,
        .form-card:hover {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
        }
