        * {
            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.7;
            color: #333;
            background-color: #fefaf0;
            background-image: radial-gradient(#e6d6b8 1px, transparent 1px);
            background-size: 20px 20px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.3s ease, background-color 0.3s ease;
        }
        a:hover {
            color: #92400e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.8em;
            margin-bottom: 1.5em;
        }
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3a2b 0%, #2d5a3d 100%);
            color: #fff;
            padding: 1.2rem 0;
            border-bottom: 5px solid #d97706;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            border-radius: 0 0 12px 12px;
        }
        .header-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #fbbf24;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: #fde68a;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2.2rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            padding-left: 0;
            margin: 0;
        }
        .main-nav a {
            color: #fef3c7;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background-color: rgba(251, 191, 36, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fbbf24;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #f3f4f6;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
            border-left: 4px solid #b45309;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #6b7280;
        }
        .breadcrumb a {
            color: #4b5563;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #fff;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed #d97706;
        }
        h1 {
            color: #1e3a2b;
            font-size: 2.8rem;
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #6b7280;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: #b45309;
        }
        h2 {
            color: #2d5a3d;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e5e7eb;
        }
        h3 {
            color: #3f6212;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #854d0e;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            background-color: #fefce8;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #f59e0b;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #fbbf24;
            margin: 1.8rem 0;
        }
        .game-image {
            float: right;
            margin: 0 0 1.5rem 1.8rem;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 3px solid #d97706;
        }
        @media (max-width: 768px) {
            .game-image {
                float: none;
                margin: 1.5rem auto;
                max-width: 100%;
            }
        }
        .caption {
            font-size: 0.9rem;
            color: #6b7280;
            text-align: center;
            margin-top: 0.5rem;
            font-style: italic;
        }
        blockquote {
            font-style: italic;
            color: #4b5563;
            border-left: 4px solid #10b981;
            padding-left: 1.5rem;
            margin: 2rem 0;
            background-color: #f0fdfa;
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .strategy-card {
            background: linear-gradient(145deg, #ffffff, #f3f4f6);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #3f6212;
            transition: transform 0.3s ease;
        }
        .strategy-card:hover {
            transform: translateY(-5px);
        }
        .sidebar {
            background-color: #fff;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5e7eb;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar h3 {
            font-size: 1.4rem;
            color: #1e3a2b;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #fbbf24;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #d1d5db;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #b45309;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        .search-box button:hover {
            background-color: #92400e;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding: 0.8rem;
            background-color: #f9fafb;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }
        .related-links li:hover {
            background-color: #f3f4f6;
        }
        .related-links a {
            color: #4b5563;
            display: flex;
            align-items: center;
        }
        .related-links i {
            margin-right: 10px;
            color: #b45309;
        }
        .interaction-section {
            background-color: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            margin: 2.5rem 0;
            border: 1px solid #e5e7eb;
        }
        .rating-form, .comment-form {
            margin-top: 1.5rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 2rem;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d1d5db;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #fbbf24;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #4b5563;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b45309;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #b45309, #d97706);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #92400e, #b45309);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(180, 83, 9, 0.3);
        }
        .site-footer {
            background: linear-gradient(135deg, #1e3a2b 0%, #2d5a3d 100%);
            color: #fef3c7;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-radius: 12px 12px 0 0;
            border-top: 5px solid #d97706;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-family: 'Georgia', serif;
            font-size: 2rem;
            color: #fbbf24;
            margin-bottom: 1rem;
        }
        .footer-nav h4,
        .friend-links h4 {
            color: #fbbf24;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(251, 191, 36, 0.3);
        }
        .footer-nav ul,
        friend-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-nav li,
        friend-links a {
            margin-bottom: 0.8rem;
        }
        .footer-nav a,
        friend-links a {
            color: #fef3c7;
        }
        .footer-nav a:hover,
        friend-links a:hover {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(254, 243, 199, 0.2);
            font-size: 0.95rem;
            color: #d1d5db;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            article, .sidebar { padding: 1.5rem; }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 1.5rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1.5rem;
            }
        }
