:root {
            --primary-color: #ff6b35;
            --secondary-color: #004e89;
            --accent-color: #00a896;
            --text-color: #333333;
            --light-bg: #f8f9fa;
            --dark-bg: #1a1a2e;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(90deg, var(--primary-color), #ffd166);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            padding: 5px 10px;
            border-radius: var(--border-radius);
        }
        .logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            position: relative;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--primary-color);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .search-form {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 5px 15px;
            backdrop-filter: blur(10px);
        }
        .search-input {
            background: transparent;
            border: none;
            color: white;
            padding: 10px 15px;
            width: 250px;
            font-size: 1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .search-btn {
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1.2rem;
            padding: 5px;
        }
        .search-btn:hover {
            color: var(--primary-color);
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1.2rem 0;
            border-bottom: 1px solid #e0e0e0;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            font-weight: 600;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        main {
            padding: 3rem 0;
            background-color: #ffffff;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--primary-color);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin: 2.5rem 0 1.2rem;
            padding-left: 15px;
            border-left: 5px solid var(--accent-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--accent-color);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 1.8rem 0;
        }
        .tip-box {
            background-color: rgba(0, 168, 150, 0.1);
            border: 2px solid var(--accent-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 1.8rem 0;
            position: relative;
        }
        .tip-box::before {
            content: '💡';
            position: absolute;
            top: -15px;
            left: -15px;
            background: white;
            border-radius: 50%;
            padding: 5px;
            font-size: 1.5rem;
            border: 2px solid var(--accent-color);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .data-table th, .data-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .data-table th {
            background-color: var(--secondary-color);
            color: white;
            font-weight: 600;
        }
        .data-table tr:nth-child(even) {
            background-color: var(--light-bg);
        }
        .data-table tr:hover {
            background-color: rgba(255, 107, 53, 0.1);
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2.5rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .download-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--dark-bg));
            color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .download-btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--primary-color), #ff9a3c);
            color: white;
            padding: 1.2rem 3rem;
            font-size: 1.5rem;
            font-weight: 700;
            border-radius: 50px;
            margin-top: 1.5rem;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.6);
            background: linear-gradient(90deg, #ff9a3c, var(--primary-color));
        }
        .user-interaction {
            background-color: var(--light-bg);
            padding: 3rem;
            border-radius: var(--border-radius);
            margin: 4rem 0;
            box-shadow: var(--shadow);
        }
        .rating-form, .comment-form {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        .rating-form label, .comment-form label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--secondary-color);
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover, .star.active {
            color: #ffc107;
        }
        textarea, select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            margin-bottom: 1.5rem;
            transition: border-color 0.3s ease;
        }
        textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        .submit-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 78, 137, 0.3);
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
        }
        .web-link a {
            color: #ffffff;
            font-weight: 500;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 1rem;
            }
            .search-input {
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 1.5rem;
                box-shadow: var(--shadow);
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                order: 2;
            }
            .download-section {
                padding: 2rem 1rem;
            }
            .user-interaction {
                padding: 2rem 1rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            .download-btn {
                padding: 1rem 2rem;
                font-size: 1.2rem;
            }
            .game-image {
                margin: 1.5rem auto;
            }
        }
        @media print {
            header, footer, .user-interaction, .download-section {
                display: none;
            }
            body {
                color: black;
                background: white;
            }
        }
