* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #ff3e00;
            --secondary: #0056b3;
            --light: #f8f9fa;
            --dark: #212529;
            --accent: #ffc107;
            --success: #28a745;
            --info: #17a2b8;
            --warning: #ffc107;
            --danger: #dc3545;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            color: white;
            display: inline-block;
        }
        .logo span {
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255,193,7,0.7);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 8px rgba(255,62,0,0.2);
            margin-right: 15px;
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--dark);
            box-shadow: 0 4px 8px rgba(255,193,7,0.2);
        }
        .btn:hover {
            background-color: #e03700;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255,62,0,0.3);
        }
        .btn-secondary:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255,193,7,0.3);
        }
        .btn-group {
            margin: 30px 0;
        }
        main {
            padding: 40px 0;
        }
        .page-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--secondary);
            border-bottom: 4px solid var(--primary);
            padding-bottom: 15px;
            font-weight: 700;
        }
        .intro {
            font-size: 1.1rem;
            margin-bottom: 40px;
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary);
        }
        section {
            margin-bottom: 50px;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        h2 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.8rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            font-weight: 600;
        }
        h3 {
            color: var(--primary);
            margin: 25px 0 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        ul {
            margin-left: 40px;
            margin-bottom: 20px;
        }
        ul li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: #856404;
        }
        .game-card {
            display: flex;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
            align-items: center;
        }
        .game-img {
            flex: 1;
            min-width: 300px;
        }
        .game-img img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .game-details {
            flex: 2;
            min-width: 300px;
        }
        .feature-box {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid var(--accent);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #f8f9fa;
        }
        footer {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
        }
        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-col ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #ccc;
        }
        .tag {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-right: 8px;
            margin-bottom: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                display: none;
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .page-title {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .game-card {
                flex-direction: column;
            }
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 10px;
                text-align: center;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
