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: 900px;
            margin: 40px auto;
            background: rgba(255, 255, 255, 0.98);
            padding: 50px;
            border-radius: 15px;
            border-top: 8px solid #660000; 
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .fulltext h1 {
            color: #660000;
            text-align: center;
            font-size: 2.8em;
            margin-bottom: 10px;
            border-bottom: 2px solid #c5a059;
            padding-bottom: 15px;
        }

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

        .fulltext img {
            width: 100% !important;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 40px;
            display: block;
            border: 5px solid #d4a76a;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .content-area {
            text-align: justify;
            font-size: 19px;
            white-space: pre-line;
        }

        h2 {
            color: #660000;
            font-size: 1.7em;
            margin-top: 50px;
            border-left: 5px solid #c5a059;
            padding: 10px 20px;
            background: #fdfaf3;
        }

        .historical-note {
            background: #fdf2f2;
            border-left: 6px solid #660000;
            padding: 30px;
            margin: 40px 0;
            font-style: italic;
            font-size: 1.1em;
            color: #4a0000;
            border-radius: 0 10px 10px 0;
        }

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

        .stat-item {
            background: #fdfbf7;
            padding: 25px;
            border-top: 4px solid #660000;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .stat-item strong {
            color: #660000;
            display: block;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        /* მობილური ვერსიის გასწორება */
        @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; }
        }
