        * {
            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.6;
            color: #333;
            background-color: #f5f5f5;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e74c3c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            list-style-position: inside;
            padding-left: 1.2em;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        header {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #ffcc00;
        }
        .my-logo span {
            background: linear-gradient(to right, #ffcc00, #ff5e00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background: rgba(255,255,255,0.2);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a2980;
            padding: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #ecf0f1;
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding-left: 0;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #7f8c8d;
        }
        main {
            background: white;
            padding: 40px 0;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            min-height: 80vh;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            grid-column: 1;
        }
        aside {
            grid-column: 2;
        }
        article h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid #e74c3c;
            padding-left: 20px;
        }
        article h2 {
            font-size: 2rem;
            color: #34495e;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3498db;
        }
        article h3 {
            font-size: 1.6rem;
            color: #16a085;
            margin: 30px 0 15px;
        }
        article h4 {
            font-size: 1.3rem;
            color: #8e44ad;
            margin: 25px 0 12px;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #e74c3c;
            font-weight: 700;
        }
        article em {
            color: #27ae60;
            font-style: italic;
        }
        article blockquote {
            border-left: 5px solid #f39c12;
            background: #f9f9f9;
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
        }
        article ul, article ol {
            margin-bottom: 20px;
            padding-left: 2em;
        }
        article li {
            margin-bottom: 10px;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }
        .update-time {
            color: #7f8c8d;
            font-size: 0.95rem;
        }
        .update-time i {
            color: #e74c3c;
            margin-right: 8px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            position: relative;
        }
        .featured-image img {
            width: 100%;
            height: auto;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background: #f8f9fa;
            font-size: 0.95rem;
        }
        .content-navigation {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .content-navigation h3 {
            margin-top: 0;
            color: #1565c0;
        }
        .content-navigation ul {
            columns: 2;
            list-style: none;
            padding-left: 0;
        }
        .content-navigation li {
            margin-bottom: 8px;
        }
        .content-navigation a::before {
            content: '📌';
            margin-right: 8px;
        }
        .game-tip {
            background: linear-gradient(to right, #ffeaa7, #fd79a8);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            color: #2d3436;
            border-left: 8px solid #e17055;
        }
        .game-tip h4 {
            color: #d63031;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .inline-link {
            background: #dfe6e9;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .inline-link:hover {
            background: #b2bec3;
        }
        aside section {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        aside h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            font-size: 1.4rem;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #3498db;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-box button {
            background: #3498db;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2980b9;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #f1c40f;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form input, .comment-form input,
        .comment-form textarea, .rating-form button,
        .comment-form button {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
        }
        .rating-form button, .comment-form button {
            background: #2ecc71;
            color: white;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #27ae60;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #bdc3c7;
        }
        .related-links a {
            display: block;
            padding: 8px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: #3498db;
            color: white;
            padding-left: 15px;
        }
        .ad-space {
            background: #34495e;
            color: white;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-style: italic;
        }
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            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 h4 {
            color: #3498db;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bdc3c7;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #3498db;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid #e74c3c;
        }
        friend-link a {
            color: #3498db;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                grid-column: 1;
            }
            article h1 {
                font-size: 2.4rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .content-navigation ul {
                columns: 1;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            article h3 {
                font-size: 1.4rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
