* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }
        .logo:hover {
            color: #ffd700;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            padding: 10px;
            border: none;
            border-radius: 5px;
            width: 300px;
        }
        .search-btn {
            background: #ff6b6b;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #ff5252;
        }
        nav {
            background: rgba(255,255,255,0.1);
            margin-top: 1rem;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-menu li {
            position: relative;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            display: block;
            transition: background 0.3s;
        }
        .nav-menu a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 20px;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #667eea;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1rem;
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
        }
        .content-section {
            background: white;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .content-section h2 {
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .content-section h3 {
            color: #764ba2;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.4rem;
        }
        .content-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        .highlight {
            background: #fff3cd;
            padding: 1rem;
            border-left: 4px solid #ffc107;
            margin: 1.5rem 0;
        }
        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        .feature-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }
        .feature-list li:before {
            content: "✓";
            color: #28a745;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem 0;
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 1rem 0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .comment-section {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .comment-form {
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffc107;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-2px);
        }
        .web-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: bold;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #333;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-input {
                width: 100%;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(102, 126, 234, 0.95);
                z-index: 1000;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.5rem;
            }
            .content-section h2 {
                font-size: 1.4rem;
            }
            .content-section h3 {
                font-size: 1.2rem;
            }
        }
