body {
            background-color: #f4f1ea !important;
            margin: 0; padding: 0;
            font-family: 'Georgia', serif;
            line-height: 1.8;
            color: #333;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://www.transparenttextures.com/patterns/old-paper.png');
            opacity: 0.2;
            pointer-events: none;
            z-index: 1;
        }

        .fulltext {
            position: relative;
            z-index: 2;
            max-width: 950px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.98);
            padding: 55px;
            border-radius: 15px;
            border-top: 10px solid #8b0000;
            box-shadow: 0 15px 45px rgba(0,0,0,0.1);
        }

        .fulltext h1 {
            color: #8b0000;
            text-align: center;
            font-size: 3.2em;
            margin-bottom: 10px;
            border-bottom: 2px solid #d4a76a;
            padding-bottom: 15px;
        }

        .era-subtitle {
            text-align: center;
            display: block;
            font-style: italic;
            color: #5a0000;
            margin-bottom: 45px;
            font-size: 1.3em;
        }

        .fulltext img {
            width: 100% !important;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 45px;
            display: block;
            border: 6px solid #f4f1ea;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .content-area {
            text-align: justify;
            font-size: 20px;
            color: #2c2c2c;
        }

        h2 {
            color: #8b0000;
            font-size: 1.9em;
            margin-top: 55px;
            border-left: 6px solid #d4a76a;
            padding: 15px 20px;
            background: #fdfaf3;
        }

        .historical-note {
            background: #fdf2f2;
            border-right: 6px solid #8b0000;
            padding: 35px;
            margin: 45px 0;
            font-style: italic;
            font-size: 1.1em;
            color: #4a0000;
            border-radius: 10px 0 0 10px;
            text-align: center;
        }

        .internal-link {
            color: #8b0000;
            font-weight: bold;
            text-decoration: underline;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .stat-item {
            background: #fdfbf7;
            padding: 30px;
            border-top: 5px solid #8b0000;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }

        @media (max-width: 768px) {
            .fulltext { padding: 25px; margin: 10px; }
            .fulltext h1 { font-size: 1.8em; }
            .era-subtitle { font-size: 1em; margin-bottom: 25px; }
            .content-area { font-size: 17px; }
            h2 { font-size: 1.4em; }
        }
