        @font-face {
            font-family: 'sniglet';
            src: url('https://files.catbox.moe/dxwlau.ttf') format('truetype'),
                 url('../assets/fuentes/Sniglet-Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        body {
            background-color: #BCF1D9;
            color: #1a4d46;
            font-family: 'sniglet', 'Sniglet', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column; 
            align-items: center;
        }

        .navbar {
            width: 100%;
            background-color: #22776B;
            font-family: 'sniglet', sans-serif;
            position: relative; 
            z-index: 2000; 
        }

        .navbar::after {
            content: "";
            display: table;
            clear: both;
        }

        .navbar a {
            float: left;
            font-size: 16px;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-family: inherit;
        }

        .subnav {
            float: left;
            position: relative; 
        }

        .subnav .subnavbtn {
            font-size: 16px;  
            border: none;
            outline: none;
            color: white;
            padding: 14px 16px;
            background-color: transparent;
            font-family: inherit;
            margin: 0;
            cursor: pointer;
        }

        .navbar a:hover, .subnav:hover .subnavbtn {
            background-color: #1a5c53;
        }

        .subnav-content {
            display: none; 
            position: absolute; 
            background-color: #22776B;
            min-width: 200px; 
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 3000; 
            left: 0;
            top: 100%; 
        }

        .subnav-content a {
            float: none;
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block; 
            text-align: left;
            width: 100%; 
            box-sizing: border-box;
            font-family: inherit;
        }

        .subnav:hover .subnav-content {
            display: block;
        }

        .wiki-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 40px 20px;
            box-sizing: border-box;
        }

        .container {
            max-width: 1100px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 30px;
        }

        .main-content {
            background: rgba(255, 255, 255, 0.4);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        h1 {
            font-size: 2.5em;
            border-bottom: 3px solid #22776B;
            margin-top: 0;
            padding-bottom: 10px;
        }

        .quote-container {
            background: #419986;
            color: #ffffff;
            padding: 20px;
            border-left: 6px solid #1a4d46;
            margin: 20px 0;
            border-radius: 4px;
        }

        .quote-text {
            font-size: 1.2em;
            display: block;
            margin-bottom: 10px;
        }

        .quote-author {
            color: #1a4d46;
            font-weight: bold;
        }

        h2 {
            border-bottom: 2px solid rgba(34, 119, 107, 0.3);
            padding-bottom: 5px;
            margin-top: 30px;
        }
        
        .infobox-row ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .infobox-row li {
            margin-bottom: 4px;
            line-height: 1.2em;
        }

        .infobox-row li:last-child {
            margin-bottom: 0;
        }

        .infobox-row li::before {
            content: "•";
            color: #1a4d46;
            font-weight: bold;
            display: inline-block; 
            width: 1em;
            margin-left: 0;
        }

        .infobox {
            background: #376F5C;
            border: 3px solid #376F5C;
            border-radius: 8px;
            color: white;
            height: fit-content;
            overflow: hidden;
        }

        .infobox-title {
            background: #458B74;
            padding: 15px;
            text-align: center;
            font-size: 1.4em;
            font-weight: bold;
        }

        .infobox-image-box {
            background: #0d2b33;
            padding: 0;
            text-align: center;
            line-height: 0;
        }

        .infobox-image-box img {
            width: 100%; 
            height: auto;
            border: none; 
        }

        .infobox-header {
            background: #376F5C;
            padding: 8px;
            font-size: 0.9em;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .infobox-row {
            display: grid;
            grid-template-columns: 110px 1fr;
            background: #6AA28F;
            border-top: 1px solid #458B74;
            padding: 8px 12px;
            font-size: 0.9em;
            align-items: center;
        }

        .label {
            font-weight: bold;
            color: #1a4d46;
        }

        @media (max-width: 850px) {
            .container { grid-template-columns: 1fr; }
            .infobox { order: -1; }
        }
        
        .gallery {
          display: flex; 
          flex-wrap: wrap;
          gap: 10px;
        }
        .gallery img {
          width: auto;
          max-height: 240px;
        }
        figure {
        margin: 0;
        }