        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-gold: #FFD700;
            --secondary-purple: #6A0DAD;
            --dark-bg: #1a1a2e;
            --content-bg: #f8f9fa;
            --text-dark: #2d3436;
            --text-light: #636e72;
            --accent-red: #e74c3c;
            --accent-green: #27ae60;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
        }
        body {
            background-color: var(--content-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-purple);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary-gold);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-gold), #ff9d00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            color: var(--primary-gold);
            font-size: 2.5rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-gold);
            margin: 3px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #fff;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 215, 0, 0.15);
            text-decoration: none;
            color: var(--primary-gold);
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--secondary-purple);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: #fff;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-header {
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .article-header h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            color: var(--dark-bg);
            margin-bottom: 1rem;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 8px;
            color: var(--secondary-purple);
        }
        h1, h2, h3, h4 {
            color: var(--dark-bg);
            margin-top: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 { font-size: 2.6rem; }
        h2 {
            font-size: 2rem;
            color: var(--secondary-purple);
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e0e0e0;
        }
        h3 { font-size: 1.6rem; }
        h4 { font-size: 1.3rem; color: var(--text-light); }
        .lead-paragraph {
            font-size: 1.25rem;
            color: var(--text-dark);
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid var(--primary-gold);
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #ffeaa7 100%);
            border: 2px solid var(--primary-gold);
            border-radius: var(--border-radius);
            padding: 1.8rem;
            margin: 2rem 0;
            position: relative;
        }
        .highlight-box::before {
            content: "✨";
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 1.8rem;
            background: #fff;
            padding: 0 10px;
        }
        .tip {
            background-color: #e3f2fd;
            border-left: 5px solid #2196f3;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .tip strong {
            color: #0d47a1;
        }
        .content-link {
            background-color: #f1f8ff;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            border-bottom: 2px solid transparent;
        }
        .content-link:hover {
            background-color: #e1f0ff;
            border-bottom-color: var(--secondary-purple);
            text-decoration: none;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2.5rem auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 5px solid white;
        }
        aside {
            background: #fff;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--dark-bg);
            padding-bottom: 0.8rem;
            margin-bottom: 1.2rem;
            border-bottom: 2px solid var(--primary-gold);
            display: flex;
            align-items: center;
        }
        .widget-title i {
            margin-right: 10px;
            color: var(--secondary-purple);
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.85rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--secondary-purple);
        }
        .search-form button {
            background: linear-gradient(90deg, var(--secondary-purple), #8a2be2);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #5a0a9c, #6A0DAD);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--primary-gold);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            margin-top: 1rem;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent-green);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            margin-top: 1rem;
            transition: background 0.3s;
            font-size: 1.05rem;
        }
        .submit-btn:hover {
            background-color: #219653;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: #bdc3c7;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--primary-gold);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-gold);
        }
        friend-link a {
            color: #fff;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
                z-index: 999;
            }
            .main-nav.active ul {
                display: flex;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            article, aside {
                padding: 1.5rem;
            }
            .content-wrapper {
                gap: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .emoji { font-size: 1.2em; }
        strong { color: var(--dark-bg); }
