:root {
            --royal-burgundy: #8b0000;
            --deep-gold: #c5a059;
            --parchment: #f4f1ea;
            --white: #ffffff;
        }

        body {
            background-color: var(--parchment) !important;
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: #333;
        }

        .kings-wrapper {
            max-width: 900px;
            margin: 60px auto;
            padding: 40px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid var(--deep-gold);
            box-sizing: border-box;
        }

        .title {
            color: var(--royal-burgundy);
            text-align: center;
            font-size: 2.2rem;
            margin-top: 0;
            margin-bottom: 30px;
            border-bottom: 2px solid var(--deep-gold);
            padding-bottom: 15px;
        }

        .kings-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 10px 0 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .stext {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
            color: #444;
        }

        .stext p {
            margin-bottom: 20px;
        }

        .stext h2 {
            color: var(--royal-burgundy);
            font-size: 1.6rem;
            margin-top: 35px;
            margin-bottom: 15px;
            text-align: center;
        }

        .stext h3 {
            color: var(--royal-burgundy);
            border-left: 4px solid var(--deep-gold);
            padding-left: 15px;
            margin-top: 30px;
            font-size: 1.3rem;
        }

        @media (max-width: 768px) {
            .kings-wrapper { margin: 20px; padding: 20px; }
            .title { font-size: 1.6rem; }
        }
