:root {
            --primary: #e74c3c;
            --secondary: #2c3e50;
            --accent: #f39c12;
            --light: #ecf0f1;
            --dark: #1a252f;
            --gray: #7f8c8d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .logo span {
            color: var(--primary);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: var(--transition);
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ddd;
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.7rem;
        }
        .search-bar {
            background-color: var(--light);
            padding: 40px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c0392b;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 50px;
        }
        article {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--secondary);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .article-meta {
            color: var(--gray);
            margin-bottom: 30px;
            display: flex;
            gap: 20px;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, #fff8e1, #fff);
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .game-image {
            width: 100%;
            border-radius: var(--radius);
            margin: 25px 0;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .tip-card {
            background: #f8f9fa;
            padding: 25px;
            border-radius: var(--radius);
            border-top: 4px solid var(--primary);
            transition: var(--transition);
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .tip-card i {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 15px;
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .widget {
            background: white;
            border-radius: var(--radius);
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            color: var(--secondary);
            font-size: 1.4rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--primary);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            justify-content: center;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0;
        }
        .stars .active {
            color: var(--accent);
        }
        .rating-form input, .rating-form textarea {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .rating-form button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: var(--dark);
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .web-links {
            background: var(--light);
            padding: 40px 0;
            margin-top: 50px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: var(--radius);
            text-align: center;
            font-weight: 600;
            color: var(--secondary);
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark);
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav {
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
                border-radius: var(--radius);
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 0;
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
        }
