:root {
            --primary: #2a5ca9;
            --secondary: #ff9900;
            --accent: #34a853;
            --dark: #1a237e;
            --light: #f5f7fa;
            --text: #333333;
            --text-light: #666666;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            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.7;
            color: var(--text);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .pogo {
            color: #ffcc00;
            text-shadow: 2px 2px 0px var(--secondary);
        }
        .logo .game {
            color: white;
        }
        .logo:hover {
            transform: scale(1.02);
        }
        .search-box {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
            position: relative;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #e68900;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
            font-size: 1.05rem;
        }
        nav a:hover,
        nav a.active {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--light);
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--primary);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .update-time {
            background: var(--light);
            padding: 5px 15px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .content-section {
            margin-bottom: 40px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--border);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin: 25px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 20px 0 12px;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary);
            background: rgba(42, 92, 169, 0.05);
            padding: 20px;
            border-left: 4px solid var(--secondary);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 25px 0;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255, 153, 0, 0.15) 0%, rgba(255, 153, 0, 0) 80%);
            padding: 25px;
            border-radius: var(--radius);
            margin: 25px 0;
            border: 1px solid rgba(255, 153, 0, 0.3);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat {
            background: white;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 5px solid var(--accent);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            margin-top: 10px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 25px auto;
            border: 1px solid var(--border);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -15px;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 8px;
        }
        .content-link {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 1px dotted var(--primary);
        }
        .content-link:hover {
            color: var(--secondary);
            border-bottom-style: solid;
        }
        blockquote {
            border-left: 5px solid var(--secondary);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
            background: var(--light);
            padding: 25px;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--secondary);
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--border);
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .related-links i {
            color: var(--accent);
            font-size: 0.9rem;
        }
        .interactive-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            border-radius: var(--radius);
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #c3d7ed;
        }
        .rating-section, .comment-section {
            margin-top: 30px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(42, 92, 169, 0.1);
        }
        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            align-self: flex-start;
        }
        .btn:hover {
            background: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
        }
        .btn-secondary {
            background: var(--secondary);
        }
        .btn-secondary:hover {
            background: #e68900;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .footer-links li {
            margin-bottom: 12px;
            list-style: none;
        }
        .footer-links a {
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .footer-links i {
            width: 20px;
            color: var(--secondary);
        }
        friend-link {
            display: block;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            margin-bottom: 10px;
            border-left: 3px solid var(--accent);
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            aside {
                position: static;
            }
            .stats-box {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
            }
            .search-box {
                margin: 10px 0;
                max-width: 100%;
            }
            .menu-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            nav a {
                display: block;
                padding: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        @media print {
            header, nav, aside, .interactive-box, footer {
                display: none;
            }
            main {
                grid-template-columns: 1fr;
                padding: 0;
            }
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
            h1 {
                font-size: 18pt;
            }
            a {
                color: #000;
                text-decoration: underline;
            }
        }
