:root {
            --primary: #6a5acd;
            --secondary: #ff7b00;
            --accent: #00c8a0;
            --light: #f8f9ff;
            --dark: #2d2a5e;
            --text: #333344;
            --text-light: #666677;
            --shadow: rgba(106, 90, 205, 0.15);
            --border: #e0e0ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 8px 25px var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffd166, var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .my-logo a {
            color: inherit;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .nav-main {
            display: flex;
            list-style: none;
        }
        .nav-main li {
            margin-left: 1.8rem;
        }
        .nav-main a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
        }
        .nav-main a:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem;
            background-color: white;
            border-radius: 10px;
            margin: 1rem 0;
            box-shadow: 0 3px 10px var(--shadow);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .search-box {
            margin: 2rem 0;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px var(--shadow);
            text-align: center;
        }
        .search-box h3 {
            margin-bottom: 1rem;
            color: var(--dark);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
        }
        article h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .meta-info {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed var(--border);
        }
        article h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        article h3 {
            color: var(--dark);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        article h4 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin: 1.8rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--dark);
            font-weight: 800;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0f4ff, #e6f7ff);
            border-left: 5px solid var(--accent);
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 15px 15px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 3px solid white;
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .link-list {
            background: #f8f9ff;
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        .link-list h4 {
            color: var(--primary);
        }
        .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;
        }
        aside {
            background: white;
            padding: 1.8rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px var(--shadow);
            align-self: start;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffcc00;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 0.2rem;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .rating-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            margin-top: 1rem;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: var(--secondary);
        }
        footer {
            background: linear-gradient(135deg, var(--dark), #3a3770);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-radius: 15px 15px 0 0;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 2rem 0;
        }
        friend-link a {
            color: var(--accent);
            font-weight: bold;
            margin: 0 1rem;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            font-size: 0.9rem;
            color: #aaaacc;
        }
        @media (max-width: 768px) {
            .nav-main {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--dark);
                padding: 1rem;
                border-radius: 0 0 15px 15px;
                z-index: 1000;
            }
            .nav-main.active {
                display: flex;
            }
            .nav-main li {
                margin: 0.5rem 0;
                margin-left: 0;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                justify-content: center;
                flex-direction: column;
                text-align: center;
            }
            .my-logo {
                margin-bottom: 1rem;
            }
            .content-wrapper {
                gap: 1.5rem;
            }
            article {
                padding: 1.8rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            .link-list ul {
                columns: 1;
            }
        }
