        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #2c5aa0; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #1d3d6f; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2b4c 0%, #2c5aa0 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i { color: #ffcc00; }
        .my-logo:hover { color: #ffcc00; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
            background-color: white;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-body { padding-right: 1rem; }
        .sidebar {
            background-color: #f1f5fd;
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
            border-left: 5px solid #2c5aa0;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a2b4c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #2c5aa0;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            font-size: 1.5rem;
            color: #3a6bc2;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #444;
            font-weight: 300;
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 4px solid #ffcc00;
        }
        .highlight {
            background-color: #fff9db;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #ffcc00;
            margin: 2rem 0;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        b, strong { color: #1a2b4c; }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: #f8f9fa;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2c5aa0;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }
        button, .btn {
            background-color: #2c5aa0;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background-color: #1d3d6f;
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #ffcc00; }
        .comment-list { margin-top: 2rem; }
        .comment {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #e9ecef;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .comment:hover { border-left-color: #2c5aa0; }
        .comment-author {
            font-weight: bold;
            color: #1a2b4c;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0.5rem;
        }
        .site-footer {
            background-color: #1a2b4c;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #ffcc00;
        }
        .footer-section h3 {
            color: #ffcc00;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a {
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover { color: white; }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            border-left: 5px solid #ffcc00;
        }
        friend-link a {
            color: #ffcc00;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a2b4c;
                flex-direction: column;
                padding: 2rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .lead { font-size: 1.1rem; }
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .last-updated {
            font-style: italic;
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #dee2e6;
        }
        .tip {
            background-color: #e7f4ff;
            padding: 1rem;
            border-radius: 5px;
            margin: 1.5rem 0;
            border-left: 4px solid #2c5aa0;
        }
