* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        :root {
            --primary: #2C3E50;
            --secondary: #E67E22;
            --light: #ECF0F1;
            --dark: #1A252F;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary);
            color: var(--light);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 26px;
            font-weight: bold;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 28px;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 101;
        }
        .hamburger div {
            width: 28px;
            height: 3px;
            background-color: var(--light);
            margin: 6px;
            transition: all 0.3s ease;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 6px;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        .btn:hover {
            background-color: #D35400;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        main {
            padding: 50px 0;
        }
        .content-section {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 35px;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-3px);
        }
        h1 {
            color: var(--primary);
            font-size: 38px;
            margin-bottom: 25px;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
            font-weight: 700;
        }
        h2 {
            color: var(--primary);
            font-size: 30px;
            margin: 35px 0 20px;
            font-weight: 600;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: '▶';
            color: var(--secondary);
            position: absolute;
            left: 0;
        }
        h3 {
            color: var(--dark);
            font-size: 24px;
            margin: 25px 0 12px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 17px;
        }
        ul, ol {
            margin-left: 35px;
            margin-bottom: 25px;
        }
        ul li, ol li {
            margin-bottom: 10px;
            font-size: 16px;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.12);
            border: 4px solid white;
        }
        .highlight {
            background-color: #FFF5E6;
            padding: 20px;
            border-left: 5px solid var(--secondary);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
        }
        .table-container {
            overflow-x: auto;
            margin: 25px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #E0E0E0;
        }
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #F8F9FA;
        }
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            margin: 0 25px;
            min-width: 250px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 1px solid #444;
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #BBB;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: var(--secondary);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        .tag {
            background-color: #444;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 14px;
            margin: 5px;
            transition: background-color 0.3s ease;
        }
        .tag:hover {
            background-color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #444;
            font-size: 15px;
            color: #AAA;
        }
        .icon-box {
            display: inline-block;
            margin-right: 10px;
            color: var(--secondary);
        }
        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed;
                right: 0;
                height: 100vh;
                top: 0;
                background-color: var(--dark);
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 70%;
                transform: translateX(100%);
                transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
                padding-top: 100px;
                z-index: 100;
                box-shadow: -2px 0 10px rgba(0,0,0,0.2);
            }
            .nav-links li {
                margin: 25px 0;
                opacity: 0;
            }
            .nav-links li:nth-child(1) { transition: opacity 0.3s ease 0.1s; }
            .nav-links li:nth-child(2) { transition: opacity 0.3s ease 0.2s; }
            .nav-links li:nth-child(3) { transition: opacity 0.3s ease 0.3s; }
            .nav-links li:nth-child(4) { transition: opacity 0.3s ease 0.4s; }
            .nav-links li:nth-child(5) { transition: opacity 0.3s ease 0.5s; }
            .hamburger {
                display: block;
            }
            .nav-active {
                transform: translateX(0);
            }
            .nav-active li {
                opacity: 1;
            }
            .toggle .line1 {
                transform: rotate(-45deg) translate(-5px,6px);
            }
            .toggle .line2 {
                opacity: 0;
            }
            .toggle .line3 {
                transform: rotate(45deg) translate(-5px,-6px);
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            .content-section {
                padding: 25px;
            }
        }
