        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding-top: 80px; 
        }
        a {
            color: #2a9d8f;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e76f51;
        }
        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, #264653 0%, #2a9d8f 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: #e9c46a;
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #e9c46a;
            margin-top: 0.5rem;
        }
        .breadcrumb a {
            color: #e9c46a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e9c46a;
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: #264653;
                width: 80%;
                height: calc(100vh - 80px);
                padding: 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                right: 0;
            }
            .hamburger {
                display: block;
            }
            .breadcrumb {
                display: none;
            }
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .article-header {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 2px dashed #2a9d8f;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #264653;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .last-updated {
            background: #e9f5f4;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            color: #2a9d8f;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #2a9d8f;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e9c46a;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #e76f51;
            margin: 2rem 0 1rem;
        }
        .article-body h4 {
            font-size: 1.3rem;
            color: #264653;
            margin: 1.5rem 0 0.8rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.8;
        }
        .article-body strong {
            color: #264653;
            font-weight: 700;
        }
        .article-body em {
            color: #e76f51;
            font-style: italic;
        }
        .highlight-box {
            background: #f1faee;
            border-left: 5px solid #2a9d8f;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .game-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            background: #f8f9fa;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: #e9f5f4;
            border-radius: 10px;
        }
        .link-list a {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            border: 1px solid #2a9d8f;
            font-weight: 500;
        }
        .link-list a:hover {
            background: #2a9d8f;
            color: white;
        }
        .sidebar {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #e9ecef;
        }
        .sidebar h3 {
            color: #264653;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9c46a;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            background: #2a9d8f;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: background 0.3s;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            background: #264653;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.5rem;
            color: #e9c46a;
        }
        footer {
            background: #264653;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            color: #e9c46a;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links a {
            color: #b8e0d4;
            display: block;
            padding: 0.3rem 0;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
            transition: all 0.3s;
        }
        friend-link {
            display: inline-block;
            background: #2a9d8f;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin: 0.5rem;
            font-weight: 500;
        }
        friend-link:hover {
            background: #e76f51;
            cursor: pointer;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #457b9d;
            color: #b8e0d4;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .py-1 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
