* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e1a;
            color: #e4e8f0;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.2s, border-bottom 0.2s;
        }
        a:hover {
            color: #ffdd77;
            border-bottom: 1px solid #f0c94b;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #141a2b 0%, #1f2740 100%);
            padding: 16px 0;
            border-bottom: 2px solid #f0c94b33;
            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;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c94b, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px #e6394640;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aab;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .my-logo a {
            color: inherit;
            border: none;
        }
        .my-logo a:hover {
            border: none;
        }
        .main-nav {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            background: transparent;
            border: 1px solid #334;
            color: #ccd;
            transition: all 0.25s;
        }
        .main-nav a:hover {
            background: #f0c94b20;
            border-color: #f0c94b;
            color: #f0c94b;
            border-bottom: 1px solid #f0c94b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e4e8f0;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ffffff10;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb-wrap {
            background: #0f1322;
            padding: 10px 0;
            border-bottom: 1px solid #1f2740;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 10px;
            font-size: 0.85rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #667;
        }
        .breadcrumb a {
            color: #99a;
        }
        .breadcrumb li.active {
            color: #f0c94b;
        }
        .hero {
            padding: 50px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 30% 40%, #1f274055, #0b0e1a 70%);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c94b, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto 16px;
            color: #bcc;
        }
        .hero .badge {
            display: inline-block;
            background: #e6394620;
            border: 1px solid #e6394640;
            padding: 4px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f0c94b;
        }
        .content-section {
            padding: 40px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 48px 0 16px;
            border-left: 5px solid #e63946;
            padding-left: 18px;
            color: #f0e8d0;
        }
        .article-body h3 {
            font-size: 1.5rem;
            margin: 32px 0 12px;
            color: #f0c94bcc;
        }
        .article-body h4 {
            font-size: 1.2rem;
            margin: 24px 0 8px;
            color: #dde;
        }
        .article-body p {
            margin-bottom: 18px;
            text-align: justify;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 22px 24px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #1a2140;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 32px 0;
            border-left: 6px solid #f0c94b;
            box-shadow: 0 8px 30px #00000040;
        }
        .highlight-box strong {
            color: #f0c94b;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px #00000060;
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #99a;
            padding: 10px 4px 0;
            text-align: center;
            font-style: italic;
        }
        .search-section {
            background: #141a2b;
            border-radius: 20px;
            padding: 40px 32px;
            margin: 48px 0;
            border: 1px solid #2a3350;
        }
        .search-section h3 {
            font-size: 1.6rem;
            margin-bottom: 18px;
            color: #f0e8d0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: none;
            background: #1f2740;
            color: #e4e8f0;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: outline 0.25s;
        }
        .search-form input:focus {
            outline-color: #f0c94b;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #e63946, #f0c94b);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px #e6394650;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 48px 0;
        }
        .card {
            background: #141a2b;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid #2a3350;
        }
        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #f0e8d0;
        }
        .card textarea,
        .card input {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: none;
            background: #1f2740;
            color: #e4e8f0;
            font-size: 0.95rem;
            margin-bottom: 14px;
            outline: 2px solid transparent;
            transition: outline 0.25s;
            font-family: inherit;
        }
        .card textarea:focus,
        .card input:focus {
            outline-color: #f0c94b;
        }
        .card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #f0c94b;
            color: #0b0e1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .card button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            margin-bottom: 16px;
            color: #445;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i.active {
            color: #f0c94b;
        }
        .star-rating i:hover {
            transform: scale(1.2);
            color: #f0c94b;
        }
        .rating-value {
            font-size: 1.1rem;
            color: #aab;
            margin-left: 8px;
        }
        .related-links {
            background: #1a2140;
            border-radius: 20px;
            padding: 32px;
            margin: 48px 0;
        }
        .related-links h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #f0e8d0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
        }
        .related-links li a {
            display: block;
            padding: 10px 16px;
            background: #1f2740;
            border-radius: 12px;
            border: 1px solid #2a3350;
            transition: all 0.25s;
            color: #ccd;
        }
        .related-links li a:hover {
            background: #2a3350;
            border-color: #f0c94b;
            color: #f0c94b;
            transform: translateY(-2px);
        }
        .site-footer {
            background: #0a0d17;
            border-top: 2px solid #1f2740;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-inner h4 {
            color: #f0c94b;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner a {
            font-size: 0.9rem;
            color: #99a;
        }
        friend-link {
            display: block;
            background: #101624;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 30px 0 20px;
            border: 1px solid #2a3350;
        }
        friend-link h4 {
            color: #f0c94b;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 14px 28px;
        }
        friend-link li a {
            color: #aab;
            font-size: 0.95rem;
            border-bottom: 1px dotted #445;
        }
        friend-link li a:hover {
            color: #f0c94b;
            border-bottom-color: #f0c94b;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a2140;
            font-size: 0.85rem;
            color: #667;
        }
        .copyright strong {
            color: #99a;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 18px 0 8px;
                gap: 8px;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .content-grid {
                gap: 20px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .related-links ul {
                grid-template-columns: 1fr;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3350;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f0c94b66;
        }
        ::selection {
            background: #e6394660;
            color: #fff;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #889;
            text-align: right;
            margin-top: 10px;
            border-top: 1px solid #1a2140;
            padding-top: 14px;
        }
        .last-updated i {
            margin-right: 6px;
        }
