        * {
            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.8;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,30 50,50 T100,50" stroke="rgba(255,215,0,0.03)" fill="none" stroke-width="0.5"/><path d="M0,30 Q25,10 50,30 T100,30" stroke="rgba(255,215,0,0.03)" fill="none" stroke-width="0.5"/></svg>');
            z-index: -1;
            opacity: 0.4;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Georgia', 'Times New Roman', serif;
            color: #f0c674;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            background: linear-gradient(90deg, #f0c674, #d4a017, #f0c674);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(212, 160, 23, 0.3);
            margin-top: 1rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid rgba(212, 160, 23, 0.5);
        }
        h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: #e2b659;
            padding-top: 2rem;
            border-top: 2px solid rgba(212, 160, 23, 0.3);
            margin-top: 3rem;
        }
        h3 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: #d4a017;
            margin-top: 2.5rem;
        }
        h4 {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: #b8941f;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
            font-size: clamp(1rem, 2vw, 1.1rem);
        }
        a {
            color: #f0c674;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px dotted rgba(240, 198, 116, 0.3);
            padding-bottom: 2px;
        }
        a:hover {
            color: #ffd700;
            border-bottom: 1px solid #ffd700;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid rgba(212, 160, 23, 0.7);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #f0c674, #d4a017);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            border: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            text-shadow: 0 0 15px rgba(212, 160, 23, 0.7);
            border: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #d4a017;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border: none;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4a017;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f0c674;
            cursor: pointer;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }
        .hamburger:hover {
            transform: rotate(90deg);
            color: #ffd700;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(26, 26, 46, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            border-top: 1px solid rgba(212, 160, 23, 0.5);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto 0;
            padding: 0 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #d4a017;
            border: none;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
            color: #666;
        }
        .search-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(212, 160, 23, 0.5);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: none;
            color: #fff;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.08);
        }
        .search-btn {
            background: linear-gradient(90deg, #d4a017, #b8941f);
            color: #000;
            border: none;
            padding: 0 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #ffd700, #d4a017);
            padding: 0 2.5rem;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .main-content {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(212, 160, 23, 0.2);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(212, 160, 23, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(212, 160, 23, 0.3);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            margin: 1rem 0;
        }
        .rating-stars .star {
            color: #444;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover,
        .rating-stars .star:hover ~ .star {
            color: #ffd700;
        }
        .rating-stars .star:hover {
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #d4a017;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 160, 23, 0.3);
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d4a017;
            box-shadow: 0 0 10px rgba(212, 160, 23, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }
        .submit-btn {
            background: linear-gradient(90deg, #d4a017, #b8941f);
            color: #000;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ffd700, #d4a017);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(20, 20, 35, 0.6);
            border-radius: 10px;
            border-left: 5px solid #d4a017;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .author, .publish-date, .update-date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #aaa;
        }
        .author i, .publish-date i, .update-date i {
            color: #d4a017;
        }
        .game-score {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid #d4a017;
            text-align: center;
            margin: 2rem auto;
            max-width: 500px;
            box-shadow: 0 0 20px rgba(212, 160, 23, 0.2);
        }
        .score-number {
            font-size: 4rem;
            font-weight: bold;
            background: linear-gradient(90deg, #f0c674, #ffd700, #f0c674);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .score-label {
            font-size: 1.2rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2.5rem 0;
            border: 2px solid rgba(212, 160, 23, 0.5);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #888;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            padding: 0 1rem;
        }
        .highlight-box {
            background: rgba(212, 160, 23, 0.08);
            border-left: 5px solid #d4a017;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
            font-style: italic;
            color: #f0c674;
        }
        .content-list {
            margin: 2rem 0;
            padding-left: 1.5rem;
        }
        .content-list li {
            margin-bottom: 1rem;
            position: relative;
        }
        .content-list li::marker {
            color: #d4a017;
        }
        .key-term {
            font-weight: bold;
            color: #f0c674;
            background: rgba(212, 160, 23, 0.1);
            padding: 2px 6px;
            border-radius: 3px;
            border-bottom: 1px dotted #d4a017;
        }
        .quote {
            font-family: 'Georgia', serif;
            font-size: 1.3rem;
            line-height: 1.6;
            color: #e2b659;
            text-align: center;
            margin: 3rem 0;
            padding: 2rem;
            border-top: 2px solid rgba(212, 160, 23, 0.5);
            border-bottom: 2px solid rgba(212, 160, 23, 0.5);
            background: rgba(20, 20, 35, 0.4);
            border-radius: 10px;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 3rem;
            color: rgba(212, 160, 23, 0.5);
            line-height: 0;
            vertical-align: middle;
            margin: 0 10px;
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(212, 160, 23, 0.3);
        }
        .comment {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 3px solid rgba(212, 160, 23, 0.5);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .comment:hover {
            transform: translateX(5px);
            background: rgba(255, 255, 255, 0.05);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: bold;
            color: #d4a017;
        }
        .comment-date {
            color: #888;
            font-size: 0.9rem;
        }
        .comment-rating {
            color: #ffd700;
            font-size: 0.9rem;
        }
        .site-footer {
            background: rgba(10, 10, 10, 0.98);
            border-top: 2px solid rgba(212, 160, 23, 0.7);
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-top: 0;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(212, 160, 23, 0.3);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
        }
        .footer-links a:hover {
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(212, 160, 23, 0.05);
            border-radius: 8px;
            border: 1px dashed rgba(212, 160, 23, 0.3);
            text-align: center;
        }
        friend-link a {
            display: inline-block;
            margin: 0 1rem;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
        }
        .copyright a {
            color: #d4a017;
            border: none;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .main-content, .widget {
                padding: 1.5rem;
            }
            .container {
                padding: 0 1rem 2rem;
            }
            .search-container {
                padding: 0 1rem;
            }
            .breadcrumb {
                padding: 0 1rem;
            }
            .site-header {
                padding: 1rem;
            }
            .my-logo {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .game-score {
                padding: 1rem;
            }
            .score-number {
                font-size: 3rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .widget, .site-footer {
            animation: fadeIn 0.8s ease-out;
        }
        .text-center {
            text-align: center;
        }
        .text-bold {
            font-weight: bold;
        }
        .text-italic {
            font-style: italic;
        }
        .spacer {
            height: 2rem;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5), transparent);
            margin: 2.5rem 0;
        }
