* {
            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;
        }
        .header {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }
        .logo span {
            color: #fdbb2d;
        }
        .nav {
            display: flex;
            gap: 2rem;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav a:hover {
            color: #fdbb2d;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.5rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #6c757d;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #495057;
        }
        .search-form {
            display: flex;
            margin: 2rem 0;
            max-width: 500px;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-button {
            background: #007bff;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #0056b3;
        }
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-title {
            font-size: 2.5rem;
            color: #1a2a6c;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .content-section {
            margin-bottom: 2rem;
        }
        .section-title {
            font-size: 1.8rem;
            color: #b21f1f;
            margin: 1.5rem 0 1rem 0;
            border-bottom: 2px solid #fdbb2d;
            padding-bottom: 0.5rem;
        }
        .highlight {
            background: #fff3cd;
            padding: 1rem;
            border-left: 4px solid #ffc107;
            margin: 1rem 0;
            border-radius: 4px;
        }
        .gameplay-feature {
            background: #e7f3ff;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 8px;
            border-left: 4px solid #007bff;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #1a2a6c;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #fdbb2d;
        }
        .rating-system {
            text-align: center;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-input {
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .submit-button {
            background: #28a745;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-button:hover {
            background: #218838;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment-form {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        .form-textarea {
            height: 120px;
            resize: vertical;
        }
        .comment {
            background: white;
            padding: 1rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            border-left: 4px solid #007bff;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .comment-author {
            font-weight: bold;
            color: #1a2a6c;
        }
        .comment-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .footer-links {
            background: #343a40;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem 0.5rem 0;
        }
        .web-link a {
            color: #fdbb2d;
            text-decoration: none;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .footer {
            background: #212529;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            .nav {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
            }
            .nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .article-title {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 4px;
                margin-bottom: 0.5rem;
            }
            .search-button {
                border-radius: 4px;
            }
        }
        .logo, .nav a, .search-button, .submit-button {
            transition: all 0.3s ease;
        }
        .gameplay-feature:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .comment:hover {
            transform: translateX(5px);
            transition: transform 0.3s ease;
        }
        @media print {
            .header, .sidebar, .footer-links, .comment-form {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
