        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f7fc;
            background-image: radial-gradient(#e1d5f1 1.5px, transparent 1.5px), radial-gradient(#d0c1e8 1.5px, transparent 1.5px);
            background-size: 60px 60px;
            background-position: 0 0, 30px 30px;
        }
        a {
            color: #6a4cff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #4a2bd4;
            text-decoration: underline;
        }
        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, #6a4cff 0%, #8a6dff 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(106, 76, 255, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #FFD166;
            text-shadow: 3px 3px 0 #EF476F, 6px 6px 0 rgba(0,0,0,0.1);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.05);
            display: inline-block;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 20px;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0ebfa;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb span {
            color: #6a4cff;
            font-weight: bold;
        }
        .search-bar {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #6a4cff;
        }
        .search-form button {
            background: linear-gradient(to right, #6a4cff, #8a6dff);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        h1 {
            color: #3a2c7a;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #FFD166;
            padding-bottom: 1rem;
        }
        h2 {
            color: #4a3a9a;
            font-size: 2.3rem;
            margin: 3rem 0 1.5rem;
            padding-left: 15px;
            border-left: 6px solid #6a4cff;
        }
        h3 {
            color: #5a4aaa;
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            color: #6a5aba;
            font-size: 1.4rem;
            margin: 2rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            background: #f8f5ff;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #8a6dff;
        }
        .highlight {
            background: linear-gradient(120deg, #FFD16680 0%, #FFD16680 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .feature-img {
            width: 100%;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .card {
            background: #f8f5ff;
            padding: 1.8rem;
            border-radius: 15px;
            border-top: 6px solid #6a4cff;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(106, 76, 255, 0.15);
        }
        blockquote {
            border-left: 5px solid #EF476F;
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background: #fff5f7;
            padding: 1.5rem 2rem;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            background: #f0f7ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .link-list ul {
            list-style: none;
            columns: 2;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li:before {
            content: '🎮';
            position: absolute;
            left: 0;
        }
        .interaction {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-top: 3rem;
        }
        .rating-form, .comment-form {
            margin-bottom: 2.5rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #FFD166;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #6a4cff;
            outline: none;
        }
        .btn-submit {
            background: linear-gradient(to right, #EF476F, #FF6B8B);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(239, 71, 111, 0.3);
        }
        footer {
            background: linear-gradient(135deg, #3a2c7a 0%, #2a1c5a 100%);
            color: #ddd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #FFD166;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 12px 20px;
            margin-bottom: 10px;
            border-radius: 8px;
            border-left: 4px solid #6a4cff;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .update-time {
            background: #fff8e1;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin: 2rem 0;
            font-weight: bold;
            color: #d4a017;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.7rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; gap: 1rem; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background: #5a3ce6;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 15px 15px;
            }
            .nav-links.active { display: flex; }
            .hamburger { display: block; }
            .link-list ul { columns: 1; }
            .content-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; }
        }
