* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1A5276;
            --secondary: #F4D03F;
            --tertiary: #F8F9FA;
            --text: #2C3E50;
            --accent: #E74C3C;
        }
        body {
            line-height: 1.8;
            color: var(--text);
            background-color: var(--tertiary);
            padding-bottom: 50px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 25px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            letter-spacing: 1px;
            color: var(--secondary);
            text-transform: uppercase;
        }
        .logo span {
            color: white;
            font-weight: normal;
        }
        nav {
            background-color: var(--primary);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin: 0 15px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 18px 0;
            display: inline-block;
            position: relative;
            font-weight: 500;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 12px;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
        }
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .content-wrapper {
            display: flex;
            gap: 35px;
        }
        main {
            flex: 3;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.06);
        }
        aside {
            flex: 1;
        }
        .sidebar-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.06);
            margin-bottom: 25px;
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 25px;
            border-bottom: 4px solid var(--secondary);
            padding-bottom: 15px;
            text-transform: capitalize;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 15px;
        }
        h3:before {
            content: '✦';
            color: var(--secondary);
            position: absolute;
            left: -5px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
        }
        strong {
            color: var(--primary);
            font-weight: 600;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 8px;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        .btn-primary {
            background-color: var(--primary);
        }
        .btn-primary:hover {
            background-color: #154360;
            box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.01);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0,0,0,0.05);
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.005);
            transition: all 0.2s ease;
        }
        ul, ol {
            margin-left: 35px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        footer {
            background-color: var(--primary);
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h3 {
            color: var(--secondary);
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #34495e;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 25px;
                box-shadow: 0 8px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
            }
            .hamburger {
                display: block;
            }
            .content-wrapper {
                flex-direction: column;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            main {
                padding: 25px;
            }
        }
        .highlight {
            background-color: #FEF9E7;
            padding: 20px;
            border-left: 6px solid var(--secondary);
            margin: 25px 0;
            border-radius: 5px;
        }
        .tag {
            display: inline-block;
            background-color: #EBF5FB;
            color: var(--primary);
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.95rem;
            margin: 6px 6px 6px 0;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #D6EAF8;
            transform: translateY(-2px);
        }
        .button-group {
            margin: 30px 0;
        }
        .external-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px dotted var(--secondary);
        }
        .external-link:hover {
            text-decoration: none;
            border-bottom: 2px solid var(--secondary);
        }
        .stat-box {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
        }
        .stat-item {
            text-align: center;
            flex: 1;
        }
        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
        }
        .stat-label {
            font-size: 0.9rem;
            color: #7f8c8d;
        }
