        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #FF6B8B;
            --secondary: #7B68EE;
            --accent: #20B2AA;
            --dark: #2C3E50;
            --light: #F8F9FA;
            --text: #333333;
            --gray: #95A5A6;
            --success: #27AE60;
            --warning: #F39C12;
        }
        body {
            background-color: #fef6ff;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo a {
            color: white;
        }
        .logo a:hover {
            color: #FFD700;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            font-size: 17px;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: white;
            font-size: 18px;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: #EDE7F6;
            padding: 12px 0;
            font-size: 15px;
            margin-bottom: 25px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--gray);
        }
        .search-container {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #E0E0E0;
            border-radius: 50px 0 0 50px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-box input:focus {
            border-color: var(--secondary);
        }
        .search-box button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-box button:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        h1 {
            color: var(--dark);
            font-size: 42px;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .article-meta {
            color: var(--gray);
            font-size: 16px;
            margin-bottom: 20px;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-section {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 35px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            border-left: 5px solid var(--accent);
        }
        h2 {
            color: var(--secondary);
            font-size: 32px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #E0E0E0;
        }
        h3 {
            color: var(--primary);
            font-size: 26px;
            margin: 25px 0 15px;
        }
        h4 {
            color: var(--dark);
            font-size: 21px;
            margin: 20px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 1.8;
        }
        .highlight {
            background-color: #FFF9C4;
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--warning);
            margin: 25px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        .tip-box {
            background-color: #E8F5E9;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid var(--success);
        }
        .tip-title {
            font-weight: 700;
            color: var(--success);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .cheat-list {
            list-style-type: none;
            margin: 20px 0;
        }
        .cheat-list li {
            padding: 12px 0 12px 40px;
            position: relative;
            border-bottom: 1px dashed #E0E0E0;
        }
        .cheat-list li:before {
            content: "🎮";
            position: absolute;
            left: 0;
            top: 12px;
        }
        .article-image {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .article-image img {
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .article-image img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 16px;
        }
        .rating-section {
            background-color: #F3E5F5;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 20px 0;
        }
        .star {
            font-size: 30px;
            color: #DDD;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .comment-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #DDD;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.1);
        }
        .internal-links {
            margin: 50px 0 30px;
        }
        .web-link {
            background-color: white;
            padding: 18px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid var(--accent);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(5px);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            font-size: 22px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #DDD;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #AAA;
            font-size: 15px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 36px; }
            h2 { font-size: 28px; }
            h3 { font-size: 24px; }
            .content-section {
                padding: 25px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 { font-size: 32px; }
            h2 { font-size: 26px; }
            h3 { font-size: 22px; }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .search-box button {
                border-radius: 50px;
                padding: 15px;
            }
            .content-section {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 { font-size: 28px; }
            h2 { font-size: 24px; }
            .logo {
                font-size: 24px;
            }
            .breadcrumb {
                font-size: 14px;
            }
        }
