/* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: #202122;
            background-color: #f6f6f6;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            color: #2a4b8d;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        
        h1 {
            font-size: 1.8rem;
            border-bottom: 1px solid #a2a9b1;
            padding-bottom: 0.3rem;
            margin-bottom: 1rem;
        }
        
        h2 {
            font-size: 1.5rem;
            margin-top: 1.5rem;
            padding-bottom: 0.25rem;
        }
        
        h3 {
            font-size: 1.2rem;
            margin-top: 1.2rem;
        }
        
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        
        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header & Navigation */
        header {
            background-color: #2a4b8d;
            color: white;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: white;
        }
        
        .logo span {
            color: #ffcc00;
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0.8rem;
            border-radius: 3px;
            transition: background-color 0.2s;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            min-height: 44px;
            min-width: 44px;
        }
        
        /* Main Content */
        main {
            background-color: white;
            padding: 2rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            margin-top: 1rem;
            border-radius: 3px;
        }
        
        .content-wrapper {
            display: flex;
            gap: 2rem;
        }
        
        .main-content {
            flex: 3;
        }
        
        .sidebar {
            flex: 1;
            min-width: 300px;
        }
        
        /* Tables & Infobox */
        .infobox {
            background-color: #f8f9fa;
            border: 1px solid #a2a9b1;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border-radius: 3px;
            font-size: 0.9rem;
        }
        
        .infobox th {
            text-align: left;
            padding-right: 1rem;
            vertical-align: top;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }
        
        table th, table td {
            border: 1px solid #a2a9b1;
            padding: 0.5rem;
            text-align: left;
        }
        
        table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        
        /* Images */
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 5px;
            margin: 1rem 0;
            border: 1px solid #ddd;
        }
        
        .image-caption {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        /* Interactive Elements */
        .btn {
            display: inline-block;
            background-color: #2a4b8d;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s;
            text-align: center;
            min-height: 44px;
            min-width: 44px;
        }
        
        .btn:hover {
            background-color: #1a3b7d;
        }
        
        .btn-secondary {
            background-color: #6c757d;
        }
        
        .btn-secondary:hover {
            background-color: #5a6268;
        }
        
        /* Forms */
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Rating System */
        .rating {
            display: flex;
            align-items: center;
            margin: 1rem 0;
        }
        
        .rating-stars {
            display: flex;
            margin-right: 1rem;
        }
        
        .rating-star {
            color: #ddd;
            font-size: 1.5rem;
            margin-right: 0.2rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .rating-star.active {
            color: #ffcc00;
        }
        
        /* Social Sharing */
        .social-sharing {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
        }
        
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .reddit { background-color: #ff4500; }
        .whatsapp { background-color: #25d366; }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background-color: #2a4b8d;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 100;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        /* Footer */
        footer {
            background-color: #2a4b8d;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Friend Links */
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        
        /* Comments Section */
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #666;
        }
        
        .comment-author {
            font-weight: 600;
            color: #2a4b8d;
        }
        
        /* TOC */
        .toc {
            background-color: #f8f9fa;
            border: 1px solid #a2a9b1;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border-radius: 3px;
        }
        
        .toc h2 {
            font-size: 1.2rem;
            margin-top: 0;
        }
        
        .toc ul {
            list-style: none;
            padding-left: 1rem;
        }
        
        .toc li {
            margin-bottom: 0.5rem;
        }
        
        .toc a {
            color: #2a4b8d;
            text-decoration: none;
        }
        
        .toc a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .sidebar {
                min-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 1.6rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #2a4b8d;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                width: 100%;
            }
            
            nav ul li a {
                justify-content: flex-start;
                padding: 0.8rem 1rem;
            }
            
            .hamburger {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .header-content {
                position: relative;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            
            h1 {
                font-size: 1.4rem;
            }
            
            .social-sharing {
                justify-content: center;
            }
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        
        .highlight {
            background-color: #fff8e1;
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
        }
        
        .note {
            background-color: #e8f4fd;
            border-left: 4px solid #2a4b8d;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 3px 3px 0;
        }
        
        .warning {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 3px 3px 0;
        }
        
        .badge {
            display: inline-block;
            background-color: #2a4b8d;
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.5rem;
        }
        
        .badge-new {
            background-color: #dc3545;
        }
        
        .badge-update {
            background-color: #28a745;
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

