 /* CSS cho hiệu ứng đổ bóng chữ */
        .text-shadow {
            font-size: 32px;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 3px 3px 5px #888888;
        }

        /* Văn bản bình thường */
        .normal-text {
            font-size: 16px;
            margin-bottom: 20px;
        }

        /* Hoa Các Ký Tự Đầu Từ */
        .capitalize-text {
            text-transform: capitalize;
            text-align: center;
            margin-bottom: 20px;
        }

        /* HOA TẤT CẢ CÁC KÝ TỰ */
        .uppercase-text {
            text-transform: uppercase;
            text-align: right;
            margin-bottom: 20px;
        }

        /* Đoạn này sẽ được chuyển về chữ thường */
        .lowercase-text {
            text-transform: lowercase;
            margin-bottom: 30px;
        }

        /* Định dạng ký tự đầu tiên lớn (Drop Cap) và dòng đầu in đậm */
        .drop-cap::first-letter {
            font-size: 50px;
            font-weight: bold;
            float: left;
            line-height: 40px;
            padding-right: 4px;
            margin-top: 4px;
        }
        
        .drop-cap::first-line {
            font-weight: bold;
        }