* {
            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, #1a1a2e 0%, #16213e 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;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e94560;
            text-decoration: none;
        }
        .logo:hover {
            color: #ff6b81;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 300px;
        }
        .search-btn {
            background: #e94560;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        .search-btn:hover {
            background: #ff6b81;
        }
        nav {
            background: #0f3460;
            margin-top: 1rem;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .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: #e94560;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #f1f1f1;
        }
        .breadcrumb a {
            color: #0f3460;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #0f3460;
            margin-bottom: 1rem;
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
        }
        .content-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .content-section h2 {
            color: #0f3460;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e94560;
        }
        .content-section h3 {
            color: #16213e;
            margin: 1.5rem 0 1rem 0;
        }
        .content-section p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: #fff9e6;
            padding: 1.5rem;
            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;
            position: relative;
            padding-left: 2rem;
        }
        .feature-list li:before {
            content: "✓";
            color: #28a745;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .download-section {
            background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            margin: 2rem 0;
        }
        .download-btn {
            display: inline-block;
            background: #e94560;
            color: white;
            padding: 1rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: transform 0.3s, background 0.3s;
        }
        .download-btn:hover {
            background: #ff6b81;
            transform: translateY(-3px);
        }
        .rating-section {
            text-align: center;
            margin: 2rem 0;
        }
        .stars {
            font-size: 1.5rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .rating-form {
            max-width: 500px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1rem;
            text-align: left;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
        }
        .form-control {
            width: 100%;
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .submit-btn {
            background: #0f3460;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #16213e;
        }
        .comments-section {
            margin: 2rem 0;
        }
        .comment {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #0f3460;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .comment-author {
            font-weight: bold;
            color: #0f3460;
        }
        .comment-date {
            color: #666;
            font-size: 0.9rem;
        }
        .footer-links {
            background: #1a1a2e;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
        }
        .web-link a {
            color: #e94560;
            text-decoration: none;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #0f3460;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .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%;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
            }
            .nav-menu.active {
                display: flex;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
