* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --sw-yellow: #FFE81F;
            --sw-dark: #0a0a0a;
            --sw-dark-blue: #0d0d1a;
            --sw-gray: #1a1a2e;
            --sw-light-gray: #2a2a3e;
            --sw-text: #e8e8e8;
            --sw-text-dim: #b0b0c0;
            --sw-accent: #FFD700;
            --sw-card-bg: #111122;
            --sw-border: #2a2a40;
            --sw-hover-glow: rgba(255, 232, 31, 0.15);
            --font-main: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
            --max-width: 1200px;
            --header-height: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-main);
            background: var(--sw-dark);
            color: var(--sw-text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            color: var(--sw-yellow);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0a0a0a 0%, #0d0d1a 100%);
            border-bottom: 2px solid var(--sw-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-height);
            display: flex;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--sw-yellow);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(255, 232, 31, 0.2);
            transition: text-shadow 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            text-shadow: 0 0 40px rgba(255, 232, 31, 0.4);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.4rem;
        }
        .my-logo span {
            font-weight: 300;
            color: #fff;
            letter-spacing: 1px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .main-nav a {
            color: var(--sw-text-dim);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: color 0.2s, transform 0.2s;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--sw-yellow);
            transition: width 0.3s;
        }
        .main-nav a:hover {
            color: var(--sw-yellow);
            transform: translateY(-1px);
            text-decoration: none;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--sw-yellow);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s;
            z-index: 1001;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: var(--sw-dark-blue);
            padding: 12px 0;
            border-bottom: 1px solid var(--sw-border);
            font-size: 0.85rem;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--sw-text-dim);
        }
        .breadcrumb a:hover {
            color: var(--sw-yellow);
        }
        .breadcrumb .separator {
            color: var(--sw-text-dim);
            margin: 0 4px;
        }
        .breadcrumb .current {
            color: var(--sw-yellow);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0a0a0a 0%, #0d0d1a 50%, #111122 100%);
            padding: 60px 0 50px;
            border-bottom: 1px solid var(--sw-border);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 232, 31, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero .container {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--sw-yellow);
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 2px 30px rgba(255, 232, 31, 0.15);
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: var(--sw-text-dim);
            max-width: 720px;
            margin-bottom: 20px;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.9rem;
            color: var(--sw-text-dim);
        }
        .hero .meta-info i {
            color: var(--sw-yellow);
            margin-right: 6px;
        }
        .hero .badge {
            display: inline-block;
            background: var(--sw-yellow);
            color: #0a0a0a;
            padding: 4px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .main-content {
            padding: 50px 0 60px;
            background: var(--sw-dark);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 48px;
        }
        .content-article {
            min-width: 0;
        }
        .content-sidebar {
            min-width: 0;
        }
        .content-article h2 {
            font-family: var(--font-heading);
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--sw-yellow);
            margin-top: 48px;
            margin-bottom: 18px;
            border-bottom: 2px solid var(--sw-border);
            padding-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .content-article h2:first-of-type {
            margin-top: 0;
        }
        .content-article h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 600;
            color: #fff;
            margin-top: 32px;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .content-article h4 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--sw-text);
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .content-article p {
            margin-bottom: 18px;
            color: var(--sw-text);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .content-article p strong {
            color: #fff;
        }
        .content-article ul,
        .content-article ol {
            margin-bottom: 20px;
            padding-left: 28px;
        }
        .content-article li {
            margin-bottom: 8px;
            font-size: 1.02rem;
            line-height: 1.7;
        }
        .content-article blockquote {
            border-left: 4px solid var(--sw-yellow);
            padding: 16px 22px;
            margin: 24px 0;
            background: var(--sw-card-bg);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: var(--sw-text-dim);
        }
        .content-article blockquote strong {
            color: var(--sw-yellow);
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--sw-border);
            background: var(--sw-card-bg);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: var(--sw-text-dim);
            background: var(--sw-card-bg);
            border-top: 1px solid var(--sw-border);
        }
        .highlight-box {
            background: var(--sw-card-bg);
            border: 1px solid var(--sw-border);
            border-radius: 12px;
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }
        .highlight-box h4 {
            color: var(--sw-yellow);
            margin-top: 0;
            font-size: 1.2rem;
        }
        .highlight-box ul {
            margin-bottom: 0;
        }
        .content-link-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
            margin: 20px 0 28px;
            padding: 0;
            list-style: none;
        }
        .content-link-list li {
            margin: 0;
        }
        .content-link-list a {
            display: block;
            padding: 10px 16px;
            background: var(--sw-card-bg);
            border: 1px solid var(--sw-border);
            border-radius: 8px;
            font-size: 0.95rem;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
            color: var(--sw-text-dim);
        }
        .content-link-list a:hover {
            background: var(--sw-light-gray);
            border-color: var(--sw-yellow);
            transform: translateY(-2px);
            text-decoration: none;
            color: var(--sw-yellow);
        }
        .content-link-list a i {
            margin-right: 8px;
            color: var(--sw-yellow);
            font-size: 0.8rem;
        }
        .emoji-big {
            font-size: 1.3em;
            margin-right: 4px;
        }
        .sidebar-card {
            background: var(--sw-card-bg);
            border: 1px solid var(--sw-border);
            border-radius: 12px;
            padding: 22px 20px;
            margin-bottom: 28px;
        }
        .sidebar-card h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--sw-yellow);
            margin-bottom: 14px;
            border-bottom: 1px solid var(--sw-border);
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card li a {
            color: var(--sw-text-dim);
            font-size: 0.92rem;
            transition: color 0.2s, padding-left 0.2s;
            display: block;
            padding: 4px 0;
        }
        .sidebar-card li a:hover {
            color: var(--sw-yellow);
            padding-left: 6px;
            text-decoration: none;
        }
        .sidebar-card li a i {
            margin-right: 8px;
            color: var(--sw-yellow);
            font-size: 0.75rem;
        }
        .search-form {
            display: flex;
            gap: 0;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            background: var(--sw-dark);
            border: 1px solid var(--sw-border);
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-form input:focus {
            border-color: var(--sw-yellow);
        }
        .search-form input::placeholder {
            color: var(--sw-text-dim);
        }
        .search-form button {
            padding: 12px 20px;
            background: var(--sw-yellow);
            border: none;
            border-radius: 0 8px 8px 0;
            color: #0a0a0a;
            font-weight: 700;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s, transform 0.2s;
        }
        .search-form button:hover {
            background: #ffe44d;
            transform: scale(1.02);
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 2px solid var(--sw-border);
        }
        .comment-box,
        .rating-box {
            background: var(--sw-card-bg);
            border: 1px solid var(--sw-border);
            border-radius: 12px;
            padding: 24px 22px;
        }
        .comment-box h3,
        .rating-box h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--sw-yellow);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 14px;
            background: var(--sw-dark);
            border: 1px solid var(--sw-border);
            border-radius: 8px;
            color: #fff;
            font-size: 0.95rem;
            font-family: var(--font-main);
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            border-color: var(--sw-yellow);
        }
        .comment-form input {
            width: 100%;
            padding: 10px 14px;
            background: var(--sw-dark);
            border: 1px solid var(--sw-border);
            border-radius: 8px;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
            margin-top: 10px;
        }
        .comment-form input:focus {
            border-color: var(--sw-yellow);
        }
        .comment-form .btn-submit {
            margin-top: 12px;
            padding: 10px 28px;
            background: var(--sw-yellow);
            border: none;
            border-radius: 8px;
            color: #0a0a0a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            width: 100%;
        }
        .comment-form .btn-submit:hover {
            background: #ffe44d;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .star-rating .stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: var(--sw-border);
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating .stars i:hover {
            color: var(--sw-yellow);
            transform: scale(1.2);
        }
        .star-rating .stars i.active {
            color: var(--sw-yellow);
        }
        .star-rating .stars i.checked {
            color: var(--sw-yellow);
        }
        .star-rating .rating-value {
            font-size: 0.9rem;
            color: var(--sw-text-dim);
        }
        .rating-box .btn-submit {
            margin-top: 12px;
            padding: 10px 28px;
            background: var(--sw-yellow);
            border: none;
            border-radius: 8px;
            color: #0a0a0a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            width: 100%;
        }
        .rating-box .btn-submit:hover {
            background: #ffe44d;
            transform: translateY(-2px);
        }
        .site-footer {
            background: var(--sw-dark-blue);
            border-top: 2px solid var(--sw-border);
            padding: 40px 0 30px;
            margin-top: 20px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            color: var(--sw-yellow);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer-col p,
        .footer-col li {
            font-size: 0.9rem;
            color: var(--sw-text-dim);
            line-height: 1.7;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 6px;
        }
        .footer-col ul li a {
            color: var(--sw-text-dim);
            font-size: 0.9rem;
        }
        .footer-col ul li a:hover {
            color: var(--sw-yellow);
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid var(--sw-border);
            border-bottom: 1px solid var(--sw-border);
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: var(--sw-text-dim);
        }
        friend-link a {
            color: var(--sw-text-dim);
            margin: 0 8px;
        }
        friend-link a:hover {
            color: var(--sw-yellow);
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: var(--sw-text-dim);
            padding-top: 20px;
            border-top: 1px solid var(--sw-border);
        }
        .copyright a {
            color: var(--sw-text-dim);
        }
        .copyright a:hover {
            color: var(--sw-yellow);
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .content-sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }
        @media (max-width: 820px) {
            .hero h1 {
                font-size: 2rem;
            }
            .content-sidebar {
                grid-template-columns: 1fr;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 700px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(12px);
                padding: 20px 24px 28px;
                border-bottom: 2px solid var(--sw-border);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
                gap: 16px;
                align-items: flex-start;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.05rem;
                padding: 6px 0;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .content-link-list {
                grid-template-columns: 1fr;
            }
            .breadcrumb .container {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.9rem;
            }
        }
        @media (max-width: 460px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .hero {
                padding: 36px 0 30px;
            }
            .content-article h2 {
                font-size: 1.4rem;
            }
            .content-article h3 {
                font-size: 1.15rem;
            }
            .content-article p {
                font-size: 0.95rem;
            }
            .star-rating .stars {
                font-size: 1.6rem;
            }
            .search-form input {
                font-size: 0.85rem;
                padding: 10px 12px;
            }
            .search-form button {
                font-size: 0.85rem;
                padding: 10px 14px;
            }
            .sidebar-card {
                padding: 16px 14px;
            }
            .highlight-box {
                padding: 16px 18px;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--sw-text-dim);
            background: var(--sw-card-bg);
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid var(--sw-border);
        }
        .last-updated i {
            color: var(--sw-yellow);
        }
        .btn-submit,
        .search-form button,
        .hamburger {
            transition: all 0.25s ease;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--sw-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--sw-light-gray);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--sw-border);
        }
