        * {
            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.6;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #2a7de1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a5fb4;
            text-decoration: underline;
        }
        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, #1a5fb4 0%, #2a7de1 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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span:first-child {
            color: #4ade80;
        }
        .my-logo span:last-child {
            color: #fbbf24;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a5fb4;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .search-section {
            background-color: #e3f2fd;
            padding: 2rem 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #2a7de1;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background-color: #2a7de1;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .search-btn:hover {
            background-color: #1a5fb4;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .update-time {
            color: #6c757d;
            font-style: italic;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a5fb4;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #2a7de1;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #444;
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 4px solid #2a7de1;
            border-radius: 4px;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #ffc107;
            margin: 2rem 0;
        }
        .highlight strong {
            color: #856404;
        }
        .trick-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #c5cae9;
            box-shadow: 0 8px 16px rgba(0,0,0,0.05);
        }
        .trick-title {
            color: #7b1fa2;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .featured-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .related-links {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .related-links h4 {
            color: #2a7de1;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .link-grid a {
            display: block;
            padding: 0.8rem;
            background-color: white;
            border-radius: 6px;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .link-grid a:hover {
            background-color: #e3f2fd;
            border-color: #2a7de1;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .sidebar {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #2a7de1;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: 10px;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .stars i:hover {
            color: #ff9800;
        }
        .rating-btn {
            background-color: #2a7de1;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            margin-top: 1rem;
            transition: background-color 0.3s ease;
        }
        .rating-btn:hover {
            background-color: #1a5fb4;
        }
        .comments-section {
            margin-top: 3rem;
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background-color: #218838;
        }
        .comment-list {
            margin-top: 3rem;
        }
        .comment {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #2a7de1;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }
        .comment-author {
            font-weight: 700;
            color: #1a5fb4;
        }
        .comment-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .site-footer {
            background-color: #1a202c;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.6rem;
        }
        .footer-links a {
            color: #cbd5e0;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            transition: background-color 0.3s ease;
        }
        friend-link:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .article-content,
            .sidebar,
            .comments-section {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                padding: 0.8rem;
            }
        }
