* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0e1a;
            color: #e8edf5;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd99;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f0e8;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 3px solid #f0c27f;
            padding-bottom: 0.5rem;
            margin-top: 0.8rem;
        }
        h2 {
            font-size: 2.0rem;
            border-left: 5px solid #f0c27f;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: #f0dbb0;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            color: #d4c9b0;
        }
        p {
            margin-bottom: 1.2rem;
            word-break: break-word;
        }
        ul,
        ol {
            margin-bottom: 1.5rem;
            padding-left: 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong,
        b {
            color: #f5e6c8;
            font-weight: 700;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2f42;
            margin: 2.5rem 0;
        }
        blockquote {
            border-left: 4px solid #f0c27f;
            background: #141a2b;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #cfd4e0;
        }
        .badge {
            display: inline-block;
            background: #f0c27f;
            color: #0b0e1a;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .text-muted {
            color: #9aa1b5;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .site-header {
            background: #101624;
            border-bottom: 1px solid #1f253b;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f0c27f;
            background: linear-gradient(135deg, #f0c27f, #daa34a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-shrink: 0;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c27f;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.65rem;
            -webkit-text-fill-color: initial;
            color: #8892b0;
            font-weight: 400;
            letter-spacing: 0.3px;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #2f3650;
            color: #e8edf5;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f253b;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.1rem;
            align-items: center;
        }
        .main-nav a {
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #bcc3d9;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #1f253b;
            color: #f0c27f;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f0c27f;
            color: #0b0e1a;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #8892b0;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "/";
            color: #4a5270;
            margin-right: 0.4rem;
        }
        .breadcrumb a {
            color: #bcc3d9;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .current {
            color: #f0c27f;
        }
        .search-section {
            background: #141a2b;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #1f253b;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #2f3650;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c27f;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f0c27f;
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            background: #e2b56b;
            transform: scale(1.02);
        }
        .content-area {
            padding: 0.5rem 0 3rem 0;
        }
        .featured-image {
            margin: 1.5rem 0 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #141a2b;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #9aa1b5;
            background: #101624;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #1a1f32;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #bcc3d9;
            margin-bottom: 1rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
            margin-top: 1rem;
        }
        .content-main {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: #101624;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #1f253b;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 1px solid #1f253b;
            padding-bottom: 0.6rem;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #181e30;
        }
        .sidebar ul li a {
            color: #bcc3d9;
            font-size: 0.9rem;
        }
        .sidebar ul li a:hover {
            color: #f0c27f;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem 0;
        }
        .comment-box,
        .rating-box {
            background: #141a2b;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #1f253b;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 1px solid #2f3650;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            outline: none;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #f0c27f;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 0.7rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f0c27f;
            color: #0b0e1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #e2b56b;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #3a4058;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c27f;
        }
        .rating-form select {
            padding: 0.6rem 1rem;
            border-radius: 10px;
            border: 1px solid #2f3650;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            width: 100%;
            outline: none;
        }
        friend-link {
            display: block;
            background: #101624;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1.5rem 0;
            border: 1px solid #1f253b;
        }
        friend-link::before {
            content: "🌐 Friendly Links";
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #f0c27f;
            margin-bottom: 0.8rem;
            letter-spacing: 0.3px;
        }
        .friend-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .friend-link-list li a {
            color: #bcc3d9;
            font-size: 0.9rem;
            padding: 0.2rem 0;
        }
        .friend-link-list li a:hover {
            color: #f0c27f;
        }
        .site-footer {
            background: #0a0d17;
            border-top: 1px solid #1f253b;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            color: #6a7290;
        }
        .footer-inner a {
            color: #8892b0;
        }
        .footer-inner a:hover {
            color: #f0c27f;
        }
        .copyright {
            text-align: center;
            width: 100%;
            padding-top: 1rem;
            border-top: 1px solid #181e30;
            margin-top: 1rem;
            font-size: 0.8rem;
            color: #5a627a;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: relative;
                top: 0;
                order: 2;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #101624;
                padding: 1rem 0;
                border-top: 1px solid #1f253b;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                width: 100%;
                border-radius: 0;
            }
            .search-section {
                padding: 1.2rem;
            }
            .comment-box,
            .rating-box {
                padding: 1.2rem;
            }
            .wrapper {
                padding: 0 12px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
            .sidebar {
                padding: 1rem;
            }
            friend-link {
                padding: 1.2rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        .main-nav {
            transition: all 0.25s ease;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2f3650;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4a5270;
        }
        ::selection {
            background: #f0c27f;
            color: #0b0e1a;
        }
