:root {
            --primary-gold: #FFD700;
            --secondary-blue: #1E90FF;
            --dark-bg: #0a0a1a;
            --card-bg: #15152e;
            --text-light: #f0f8ff;
            --accent-red: #FF6B6B;
            --border-radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 50, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background-color: var(--dark-bg);
            background-image: radial-gradient(circle at 20% 30%, rgba(30, 144, 255, 0.15) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 20%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: var(--secondary-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-gold);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        header {
            padding: 1.5rem 0;
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: fantasy, cursive;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--primary-gold), var(--accent-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            font-weight: 600;
        }
        nav a:hover {
            background-color: rgba(255, 215, 0, 0.1);
            text-decoration: none;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--primary-gold);
        }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: var(--card-bg);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 1.8rem;
            background: linear-gradient(90deg, var(--secondary-blue), #4A00E0);
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #4A00E0, var(--secondary-blue));
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .content-area {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .content-area h1 {
            color: var(--primary-gold);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-red);
            padding-bottom: 0.5rem;
        }
        .content-area h2 {
            color: var(--secondary-blue);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
            border-top: 2px dashed rgba(255, 255, 255, 0.1);
        }
        .content-area h3 {
            color: var(--accent-red);
            font-size: 1.6rem;
            margin: 1.8rem 0 0.8rem;
        }
        .content-area h4 {
            color: #aaa;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        .content-area p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .content-area emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 0.2rem 0.5rem;
            border-left: 4px solid var(--primary-gold);
            font-weight: bold;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            border: 3px solid var(--primary-gold);
        }
        .link-list {
            background: rgba(30, 144, 255, 0.05);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .link-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
            list-style-position: inside;
        }
        .link-list li {
            margin-bottom: 0.5rem;
        }
        sidebar {
            background: var(--card-bg);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: var(--primary-gold);
            border-bottom: 2px solid;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            margin-bottom: 1rem;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--primary-gold);
            transform: scale(1.2);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #444;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-family: inherit;
        }
        button[type="submit"] {
            background: linear-gradient(90deg, var(--accent-red), #FF8E53);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        button[type="submit"]:hover {
            background: linear-gradient(90deg, #FF8E53, var(--accent-red));
            transform: translateY(-2px);
        }
        .update-time {
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }
        footer {
            background-color: var(--card-bg);
            padding: 2.5rem 0;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            border-top: 3px solid var(--primary-gold);
            margin-top: 3rem;
            text-align: center;
        }
        friend-link {
            display: block;
            margin-bottom: 1.5rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 1rem;
            padding: 0.5rem 1rem;
            background: rgba(30, 144, 255, 0.1);
            border-radius: 20px;
        }
        friend-link a:hover {
            background: rgba(255, 215, 0, 0.2);
            text-decoration: none;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            sidebar {
                position: static;
                margin-top: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 15px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background: var(--card-bg);
                padding: 1rem;
                border-radius: var(--border-radius);
            }
            nav ul.show {
                display: flex;
            }
            .content-area h1 {
                font-size: 2.2rem;
            }
            .content-area h2 {
                font-size: 1.8rem;
            }
            .link-list ul {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .content-area {
                padding: 1.5rem;
            }
            .content-area h1 {
                font-size: 1.8rem;
            }
        }
