        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-attachment: fixed;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--accent-color);
            transform: scale(1.05);
        }
        .my-logo i {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background: var(--secondary-color);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-color);
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            padding: 20px;
            box-shadow: var(--shadow);
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 999;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav a {
            display: block;
            padding: 15px;
            text-decoration: none;
            color: var(--dark-color);
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            background: var(--light-color);
            padding-left: 25px;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-container {
            max-width: 600px;
            margin: 30px auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid var(--secondary-color);
            border-radius: 25px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
        }
        .search-btn {
            padding: 12px 30px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-btn:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 15px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid var(--accent-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin: 25px 0 10px;
        }
        h4 {
            font-size: 1.2rem;
            color: #666;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(52, 152, 219, 0.2) 0%, rgba(155, 89, 182, 0.2) 100%);
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid var(--accent-color);
        }
        .tip {
            background: #e8f4fc;
            border-left: 4px solid #3498db;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .warning {
            background: #fdedec;
            border-left: 4px solid #e74c3c;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .content-section {
            margin: 40px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .game-link {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            margin: 5px;
            transition: var(--transition);
            font-weight: 500;
        }
        .game-link:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-section {
            margin-bottom: 30px;
        }
        .sidebar-section h3 {
            color: var(--accent-color);
            border-bottom: 2px solid var(--light-color);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
        }
        .related-links a {
            color: var(--dark-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--accent-color);
            padding-left: 10px;
        }
        .related-links i {
            color: var(--secondary-color);
        }
        .comments-section, .ratings-section {
            background: white;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 15px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-control {
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            padding: 15px 30px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-btn:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #f1c40f;
        }
        .comments-list {
            margin-top: 30px;
        }
        .comment {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 3px solid var(--secondary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #666;
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        friend-link a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 0.9rem;
        }
        .update-time {
            background: var(--accent-color);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            display: inline-block;
            margin: 20px 0;
            font-weight: 600;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-accent { color: var(--accent-color); }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .p-20 { padding: 20px; }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            article, aside, .comments-section, .ratings-section {
                padding: 20px;
            }
            .header-content {
                padding: 10px 0;
            }
            .main-wrapper {
                gap: 20px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
