* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2e7d32;
            --primary-dark: #1b5e20;
            --secondary: #ff9800;
            --accent: #2196f3;
            --light: #f5f5f5;
            --dark: #333;
            --gray: #757575;
            --border: #e0e0e0;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        .my-logo i {
            color: var(--secondary);
            margin-right: 10px;
        }
        .my-logo a {
            color: inherit;
        }
        .search-box {
            display: flex;
            width: 100%;
            max-width: 400px;
        }
        .search-box input {
            flex: 1;
            padding: 10px 15px;
            border: 2px solid var(--border);
            border-right: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--primary-dark);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }
        .main-nav {
            background: var(--primary-dark);
        }
        .nav-list {
            display: flex;
            list-style: none;
        }
        .nav-list li {
            position: relative;
        }
        .nav-list a {
            color: white;
            display: block;
            padding: 15px 20px;
            font-weight: 500;
        }
        .nav-list a:hover,
        .nav-list a.active {
            background: rgba(255,255,255,0.1);
            color: var(--secondary);
        }
        .breadcrumb {
            padding: 12px 0;
            background: #f9f9f9;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        main {
            min-width: 0; 
        }
        article {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            margin-top: 1.8em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
        }
        h4 {
            font-size: 1.4rem;
            color: var(--gray);
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        .highlight-box {
            background: #e8f5e9;
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .link-list {
            background: #f1f8e9;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .link-list h3 {
            margin-top: 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .link-list li {
            padding: 10px;
            background: white;
            border-radius: 4px;
            transition: var(--transition);
        }
        .link-list li:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .link-list a {
            display: block;
            font-weight: 500;
        }
        .link-list a:before {
            content: "🔗";
            margin-right: 8px;
        }
        .user-actions {
            background: #f5f5f5;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }
        .user-actions h3 {
            margin-top: 0;
        }
        .action-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .action-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .action-card i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        .action-card h4 {
            margin-top: 0;
        }
        .action-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }
        .action-card input,
        .action-card textarea,
        .action-card select {
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: 4px;
            width: 100%;
        }
        .action-card button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .action-card button:hover {
            background: var(--primary-dark);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 10px 0;
        }
        .stars i {
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        aside {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .update-time {
            background: #e3f2fd;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            color: var(--primary-dark);
        }
        .update-time i {
            margin-right: 10px;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--secondary);
            margin-top: 0;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 10px;
            border-left: 3px solid var(--secondary);
        }
        friend-link a {
            color: white;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary-dark);
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list li {
                width: 100%;
            }
            .nav-list a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                margin-top: 15px;
                max-width: 100%;
            }
        }
