        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffeb3b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo i {
            font-size: 2rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            background-color: #e8f5e9;
            padding: 1rem 20px;
            border-bottom: 1px solid #c8e6c9;
        }
        .breadcrumb ol {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            list-style: none;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .breadcrumb a {
            color: #2e7d32;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 768px) {
            .content-container {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #4caf50;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #2e7d32;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #666;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #388e3c;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e0e0e0;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #43a047;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.3rem;
            color: #66bb6a;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .article-content strong {
            color: #2e7d32;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-left: 4px solid #4caf50;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .widget-title {
            font-size: 1.3rem;
            color: #2e7d32;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #4caf50;
        }
        .search-form {
            display: flex;
            margin-top: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #4caf50;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-button {
            background: #4caf50;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #388e3c;
        }
        .rating-system {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select,
        .rating-form textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
        }
        .rating-form button {
            background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .rating-form button:hover {
            transform: translateY(-2px);
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e0e0e0;
        }
        .comment-form {
            background: #f5f5f5;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #555;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }
        .submit-button {
            background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
        }
        .site-footer {
            background: linear-gradient(135deg, #263238 0%, #37474f 100%);
            color: white;
            padding: 3rem 20px 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-column h3 {
            color: #4caf50;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #b0bec5;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #4caf50;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(76, 175, 80, 0.2);
        }
        friend-link a {
            color: #4caf50 !important;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #546e7a;
            color: #b0bec5;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: #2e7d32;
                padding: 1.5rem;
                transition: left 0.3s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .header-container {
                padding: 0 15px;
            }
            .main-article {
                padding: 1.5rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .content-container {
                padding: 1rem 15px;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-article,
        .sidebar-widget {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .emoji { font-size: 1.2em; margin: 0 3px; }
