        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #d35400;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #a52714;
        }
        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, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            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: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #f39c12, #e74c3c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #f39c12;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f39c12;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: #16213e;
                transition: left 0.4s ease;
                padding: 2rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e8e8e8;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #7f8c8d;
        }
        .hero {
            background: linear-gradient(rgba(22, 33, 62, 0.85), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 4rem 1rem;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 2rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #c0392b;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .article-content h1, .article-content h2, .article-content h3, .article-content h4 {
            color: #2c3e50;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        .article-content h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #f39c12;
            padding-bottom: 0.5rem;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #34495e;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: #5d6d7e;
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: #7f8c8d;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content strong {
            color: #d35400;
            font-weight: 700;
        }
        .article-content em {
            color: #27ae60;
            font-style: italic;
        }
        .highlight-box {
            background: #fdf2e9;
            border-left: 5px solid #f39c12;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 2.5rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .link-list {
            background: #ecf0f1;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: square inside;
            column-count: 2;
            column-gap: 2rem;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
        }
        @media (max-width: 576px) {
            .link-list ul {
                column-count: 1;
            }
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3498db;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #555;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem 1rem;
            border: 1px solid #bdc3c7;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 2rem;
            color: #f1c40f;
            cursor: pointer;
            margin: 0.5rem 0 1rem;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f39c12;
        }
        .submit-btn {
            background: #27ae60;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #219653;
        }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-widget h4 {
            color: #f39c12;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1rem 0;
        }
        friend-link {
            background: rgba(255,255,255,0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(243, 156, 18, 0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4a6572;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        .update-time {
            font-size: 0.9rem;
            color: #7f8c8d;
            font-style: italic;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #ddd;
        }
        .emoji {
            font-size: 1.2em;
            vertical-align: middle;
            margin: 0 3px;
        }
