        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d1a;
            color: #e8e0d0;
            line-height: 1.8;
            min-height: 100vh;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.25s, opacity 0.25s;
        }
        a:hover,
        a:focus {
            color: #f0d68a;
            outline: 2px solid #d4af37;
            outline-offset: 2px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
            color: #f5e8c8;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #d4af37;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #ecdba0;
        }
        h4 {
            font-size: 1.15rem;
            color: #d4c494;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #111128, #1a1a3a);
            border-bottom: 2px solid #2a2a5a;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #d4af37, #f5d78a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo i {
            -webkit-text-fill-color: #d4af37;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(212, 175, 55, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8c0d0;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover {
            background: rgba(212, 175, 55, 0.15);
            color: #f0d68a;
        }
        .nav-menu a i {
            margin-right: 0.4rem;
        }
        .breadcrumb {
            background: #141428;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2a4a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.5rem;
            color: #888;
        }
        .breadcrumb a {
            color: #b0a8c0;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        .breadcrumb .active {
            color: #d4af37;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0d0d1a 0%, #1a1a3a 50%, #0d0d1a 100%);
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 2px solid #2a2a5a;
        }
        .hero h1 {
            border-bottom: none;
            margin-top: 0;
            font-size: 2.6rem;
        }
        .hero p {
            font-size: 1.2rem;
            color: #c8c0d0;
            max-width: 750px;
            margin: 0.8rem auto 0;
        }
        .hero .meta-info {
            margin-top: 1.2rem;
            font-size: 0.95rem;
            color: #a098b0;
        }
        .hero .meta-info i {
            color: #d4af37;
            margin-right: 0.3rem;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(212, 175, 55, 0.12);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            margin-top: 0.8rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .content-area {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #141428;
            border: 1px solid #2a2a4a;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #2a2a4a;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1e1e3a;
        }
        .sidebar-card ul li a {
            font-size: 0.95rem;
        }
        .sidebar-card ul li a i {
            margin-right: 0.4rem;
            font-size: 0.8rem;
            color: #d4af37;
        }
        .featured-image-wrap {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #2a2a4a;
            background: #111128;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .featured-image-wrap img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #a098b0;
            background: #0d0d1a;
            border-top: 1px solid #2a2a4a;
        }
        .search-box {
            background: #141428;
            border: 1px solid #2a2a4a;
            border-radius: 50px;
            display: flex;
            align-items: center;
            padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            max-width: 500px;
            margin: 1.5rem auto;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-box:focus-within {
            border-color: #d4af37;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
        }
        .search-box input {
            flex: 1;
            background: none;
            border: none;
            padding: 0.7rem 0;
            font-size: 1rem;
            color: #e8e0d0;
            outline: none;
        }
        .search-box input::placeholder {
            color: #888;
        }
        .search-box button {
            background: #d4af37;
            border: none;
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            color: #0d0d1a;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #f0d68a;
            transform: scale(1.02);
        }
        .feedback-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #2a2a4a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .feedback-card {
            background: #141428;
            border: 1px solid #2a2a4a;
            border-radius: 14px;
            padding: 1.8rem;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card h3 i {
            color: #d4af37;
        }
        .feedback-card textarea,
        .feedback-card input {
            width: 100%;
            background: #0d0d1a;
            border: 1px solid #2a2a4a;
            border-radius: 8px;
            padding: 0.8rem 1rem;
            color: #e8e0d0;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s;
            resize: vertical;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #d4af37;
            outline: none;
        }
        .feedback-card textarea {
            min-height: 110px;
        }
        .feedback-card .form-group {
            margin-bottom: 1rem;
        }
        .feedback-card label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #d4c494;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: #d4af37;
            border: none;
            border-radius: 8px;
            padding: 0.7rem 2rem;
            font-weight: 700;
            color: #0d0d1a;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-size: 1rem;
        }
        .btn-primary:hover {
            background: #f0d68a;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #555;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4af37;
            transform: scale(1.1);
        }
        .inline-links {
            background: #141428;
            border-left: 4px solid #d4af37;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .inline-links ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            list-style: none;
            padding: 0;
        }
        .inline-links ul li a {
            font-size: 0.95rem;
        }
        .inline-links ul li a i {
            margin-right: 0.3rem;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0a0a18;
            border-top: 2px solid #1e1e3a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            margin-top: 0;
            color: #d4af37;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            padding: 0.25rem 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
            color: #b0a8c0;
        }
        .footer-grid ul li a:hover {
            color: #d4af37;
        }
        .footer-bottom {
            border-top: 1px solid #1e1e3a;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        .footer-bottom .copyright {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-style: normal;
        }
        friend-link a {
            margin: 0 0.3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #111128;
                border: 1px solid #2a2a4a;
                border-radius: 12px;
                padding: 0.8rem;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                border-bottom: 1px solid #1e1e3a;
                width: 100%;
            }
            .nav-menu a:last-child {
                border-bottom: none;
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .search-box {
                max-width: 100%;
                flex-direction: column;
                border-radius: 16px;
                padding: 0.8rem;
            }
            .search-box input {
                width: 100%;
                padding: 0.5rem 0;
            }
            .search-box button {
                width: 100%;
                margin-top: 0.5rem;
                border-radius: 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2a5a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3a7a;
        }
        ::selection {
            background: #d4af37;
            color: #0d0d1a;
        }
        @media print {
            .site-header,
            .breadcrumb,
            .sidebar,
            .search-box,
            .feedback-section,
            .site-footer {
                display: none !important;
            }
            body {
                background: #fff;
                color: #111;
            }
            .content-grid {
                display: block;
            }
            .featured-image-wrap {
                border: 1px solid #ccc;
            }
        }
