* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.75; color: #2d3436; background: #f8f9fa; }
        a { color: #e17055; text-decoration: none; transition: all .3s ease; }
        a:hover { color: #d63031; text-decoration: underline; }
        .site-header { background: linear-gradient(135deg, #1a5c2a, #218c3d); padding: 20px 0; box-shadow: 0 4px 20px rgba(0,0,0,.15); position: sticky; top: 0; z-index: 999; }
        .header-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .my-logo { font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
        .my-logo:hover { text-decoration: none; color: #ff9933; }
        .my-logo i { color: #ff9933; margin-right: 8px; }
        .main-nav { display: flex; gap: 10px; flex-wrap: wrap; }
        .main-nav a { color: #fff; padding: 8px 16px; border-radius: 20px; font-size: .9rem; font-weight: 600; transition: all .3s; }
        .main-nav a:hover { background: rgba(255,255,255,.2); text-decoration: none; color: #ff9933; }
        .nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
        .breadcrumb-wrap { background: #fff; border-bottom: 1px solid #eee; padding: 12px 20px; }
        .breadcrumb { max-width: 1400px; margin: 0 auto; font-size: .85rem; color: #666; }
        .breadcrumb a { color: #1a5c2a; }
        .breadcrumb span { margin: 0 6px; color: #aaa; }
        .hero { background: linear-gradient(135deg, #1a5c2a 0%, #ff9933 100%); color: #fff; padding: 60px 20px 40px; text-align: center; }
        .hero h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 10px; text-shadow: 2px 2px 8px rgba(0,0,0,.3); }
        .hero p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; opacity: .95; }
        .hero .badge { display: inline-block; background: rgba(255,255,255,.2); padding: 6px 16px; border-radius: 20px; font-size: .85rem; margin-top: 15px; backdrop-filter: blur(4px); }
        .wrapper { max-width: 1400px; margin: 40px auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
        .content { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 5px 25px rgba(0,0,0,.06); }
        .sidebar { display: flex; flex-direction: column; gap: 25px; }
        .widget { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 4px 15px rgba(0,0,0,.06); }
        .widget h3 { font-size: 1.1rem; color: #1a5c2a; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #ff9933; }
        .widget ul { list-style: none; }
        .widget ul li { margin-bottom: 10px; }
        .widget ul li a { color: #2d3436; font-size: .92rem; display: block; padding: 6px 10px; border-radius: 6px; transition: all .3s; }
        .widget ul li a:hover { background: #f0f0f0; color: #e17055; text-decoration: none; }
        .search-form { display: flex; gap: 8px; }
        .search-form input { flex: 1; padding: 10px 14px; border: 2px solid #ddd; border-radius: 25px; font-size: .9rem; outline: none; transition: border .3s; }
        .search-form input:focus { border-color: #1a5c2a; }
        .search-form button { background: #1a5c2a; color: #fff; border: none; border-radius: 25px; padding: 10px 18px; cursor: pointer; transition: all .3s; }
        .search-form button:hover { background: #ff9933; }
        .comment-form textarea, .comment-form input, .score-form select, .score-form input { width: 100%; padding: 10px 14px; border: 2px solid #ddd; border-radius: 8px; font-size: .9rem; margin-bottom: 12px; outline: none; }
        .comment-form textarea { min-height: 100px; resize: vertical; }
        .score-form select { width: 100%; background: #fff; }
        .btn-submit { background: linear-gradient(135deg, #1a5c2a, #218c3d); color: #fff; border: none; padding: 12px 24px; border-radius: 25px; cursor: pointer; font-size: .95rem; font-weight: 600; transition: all .3s; }
        .btn-submit:hover { background: linear-gradient(135deg, #ff9933, #e17055); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,153,51,.3); }
        .content h2 { font-size: 2rem; color: #1a5c2a; margin: 40px 0 20px; padding-bottom: 12px; border-bottom: 3px solid #ff9933; position: relative; }
        .content h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #1a5c2a; }
        .content h3 { font-size: 1.4rem; color: #2d3436; margin: 30px 0 15px; }
        .content h4 { font-size: 1.1rem; color: #636e72; margin: 20px 0 10px; }
        .content p { margin-bottom: 18px; font-size: 1rem; }
        .content ul, .content ol { margin: 0 0 20px 20px; }
        .content li { margin-bottom: 8px; }
        .highlight-box { background: #f0fff4; border-left: 4px solid #1a5c2a; padding: 20px; border-radius: 0 12px 12px 0; margin: 20px 0; }
        .highlight-box.orange { background: #fff8f0; border-left-color: #ff9933; }
        .content img { max-width: 100%; border-radius: 12px; margin: 25px 0; box-shadow: 0 8px 30px rgba(0,0,0,.1); }
        .img-caption { font-size: .85rem; color: #888; text-align: center; margin-top: -15px; margin-bottom: 25px; }
        .data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .95rem; }
        .data-table th, .data-table td { padding: 12px 15px; border: 1px solid #eee; text-align: left; }
        .data-table th { background: #1a5c2a; color: #fff; font-weight: 600; }
        .data-table tr:nth-child(even) { background: #f8f9fa; }
        .data-table tr:hover { background: #fff8f0; }
        .site-footer { background: #1a1a2e; color: #aaa; padding: 50px 20px 20px; margin-top: 60px; }
        .footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
        .site-footer h4 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; }
        .site-footer a { color: #ddd; }
        .site-footer a:hover { color: #ff9933; }
        .copyright { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; }
        friend-link { display: block; margin: 15px 0; padding: 15px; background: rgba(255,255,255,.03); border-radius: 8px; line-height: 2; }
        friend-link a { margin-right: 10px; }
        @media (max-width: 992px) {
            .wrapper { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2rem; }
            .header-inner { flex-direction: column; gap: 15px; }
            .main-nav { flex-direction: column; display: none; width: 100%; text-align: center; }
            .main-nav.active { display: flex; }
            .nav-toggle { display: block; position: absolute; right: 20px; top: 20px; }
            .content { padding: 25px; }
            .footer-inner { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            .hero h1 { font-size: 1.6rem; }
            .content h2 { font-size: 1.5rem; }
            .data-table { font-size: .8rem; }
            .data-table th, .data-table td { padding: 8px; }
        }
        .emoji { font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Twemoji Mozilla', 'Noto Color Emoji', sans-serif; }
