* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #212529;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #23272a;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #f77f00;
            text-decoration: none;
            text-shadow: 0 0 4px rgba(247, 127, 0, 0.6);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: #f1f3f5;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: #f77f00;
            color: #ffffff;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f1f3f5;
            font-size: 1.5rem;
            cursor: pointer;
        }
        h1 {
            font-size: 2.2rem;
            color: #23272a;
            margin: 30px 0;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 3px solid #f77f00;
        }
        h2 {
            font-size: 1.8rem;
            color: #023e8a;
            margin: 40px 0 20px;
            border-left: 5px solid #023e8a;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.4rem;
            color: #c1121f;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #c1121f;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #c1121f;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #023e8a;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 15px 20px 0;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            text-align: center;
        }
        .btn:hover {
            background-color: #0353a4;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: #2e7d32;
        }
        .btn-download:hover {
            background-color: #388e3c;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: 3px solid #ffffff;
        }
        .game-types {
            margin: 40px 0 20px;
        }
        .game-types a, .tags a {
            color: #023e8a;
            text-decoration: none;
            margin-right: 12px;
            font-size: 1rem;
            padding: 3px 8px;
            border-radius: 3px;
            transition: all 0.3s;
            display: inline-block;
            margin-bottom: 8px;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #023e8a;
            color: white;
        }
        .tags {
            margin: 20px 0 40px;
        }
        footer {
            background-color: #23272a;
            color: #f1f3f5;
            padding: 30px 0;
            margin-top: 60px;
        }
        .footer-text {
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
        }
        .copyright {
            font-size: 0.9rem;
            color: #adb5bd;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #495057;
            text-align: center;
        }
        .player-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 15px 0;
        }
        .stat-item {
            background: #f8f9fa;
            padding: 8px 15px;
            border-radius: 5px;
            flex: 1;
            min-width: 120px;
            text-align: center;
        }
        .stat-item span {
            display: block;
            font-weight: bold;
            color: #c1121f;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #23272a;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            .stats {
                flex-direction: column;
            }
        }
