* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #d4af37;
            --secondary-color: #1a5276;
            --accent-color: #922b21;
            --bg-color: #fef9e7;
            --text-color: #2c3e50;
            --light-bg: #fff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 10px;
        }
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.7;
            font-size: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #154360 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            background: linear-gradient(45deg, #f1c40f, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo i {
            font-size: 1.8rem;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-color);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e8f4fc;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .separator {
            color: #7f8c8d;
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 82, 118, 0.1) 100%);
            border-radius: var(--border-radius);
        }
        h1 {
            color: var(--secondary-color);
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 8px;
            color: var(--primary-color);
        }
        .search-section {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .search-section h2 {
            margin-bottom: 20px;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid var(--primary-color);
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(45deg, var(--primary-color), #f39c12);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(45deg, #f39c12, var(--primary-color));
            transform: scale(1.03);
        }
        .content-section {
            margin-bottom: 50px;
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h2 {
            color: var(--accent-color);
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary-color);
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin: 30px 0 20px 0;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.15rem;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.2);
            padding: 25px;
            border-left: 5px solid var(--primary-color);
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 600;
            color: var(--secondary-color);
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            display: block;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 10px;
            font-size: 1rem;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        .tip-card {
            background: linear-gradient(135deg, rgba(26, 82, 118, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
            padding: 25px;
            border-radius: var(--border-radius);
            border-top: 5px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        .tip-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        .tip-card h4 {
            color: var(--accent-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tip-card i {
            color: var(--primary-color);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-section, .rating-section {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 25px 0;
        }
        .star {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star.active, .star:hover {
            color: var(--primary-color);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--secondary-color);
        }
        .form-control {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            transition: border 0.3s ease;
        }
        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(45deg, var(--secondary-color), #1b4f72);
            color: white;
            border: none;
            padding: 18px;
            border-radius: var(--border-radius);
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        .submit-button:hover {
            background: linear-gradient(45deg, #1b4f72, var(--secondary-color));
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(26, 82, 118, 0.2);
        }
        .footer-links {
            background-color: #2c3e50;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: #ecf0f1;
            text-decoration: none;
            font-size: 1.05rem;
        }
        .web-link a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            font-size: 0.95rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 800;
        }
        @media (max-width: 768px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 50px;
                margin-bottom: 15px;
            }
            .search-button {
                border-radius: 50px;
                padding: 15px;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media print {
            .search-section, .interactive-section, .footer-links, .hamburger, .desktop-nav {
                display: none !important;
            }
            body {
                background-color: white;
                color: black;
                font-size: 12pt;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            .content-section {
                box-shadow: none;
                padding: 0;
                margin-bottom: 20pt;
            }
        }
