:root {
            --primary-magic: #0063b2;
            --secondary-sparkle: #ff6b9d;
            --accent-gold: #ffcc00;
            --dark-kingdom: #0d1b2a;
            --light-cloud: #f8f9fa;
            --text-primary: #333333;
            --text-secondary: #555555;
            --shadow-soft: 0 5px 15px rgba(0, 99, 178, 0.08);
            --shadow-hard: 0 8px 25px rgba(0, 0, 0, 0.15);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: #fff;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-kingdom) 0%, var(--primary-magic) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-hard);
        }
        .header-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Waltograph', cursive, sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: white;
            transform: scale(1.05);
        }
        .my-logo i {
            font-size: 2rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-gold);
        }
        .breadcrumb {
            background-color: var(--light-cloud);
            padding: 1rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ol {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--primary-magic);
        }
        .breadcrumb a {
            color: var(--primary-magic);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: var(--max-width);
            margin: 2rem auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow-soft);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-magic);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--dark-kingdom);
            margin: 2.5rem 0 1rem;
            padding-left: 15px;
            border-left: 5px solid var(--secondary-sparkle);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-magic);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        strong {
            color: var(--dark-kingdom);
            font-weight: 700;
        }
        em {
            color: var(--secondary-sparkle);
            font-style: italic;
        }
        a.content-link {
            color: var(--primary-magic);
            text-decoration: none;
            border-bottom: 1px dashed currentColor;
            font-weight: 600;
        }
        a.content-link:hover {
            color: var(--secondary-sparkle);
            border-bottom-style: solid;
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow-hard);
            border: 5px solid white;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: linear-gradient(90deg, #e3f2fd, #fce4ec);
            border-left: 5px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .update-time {
            background-color: var(--light-cloud);
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            text-align: center;
            font-weight: bold;
            color: var(--primary-magic);
            border: 1px solid #ddd;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: var(--secondary-sparkle);
            border-bottom: 2px solid var(--light-cloud);
            padding-bottom: 0.5rem;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark-kingdom);
        }
        input[type="text"],
        input[type="email"],
        textarea,
        select {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--primary-magic);
            box-shadow: 0 0 0 3px rgba(0, 99, 178, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent-gold);
        }
        button[type="submit"] {
            background: linear-gradient(to right, var(--primary-magic), var(--secondary-sparkle));
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 99, 178, 0.3);
        }
        footer {
            background: var(--dark-kingdom);
            color: white;
            padding: 3rem 20px 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-family: 'Waltograph', cursive, sans-serif;
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-sparkle);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            border-left: 4px solid var(--accent-gold);
        }
        friend-link a {
            color: var(--accent-gold);
            font-weight: bold;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            max-width: var(--max-width);
            margin: 3rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
            aside {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                padding: 1rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
            .hero-image {
                height: 250px;
            }
        }
        @media print {
            .site-header,
            .breadcrumb,
            aside,
            footer,
            .update-time,
            form,
            .hamburger {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .container {
                max-width: 100%;
                grid-template-columns: 1fr;
                margin: 0;
                padding: 0;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
