        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: #121212;
            background-image: radial-gradient(circle at 15% 50%, rgba(40, 10, 10, 0.9) 0%, rgba(10, 10, 20, 1) 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #c8a165; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #f0d49e; transform: translateY(-1px); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header { background: rgba(20, 20, 25, 0.95); border-bottom: 2px solid #3a2610; padding: 1rem 0; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-family: 'Times New Roman', serif; font-size: 2.2rem; font-weight: bold; background: linear-gradient(to right, #c8a165, #8b6914); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 2px 4px rgba(0,0,0,0.5); letter-spacing: 1px; }
        .my-logo:hover { transform: scale(1.03); }
        .main-nav { display: flex; gap: 1.5rem; }
        .main-nav a { font-weight: 600; padding: 0.5rem; position: relative; }
        .main-nav a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: #c8a165; transition: all 0.3s ease; }
        .main-nav a:hover::after { width: 100%; left: 0; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #c8a165; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #aaa; background: rgba(30, 30, 35, 0.7); margin-bottom: 2rem; }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #c8a165; }
        .hero { text-align: center; padding: 3rem 1rem; margin-bottom: 2rem; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat; border-radius: 10px; border: 1px solid #444; }
        h1 { font-size: 3.2rem; margin-bottom: 1rem; color: #f0d49e; text-shadow: 2px 2px 8px #000; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; color: #ccc; }
        main { flex: 1; padding: 2rem 0; }
        article { background: rgba(30, 30, 35, 0.8); padding: 2.5rem; border-radius: 10px; border: 1px solid #444; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); margin-bottom: 3rem; }
        h2, h3, h4 { color: #d4b483; margin-top: 2rem; margin-bottom: 1rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid #c8a165; padding-left: 15px; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: #b0a18e; }
        p, ul, ol { margin-bottom: 1.5rem; font-size: 1.1rem; color: #ccc; }
        ul, ol { padding-left: 2rem; }
        li { margin-bottom: 0.5rem; }
        strong { color: #f0d49e; font-weight: 700; }
        .highlight-box { background: rgba(58, 38, 16, 0.3); border-left: 4px solid #c8a165; padding: 1.5rem; margin: 2rem 0; border-radius: 0 8px 8px 0; }
        .game-img { float: right; margin: 0 0 1.5rem 1.5rem; max-width: 45%; border: 3px solid #3a2610; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.7); }
        .clear { clear: both; }
        .update-time { text-align: right; font-style: italic; color: #888; font-size: 0.9rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #555; }
        .interactive-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
        .feature-box { background: rgba(40, 35, 30, 0.9); padding: 2rem; border-radius: 10px; text-align: center; border: 1px solid #555; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .feature-box:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(200, 161, 101, 0.2); }
        .feature-box h3 { color: #f0d49e; }
        .feature-box form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
        .feature-box input, .feature-box textarea, .feature-box select { padding: 0.8rem; border-radius: 5px; border: 1px solid #666; background: #222; color: #eee; font-size: 1rem; }
        .feature-box button { background: linear-gradient(to bottom, #c8a165, #8b6914); color: #121212; border: none; padding: 1rem; border-radius: 5px; font-weight: bold; cursor: pointer; transition: background 0.3s ease; }
        .feature-box button:hover { background: linear-gradient(to bottom, #e0c28a, #a47c1a); }
        .site-footer { background: #0a0a0a; color: #aaa; padding: 3rem 0 1.5rem; margin-top: 3rem; border-top: 2px solid #3a2610; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        .footer-section h4 { color: #d4b483; margin-bottom: 1rem; }
        friend-link { display: block; padding: 0.5rem 0; border-bottom: 1px dotted #333; }
        friend-link:last-child { border-bottom: none; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #333; font-size: 0.9rem; color: #777; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(20, 20, 25, 0.98); padding: 1rem; border-top: 1px solid #3a2610; }
            .main-nav.active { display: flex; }
            .header-container { flex-wrap: wrap; }
            h1 { font-size: 2.5rem; }
            .game-img { float: none; margin: 1rem auto; max-width: 100%; }
            .hero { padding: 2rem 1rem; }
            article { padding: 1.5rem; }
            .interactive-section { grid-template-columns: 1fr; }
        }
