* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #e67e22;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #d35400;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1px;
            color: #f1c40f;
            text-shadow: 0 2px 8px rgba(241, 196, 15, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #f1c40f;
        }
        .my-logo span {
            color: #e67e22;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e0e0e0;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s ease;
        }
        .nav-menu a:hover {
            color: #f1c40f;
            border-bottom-color: #f1c40f;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e8e8e8;
            font-size: 14px;
            color: #555;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #e67e22;
        }
        .breadcrumb a:hover {
            color: #d35400;
        }
        .breadcrumb .sep {
            color: #aaa;
            margin: 0 4px;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #1a1a2e;
            margin-bottom: 16px;
            line-height: 1.2;
            border-left: 6px solid #e67e22;
            padding-left: 20px;
        }
        h1 i {
            color: #f1c40f;
            margin-right: 12px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0f3460;
            margin-top: 48px;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e67e22;
        }
        h2 i {
            color: #e67e22;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #16213e;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h3 i {
            color: #f39c12;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2c3e50;
            margin-top: 22px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #2c3e50;
        }
        .content-section {
            background: #fff;
            border-radius: 16px;
            padding: 32px 36px;
            margin-bottom: 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s ease;
        }
        .content-section:hover {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #f1c40f;
            padding: 18px 22px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #e67e22;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin: 24px 0;
        }
        .stat-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid #e8e8e8;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #0f3460;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 4px;
        }
        .stat-card i {
            font-size: 2rem;
            color: #e67e22;
            margin-bottom: 8px;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f8f9fa;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #555;
            text-align: center;
            border-top: 1px solid #e8e8e8;
        }
        .search-box {
            background: #fff;
            border-radius: 12px;
            padding: 20px 24px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            margin-bottom: 32px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .search-box input:focus {
            border-color: #e67e22;
        }
        .search-box button {
            padding: 14px 32px;
            background: #e67e22;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #d35400;
            transform: scale(1.02);
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin: 28px 0;
            padding: 24px;
            background: #f8f9fa;
            border-radius: 16px;
            border: 1px solid #e8e8e8;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 32px;
            cursor: pointer;
            color: #ccc;
            transition: color 0.2s ease;
        }
        .rating-stars i.active {
            color: #f1c40f;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f1c40f;
        }
        .rating-display {
            font-size: 1.1rem;
            color: #2c3e50;
            font-weight: 600;
        }
        .rating-display span {
            color: #f1c40f;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .rating-form button {
            padding: 10px 24px;
            background: #0f3460;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .rating-form button:hover {
            background: #16213e;
        }
        .comment-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            margin-top: 32px;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 18px 0 24px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #e67e22;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 12px 32px;
            background: #e67e22;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-form button:hover {
            background: #d35400;
        }
        .comment-list {
            margin-top: 20px;
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 700;
            color: #0f3460;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #999;
            margin-left: 12px;
        }
        .comment-item .text {
            margin-top: 6px;
            color: #2c3e50;
        }
        .links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin: 16px 0;
            padding: 16px 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #eee;
        }
        .links-list a {
            color: #e67e22;
            font-weight: 500;
        }
        .links-list a:hover {
            color: #d35400;
        }
        footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
        }
        footer h4 {
            color: #f1c40f;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        footer a {
            color: #bbb;
            display: block;
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: #f1c40f;
            text-decoration: none;
        }
        footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #2c3e50;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        footer .copyright strong {
            color: #e67e22;
        }
        friend-link {
            display: block;
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 8px;
            background: rgba(255, 255, 255, 0.06);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }
        friend-link a:hover {
            background: rgba(230, 126, 34, 0.2);
            border-color: #e67e22;
            color: #e67e22;
        }
        .last-updated {
            display: inline-block;
            background: #e8f0fe;
            color: #0f3460;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #e67e22;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 16px 0 8px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                font-size: 16px;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .content-section {
                padding: 20px 18px;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                min-width: auto;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 22px;
            }
            .featured-image img {
                max-height: 240px;
            }
            .comment-form button {
                width: 100%;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .rating-stars {
                font-size: 26px;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
