* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; line-height: 1.6; }
        body { background: #f8f9fa; }
        a { color: #0066cc; text-decoration: none; }
        a:hover { text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        button, .btn { cursor: pointer; min-height: 44px; min-width: 44px; padding: 10px 20px; border-radius: 6px; border: none; font-weight: 600; transition: all 0.3s ease; }
        .btn-primary { background: linear-gradient(135deg, #ff6b35, #ff3e00); color: white; }
        .btn-primary:hover { background: linear-gradient(135deg, #e05a2d, #cc3200); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3); }
        .btn-secondary { background: #2d3748; color: white; }
        .btn-secondary:hover { background: #1a202c; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .logo a { font-size: 2rem; font-weight: 800; background: linear-gradient(90deg, #ff3e00, #0066cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .logo span { color: #ff3e00; }
        #hamburger { display: none; font-size: 1.5rem; background: none; color: #333; }
        nav ul { display: flex; list-style: none; gap: 25px; }
        nav a { font-weight: 600; padding: 8px 12px; border-radius: 4px; }
        nav a:hover { background: #f0f0f0; text-decoration: none; }
        .search-box { display: flex; margin-left: 20px; }
        .search-box input { padding: 10px 15px; border: 1px solid #ccc; border-radius: 6px 0 0 6px; width: 250px; }
        .search-box button { border-radius: 0 6px 6px 0; background: #2d3748; color: white; }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 30px; padding: 30px 0; }
        article { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        aside { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; position: sticky; top: 100px; }
        h1 { font-size: 2.8rem; margin-bottom: 20px; color: #1a202c; border-bottom: 3px solid #ff6b35; padding-bottom: 15px; }
        h2 { font-size: 1.8rem; margin: 35px 0 15px; color: #2d3748; padding-left: 10px; border-left: 5px solid #0066cc; }
        h3 { font-size: 1.4rem; margin: 25px 0 10px; color: #4a5568; }
        p { margin-bottom: 16px; }
        ul, ol { margin-left: 25px; margin-bottom: 20px; }
        li { margin-bottom: 8px; }
        .lead { font-size: 1.2rem; color: #4a5568; font-weight: 500; margin-bottom: 25px; }
        .highlight { background: #fff9e6; padding: 15px; border-left: 4px solid #ffcc00; margin: 20px 0; border-radius: 0 6px 6px 0; }
        .info-box { background: #e8f4fd; border: 1px solid #b6d9ff; border-radius: 8px; padding: 20px; margin: 25px 0; }
        .game-image { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.15); margin: 25px 0; }
        .caption { text-align: center; font-style: italic; color: #666; padding: 10px; font-size: 0.9rem; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin: 25px 0; }
        .card { background: #f8f9fa; border-radius: 10px; padding: 20px; border: 1px solid #e2e8f0; transition: transform 0.3s; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
        .stats { display: flex; flex-wrap: wrap; gap: 15px; margin: 20px 0; }
        .stat-item { flex: 1; min-width: 150px; text-align: center; padding: 15px; background: linear-gradient(135deg, #f0f4ff, #e6eeff); border-radius: 8px; }
        .tab-container { margin: 30px 0; }
        .tab-buttons { display: flex; border-bottom: 2px solid #e2e8f0; }
        .tab-btn { padding: 12px 25px; background: none; border: none; border-bottom: 3px solid transparent; font-weight: 600; color: #718096; }
        .tab-btn.active { color: #ff3e00; border-bottom-color: #ff3e00; }
        .tab-content { padding: 20px 0; display: none; }
        .tab-content.active { display: block; animation: fadeIn 0.5s; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        .rating { margin: 20px 0; }
        .stars { color: #ffcc00; font-size: 1.5rem; margin: 10px 0; }
        .social-share { display: flex; gap: 15px; margin: 30px 0; }
        .share-btn { padding: 10px 20px; border-radius: 50px; display: flex; align-items: center; gap: 8px; }
        .facebook { background: #3b5998; color: white; }
        .twitter { background: #1da1f2; color: white; }
        .reddit { background: #ff4500; color: white; }
        #backToTop { position: fixed; bottom: 30px; right: 30px; background: #ff3e00; color: white; border-radius: 50%; width: 50px; height: 50px; display: none; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 12px rgba(255, 62, 0, 0.3); }
        .comment-form, .rating-form { background: #f8f9fa; padding: 25px; border-radius: 10px; margin: 30px 0; }
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 8px; font-weight: 600; }
        input, textarea, select { width: 100%; padding: 12px 15px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 1rem; }
        textarea { min-height: 120px; resize: vertical; }
        footer { background: #1a202c; color: #cbd5e0; padding: 40px 0 20px; margin-top: 50px; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .footer-section h3 { color: white; border-left: none; padding: 0; }
        .friend-links { display: flex; flex-wrap: wrap; gap: 15px; margin: 15px 0; }
        .friend-link { background: #2d3748; padding: 8px 15px; border-radius: 4px; color: #90cdf4; }
        .friend-link:hover { background: #4a5568; text-decoration: none; }
        .copyright { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid #2d3748; font-size: 0.9rem; color: #a0aec0; }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            aside { position: static; }
            .header-content { flex-wrap: wrap; }
            nav ul { gap: 15px; }
            .search-box input { width: 200px; }
        }
        @media (max-width: 768px) {
            #hamburger { display: block; }
            nav { display: none; width: 100%; order: 3; margin-top: 20px; }
            nav.active { display: block; }
            nav ul { flex-direction: column; gap: 10px; }
            .search-box { margin: 15px 0 0; width: 100%; }
            .search-box input { width: 100%; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.6rem; }
            .tab-buttons { flex-wrap: wrap; }
            .tab-btn { flex: 1; min-width: 120px; text-align: center; }
        }
        @media (max-width: 480px) {
            .card-grid { grid-template-columns: 1fr; }
            .stats { flex-direction: column; }
            .social-share { flex-direction: column; }
            .btn { width: 100%; text-align: center; }
        }
