:root {
            --earth-brown: #8B4513;
            --sky-blue: #87CEEB;
            --lava-red: #E25822;
            --jungle-green: #228B22;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f5f5f5;
            background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23f0f0f0"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23e0e0e0" stroke-width="1"/></svg>');
        }
        .wiki-container {
            max-width: 1300px;
            margin: 20px auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        /* Wikipedia-style Infobox */
        .infobox {
            background: #f8f9fa;
            border: 1px solid #a2a9b1;
            border-collapse: collapse;
            margin: 0 0 1em 1.5em;
            padding: 0.3em;
            float: right;
            clear: right;
            font-size: 90%;
            line-height: 1.5;
            width: 320px;
        }
        .infobox th, .infobox td {
            vertical-align: top;
            padding: 0.4em 0.6em;
            border-bottom: 1px solid #e2e8f0;
        }
        .infobox caption {
            font-weight: bold;
            font-size: 1.3em;
            padding: 0.6em;
            background: linear-gradient(90deg, var(--earth-brown), var(--lava-red));
            color: white;
            text-align: center;
        }
        /* Mobile Optimization */
        @media (max-width: 768px) {
            .infobox {
                float: none;
                width: 100%;
                margin: 1.5em 0;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.3rem; }
        }
        /* Accessibility */
        button, .btn, .nav-link, [type="submit"] {
            min-height: 44px;
            min-width: 44px;
        }
        /* Image Optimization */
        img, .placeholder-img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 6px;
        }
        .img-container {
            aspect-ratio: 16/9;
            background: #edf2f7;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #718096;
            font-size: 0.9rem;
        }
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }
        /* Terraria Theme */
        .earth-bg { background: linear-gradient(135deg, #f7e7ce 0%, #e6ccb2 100%); }
        .sky-bg { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); }
        .lava-bg { background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%); }
        .strategy-tip {
            border-left: 5px solid var(--lava-red);
            box-shadow: 0 4px 12px rgba(226, 88, 34, 0.15);
        }

