        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
            margin-left: 1.2em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffcc00;
        }
        .logo span {
            background: linear-gradient(to right, #ffcc00, #ffeb3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .main-nav ul {
            display: flex;
            gap: 30px;
        }
        .main-nav li {
            list-style: none;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffcc00;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #3949ab;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #757575;
        }
        .search-box {
            background: #f1f3ff;
            padding: 25px 20px;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(to right, #3949ab, #1a237e);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(to right, #283593, #0d1b6a);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #283593;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.6rem;
            color: #3949ab;
            margin: 35px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #444;
            background-color: #f0f4ff;
            padding: 20px;
            border-left: 5px solid #3949ab;
            border-radius: 0 8px 8px 0;
            margin-bottom: 30px;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 5px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .strategy-box {
            background: linear-gradient(145deg, #e3f2fd, #f3e5f5);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border-left: 6px solid #7b1fa2;
        }
        .player-quote {
            font-style: italic;
            border-left: 4px solid #4caf50;
            padding-left: 20px;
            margin: 25px 0;
            color: #555;
        }
        .author {
            font-weight: bold;
            color: #1a237e;
            margin-top: 10px;
        }
        .image-container {
            margin: 35px auto;
            text-align: center;
        }
        .featured-img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }
        .img-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 5px solid #3949ab;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a237e;
            line-height: 1;
        }
        .stat-label {
            color: #666;
            margin-top: 10px;
        }
        .sidebar {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar h3 {
            font-size: 1.4rem;
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            margin-left: 0;
        }
        .sidebar li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #eee;
        }
        .sidebar a:hover {
            color: #3949ab;
            padding-left: 5px;
        }
        .rating-widget, .comment-widget {
            background: #f9f9ff;
            padding: 20px;
            border-radius: 10px;
            margin-top: 25px;
        }
        .stars {
            color: #ffcc00;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        textarea {
            min-height: 100px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #4caf50, #2e7d32);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #43a047, #1b5e20);
            transform: translateY(-2px);
        }
        .web-links-section {
            background: #1a237e;
            color: white;
            padding: 40px 20px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.08);
            padding: 18px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #bbdefb;
            display: block;
        }
        .web-link a:hover {
            color: #ffcc00;
        }
        .site-footer {
            background: #0d1b6a;
            color: #b0bec5;
            padding: 40px 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: #bbdefb;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            font-size: 0.95rem;
            color: #8c9eff;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #3949ab;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 15px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content, .sidebar {
                padding: 25px;
            }
            .main-content {
                padding: 25px 15px;
                gap: 25px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-input, .search-btn {
                padding: 15px 20px;
            }
        }
        @media print {
            .site-header, .search-box, .sidebar, .web-links-section, .site-footer, .rating-widget, .comment-widget, .breadcrumb {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
                padding: 0;
            }
            .article-content {
                box-shadow: none;
                padding: 20px 0;
            }
        }
