        * {
            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 {
            color: #4a6ee0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #2a4ec4;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        .site-header {
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #ecf0f1;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #00dbde;
            border-bottom-color: #00dbde;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: #2c3e50;
            margin-top: 15px;
            border-radius: 8px;
            overflow: hidden;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #ecf0f1;
            padding: 15px 20px;
            border-bottom: 1px solid #34495e;
        }
        .nav-mobile a:hover {
            background-color: #34495e;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #7f8c8d;
            background-color: #f1f2f6;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #4a6ee0;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            color: #95a5a6;
            font-size: 0.95rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ddd;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: #3498db;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        h3 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #555;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        strong {
            color: #e74c3c;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
            border-left: 5px solid #e74c3c;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .article-img {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #3498db;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .link-list li:before {
            content: '🎮';
            position: absolute;
            left: 0;
        }
        .search-widget input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 15px;
            transition: border 0.3s;
        }
        .search-widget input:focus, .comment-form input:focus, .comment-form textarea:focus, .rating-form select:focus {
            border-color: #4a6ee0;
            outline: none;
        }
        .btn {
            background: linear-gradient(to right, #4a6ee0, #2a4ec4);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, #2a4ec4, #1a3cb0);
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(42, 78, 196, 0.2);
        }
        .rating-stars {
            color: #f39c12;
            font-size: 1.2rem;
            margin: 10px 0;
        }
        .comments-container {
            margin-top: 40px;
            border-top: 2px solid #eee;
            padding-top: 30px;
        }
        .comment {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #3498db;
        }
        .comment-author {
            font-weight: bold;
            color: #2c3e50;
        }
        .comment-date {
            color: #95a5a6;
            font-size: 0.85rem;
        }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 6px;
            margin: 5px 10px 5px 0;
            color: #00dbde;
            border: 1px solid rgba(0,219,222,0.3);
        }
        friend-link:hover {
            background: rgba(0,219,222,0.2);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-4 {
            margin-bottom: 2rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .last-updated {
            background-color: #fff3cd;
            padding: 12px;
            border-radius: 8px;
            margin: 20px 0;
            color: #856404;
            border: 1px solid #ffeaa7;
        }
