Eye strain and screen exposure make article on this topic with name sabiya 6th sem bsc optometry

Checking Date & Time
Reading File
Finding Sources
Finding Sources
Searching PubMed

digital eye strain computer vision syndrome

Finding Sources
Reading Article

PMID: 35597519

Reading Article

PMID: 37062428

Reading Article

PMID: 39308959

Finding Sources
Finding Sources
Reading Article

PMID: 36875935

Finding Sources
Finding Sources
Reading File
Running Command

mkdir -p /home/daytona/workspace/sabiya-article && ls /home/daytona/workspace/sabiya-article/

Writing File

~/sabiya-article/create_article.js

const {
  Document, Packer, Paragraph, TextRun, Table, TableRow, TableCell,
  AlignmentType, HeadingLevel, BorderStyle, WidthType, VerticalAlign,
  ShadingType, PageNumber, Footer, Header
} = require('docx');
const fs = require('fs');

const doc = new Document({
  styles: {
    paragraphStyles: [
      {
        id: "Normal",
        name: "Normal",
        run: { font: "Times New Roman", size: 24 }
      }
    ]
  },
  sections: [
    {
      properties: {
        page: {
          margin: { top: 1440, bottom: 1440, left: 1440, right: 1440 }
        }
      },
      footers: {
        default: new Footer({
          children: [
            new Paragraph({
              alignment: AlignmentType.CENTER,
              children: [
                new TextRun({ text: "Page ", font: "Times New Roman", size: 20 }),
                new TextRun({ children: [PageNumber.CURRENT], font: "Times New Roman", size: 20 }),
                new TextRun({ text: " of ", font: "Times New Roman", size: 20 }),
                new TextRun({ children: [PageNumber.TOTAL_PAGES], font: "Times New Roman", size: 20 })
              ]
            })
          ]
        })
      },
      children: [

        // ─── HEADER BLOCK ────────────────────────────────────────────────────────
        new Paragraph({
          alignment: AlignmentType.CENTER,
          spacing: { after: 40 },
          children: [
            new TextRun({
              text: "ARTICLE",
              bold: true,
              font: "Times New Roman",
              size: 28,
              color: "1F4E79"
            })
          ]
        }),

        new Paragraph({
          alignment: AlignmentType.CENTER,
          spacing: { after: 80 },
          border: { bottom: { style: BorderStyle.SINGLE, size: 6, color: "1F4E79" } },
          children: [
            new TextRun({
              text: "Department of Optometry  |  6th Semester, B.Sc. Optometry",
              font: "Times New Roman",
              size: 20,
              color: "555555"
            })
          ]
        }),

        // ─── TITLE ────────────────────────────────────────────────────────────────
        new Paragraph({
          alignment: AlignmentType.CENTER,
          spacing: { before: 200, after: 120 },
          children: [
            new TextRun({
              text: "Eye Strain and Screen Exposure:",
              bold: true,
              font: "Times New Roman",
              size: 40,
              color: "1F4E79"
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.CENTER,
          spacing: { after: 200 },
          children: [
            new TextRun({
              text: "Pathophysiology, Clinical Manifestations, and Evidence-Based Management",
              bold: true,
              font: "Times New Roman",
              size: 32,
              color: "2E75B6"
            })
          ]
        }),

        // ─── AUTHOR DETAILS ───────────────────────────────────────────────────────
        new Paragraph({
          alignment: AlignmentType.CENTER,
          spacing: { after: 60 },
          children: [
            new TextRun({
              text: "Sabiya",
              bold: true,
              font: "Times New Roman",
              size: 28
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.CENTER,
          spacing: { after: 60 },
          children: [
            new TextRun({
              text: "6th Semester, B.Sc. Optometry",
              font: "Times New Roman",
              size: 24,
              italics: true
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.CENTER,
          spacing: { after: 400 },
          children: [
            new TextRun({
              text: "Date of Submission: April 28, 2026",
              font: "Times New Roman",
              size: 22,
              color: "555555"
            })
          ]
        }),

        // ─── ABSTRACT ─────────────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 200, after: 100 },
          children: [
            new TextRun({
              text: "ABSTRACT",
              bold: true,
              font: "Times New Roman",
              size: 28,
              color: "1F4E79",
              allCaps: true
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 200 },
          children: [
            new TextRun({
              text: "Digital Eye Strain (DES), also referred to as Computer Vision Syndrome (CVS), is an increasingly prevalent ocular and visual condition resulting from prolonged use of digital screens including computers, smartphones, tablets, and e-readers. Prevalence estimates range from 8.2% to 97% of screen users depending on the population studied and diagnostic criteria applied. The condition manifests as a constellation of visual and ocular surface symptoms including asthenopia (eye strain), headache, dry eye, blurred vision, photophobia, and musculoskeletal discomfort. The primary pathophysiological mechanisms involve accommodative stress, reduced blink rate, incomplete blinks, blue-light exposure, improper ergonomics, and uncorrected refractive errors. Management strategies include optimizing refractive correction, behavioural modifications such as the 20-20-20 rule, environmental adjustments, artificial tear therapy, and blinking exercises. Despite widespread marketing, blue-light blocking lenses lack high-quality evidence of efficacy. This article provides a comprehensive review of the aetiology, pathophysiology, clinical features, diagnosis, and evidence-based management of digital eye strain, particularly relevant to students of optometry in clinical practice.",
              font: "Times New Roman",
              size: 22,
              italics: true
            })
          ]
        }),
        new Paragraph({
          spacing: { after: 200 },
          children: [
            new TextRun({ text: "Keywords: ", bold: true, font: "Times New Roman", size: 22 }),
            new TextRun({ text: "Digital Eye Strain, Computer Vision Syndrome, Asthenopia, Dry Eye, Screen Exposure, Optometry, Blue Light, 20-20-20 Rule", font: "Times New Roman", size: 22, italics: true })
          ]
        }),

        // ─── 1. INTRODUCTION ──────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "1. INTRODUCTION", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "The 21st century has witnessed an extraordinary proliferation of digital devices in virtually every sphere of human activity — professional, educational, and recreational. Globally, over 6.8 billion smartphone subscriptions exist, and average daily screen time frequently exceeds 7–10 hours in working adults and students. The COVID-19 pandemic further accelerated this shift, mandating remote learning and virtual workplaces, which dramatically increased screen exposure across all age groups.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "This ubiquitous screen exposure has precipitated a corresponding surge in ocular and visual complaints collectively termed Digital Eye Strain (DES) — the preferred contemporary terminology replacing the older label \"Computer Vision Syndrome\" (CVS). DES is defined as \"the development or exacerbation of recurrent ocular symptoms and/or signs related specifically to digital device screen viewing\" (Wolffsohn et al., 2023). Its prevalence has been reported as high as 97%, although wide variation across studies reflects heterogeneity in definitions, populations, and measurement tools.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "For optometrists, DES represents one of the most common conditions encountered in primary eye care. A thorough understanding of its aetiology, pathophysiology, and management is essential for evidence-based patient counselling and therapeutic decision-making. This article provides a detailed review of the topic, integrating current research with clinical relevance for 6th semester optometry students.",
              font: "Times New Roman", size: 24
            })
          ]
        }),

        // ─── 2. EPIDEMIOLOGY ──────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "2. EPIDEMIOLOGY AND PREVALENCE", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "The worldwide prevalence of DES varies considerably — from 8.2% to 100% — depending on the subjects evaluated and the assessment method used (Pucker et al., 2024). This wide range is largely attributable to the absence of a universally accepted diagnostic definition and the lack of validated, standardised diagnostic instruments until recently.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "High-risk groups include office workers, students, healthcare professionals, and gamers. Studies consistently report higher prevalence among:",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Females (possibly due to higher rates of dry eye disease and hormonal influences on the lacrimal system)", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Contact lens wearers (exacerbated ocular surface desiccation)", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Individuals with uncorrected or under-corrected refractive errors", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Those spending >4 hours/day on screens without adequate breaks", font: "Times New Roman", size: 24 })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { before: 120, after: 160 },
          children: [
            new TextRun({
              text: "The most commonly used validated questionnaires for DES assessment are the Computer Vision Syndrome Questionnaire (CVS-Q) and the Computer Vision Symptom Scale (CVSS17).",
              font: "Times New Roman", size: 24
            })
          ]
        }),

        // ─── 3. AETIOLOGY ─────────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "3. AETIOLOGY AND RISK FACTORS", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "DES is multifactorial in aetiology. Contributing factors can be grouped into visual, ocular surface, environmental, and ergonomic categories.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "3.1 Visual Factors", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Uncorrected refractive errors: Myopia, hyperopia, astigmatism, and presbyopia place excessive demand on the accommodative system during screen use.", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Binocular vision anomalies: Convergence insufficiency, accommodative insufficiency, and heterophoria are frequently exacerbated by sustained near-screen tasks.", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Accommodative fatigue: Prolonged near-point fixation induces ciliary muscle fatigue, manifesting as blur, eyestrain, and headache.", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ spacing: { before: 120, after: 60 }, children: [new TextRun({ text: "3.2 Ocular Surface Factors", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Reduced blink rate: Under normal conditions, spontaneous blink rate is approximately 15–20 blinks/minute. During screen use, this falls to 5–7 blinks/minute, increasing tear film evaporation and ocular surface desiccation.", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Incomplete blinks: Even when blinking occurs, incomplete lid closure during screen use fails to adequately spread and refresh the tear film.", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Pre-existing dry eye disease: Meibomian gland dysfunction and aqueous tear deficiency are significantly worsened by screen-associated blink reduction.", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ spacing: { before: 120, after: 60 }, children: [new TextRun({ text: "3.3 Environmental Factors", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Screen glare and reflections from surrounding light sources", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Poor ambient lighting — excessively bright or dim environments", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Low humidity in air-conditioned or heated rooms, accelerating tear evaporation", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Blue light emission from LED screens (wavelengths 380–500 nm), which may contribute to photoreceptor stress and circadian rhythm disruption", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ spacing: { before: 120, after: 60 }, children: [new TextRun({ text: "3.4 Ergonomic Factors", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 160 }, children: [new TextRun({ text: "Improper screen positioning — too close, too high, or at an angle causing upward gaze — increases ocular surface exposure area and worsens evaporation. Prolonged static postures lead to neck, shoulder, and back pain, commonly reported alongside ocular symptoms.", font: "Times New Roman", size: 24 })] }),

        // ─── 4. PATHOPHYSIOLOGY ───────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "4. PATHOPHYSIOLOGY", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "The pathophysiology of DES involves two major but interrelated mechanisms: (1) accommodative-vergence system fatigue and (2) ocular surface disease secondary to altered blink dynamics.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "4.1 Accommodative-Vergence Mechanism", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Digital screens require sustained near fixation, demanding constant ciliary muscle contraction for accommodation and medial rectus contraction for convergence. Prolonged activation without adequate rest leads to ciliary muscle fatigue, lag of accommodation, and symptoms of asthenopia — including aching, burning, tearing, and blurred vision at both near and distance. Individuals with latent hyperopia are particularly susceptible, as they must over-accommodate even for distance viewing. Similarly, convergence insufficiency causes diplopia and ocular discomfort with sustained near tasks.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "4.2 Ocular Surface and Tear Film Mechanism", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Sustained screen viewing is associated with a 40–60% reduction in blink rate. Blinks are essential for spreading the tear film across the ocular surface. Reduced and incomplete blinks allow the tear film to destabilise and evaporate, leading to elevated tear film osmolarity, corneal epithelial disruption, and activation of inflammatory mediators. This cascade produces the symptoms of dry eye — burning, foreign body sensation, photophobia, and reflex tearing — which closely mirror classic DES symptomatology. The mechanisms attributed to ocular surface disease exacerbation in DES include reduced blink rate and completeness, partial or uncorrected refractive error, and cognitive demand of screen tasks (TFOS Wolffsohn et al., 2023).",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "4.3 Blue Light and Circadian Effects", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Blue light (380–500 nm wavelength) emitted by LED screens is absorbed by intrinsically photosensitive retinal ganglion cells (ipRGCs) containing the photopigment melanopsin. These cells project to the suprachiasmatic nucleus of the hypothalamus and regulate circadian rhythms. Evening screen exposure suppresses melatonin secretion, delays sleep onset, and disrupts sleep architecture. While blue light at ambient screen intensities is unlikely to cause direct photochemical retinal damage in normally sighted individuals, its circadian and pupillary effects are clinically significant. At higher wavelengths, blue light also contributes to retinal fatigue and glare sensitivity.",
              font: "Times New Roman", size: 24
            })
          ]
        }),

        // ─── 5. CLINICAL FEATURES ─────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "5. CLINICAL FEATURES", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 120 },
          children: [
            new TextRun({
              text: "DES presents with a broad symptom complex affecting both the ocular surface and the visual system. Common symptoms include:",
              font: "Times New Roman", size: 24
            })
          ]
        }),

        // Table of symptoms
        new Table({
          width: { size: 100, type: WidthType.PERCENTAGE },
          rows: [
            new TableRow({
              tableHeader: true,
              children: [
                new TableCell({
                  shading: { type: ShadingType.SOLID, color: "1F4E79" },
                  verticalAlign: VerticalAlign.CENTER,
                  children: [new Paragraph({ alignment: AlignmentType.CENTER, children: [new TextRun({ text: "Category", bold: true, font: "Times New Roman", size: 22, color: "FFFFFF" })] })]
                }),
                new TableCell({
                  shading: { type: ShadingType.SOLID, color: "1F4E79" },
                  verticalAlign: VerticalAlign.CENTER,
                  children: [new Paragraph({ alignment: AlignmentType.CENTER, children: [new TextRun({ text: "Symptoms", bold: true, font: "Times New Roman", size: 22, color: "FFFFFF" })] })]
                })
              ]
            }),
            new TableRow({
              children: [
                new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Asthenopic / Visual", bold: true, font: "Times New Roman", size: 22 })] })] }),
                new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Eye strain, eye fatigue, headache, blurred vision (near and distance), diplopia, difficulty refocusing", font: "Times New Roman", size: 22 })] })] })
              ]
            }),
            new TableRow({
              children: [
                new TableCell({ shading: { type: ShadingType.SOLID, color: "EBF3FB" }, children: [new Paragraph({ children: [new TextRun({ text: "Ocular Surface", bold: true, font: "Times New Roman", size: 22 })] })] }),
                new TableCell({ shading: { type: ShadingType.SOLID, color: "EBF3FB" }, children: [new Paragraph({ children: [new TextRun({ text: "Dry eye sensation, burning, stinging, foreign body sensation, reflex tearing, redness, itching", font: "Times New Roman", size: 22 })] })] })
              ]
            }),
            new TableRow({
              children: [
                new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Photosensitivity", bold: true, font: "Times New Roman", size: 22 })] })] }),
                new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Photophobia, glare sensitivity, afterimage persistence", font: "Times New Roman", size: 22 })] })] })
              ]
            }),
            new TableRow({
              children: [
                new TableCell({ shading: { type: ShadingType.SOLID, color: "EBF3FB" }, children: [new Paragraph({ children: [new TextRun({ text: "Musculoskeletal", bold: true, font: "Times New Roman", size: 22 })] })] }),
                new TableCell({ shading: { type: ShadingType.SOLID, color: "EBF3FB" }, children: [new Paragraph({ children: [new TextRun({ text: "Neck pain, shoulder pain, upper back pain (associated with poor posture/ergonomics)", font: "Times New Roman", size: 22 })] })] })
              ]
            }),
            new TableRow({
              children: [
                new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Sleep-Related", bold: true, font: "Times New Roman", size: 22 })] })] }),
                new TableCell({ children: [new Paragraph({ children: [new TextRun({ text: "Difficulty falling asleep, daytime fatigue, reduced sleep quality (due to circadian blue-light effects)", font: "Times New Roman", size: 22 })] })] })
              ]
            })
          ]
        }),
        new Paragraph({ spacing: { after: 160 }, children: [new TextRun({ text: "Table 1: Symptom categories and manifestations of Digital Eye Strain", italics: true, font: "Times New Roman", size: 20, color: "555555" })] }),

        // ─── 6. DIAGNOSIS ─────────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "6. DIAGNOSIS AND CLINICAL ASSESSMENT", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "There is currently no single objective test that definitively diagnoses DES. Diagnosis is primarily clinical, supported by validated questionnaires and a comprehensive optometric examination.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "6.1 History and Questionnaires", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "A thorough history should document daily screen time, types of devices, viewing distance, use of corrective lenses, and symptom onset and relief patterns. The two most widely validated instruments are:", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  CVS-Q (Computer Vision Syndrome Questionnaire) — assesses frequency and intensity of 16 DES symptoms", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 160 }, children: [new TextRun({ text: "•  CVSS17 (Computer Vision Symptom Scale) — 17-item scale evaluating severity of visual and ocular symptoms", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "6.2 Optometric Examination", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Visual acuity assessment (distance and near)", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Refraction (objective and subjective) — to detect and correct refractive errors", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Binocular vision assessment: Cover test, phoria, vergence ranges, NPC (Near Point of Convergence), accommodative amplitude and facility", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Tear film assessment: Tear Break-Up Time (TBUT), Schirmer test, osmolarity, blink rate observation", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 160 }, children: [new TextRun({ text: "•  Slit-lamp biomicroscopy: Corneal staining, meibomian gland assessment, conjunctival injection", font: "Times New Roman", size: 24 })] }),

        // ─── 7. MANAGEMENT ────────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "7. MANAGEMENT", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "7.1 Refractive Correction", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Providing an accurate, up-to-date refractive correction appropriate for the patient's primary screen viewing distance is the single most important therapeutic intervention. Occupational (task-specific) spectacle lenses tailored for intermediate and near distances are recommended for presbyopic patients. Multifocal lenses, however, have not been shown to reduce visual fatigue compared to single-vision lenses in meta-analytic evidence (Singh et al., 2022).",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "7.2 Behavioural Strategies — The 20-20-20 Rule", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "The 20-20-20 rule is a widely advocated clinical recommendation: every 20 minutes of screen use, look at an object at least 20 feet (6 metres) away for at least 20 seconds. This interrupts sustained accommodation and vergence, allowing ciliary muscle recovery and facilitating reflex blink initiation. Conscious blinking exercises and deliberate complete blinks during screen tasks are also recommended.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "7.3 Ergonomic Optimisation", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Screen distance: 50–70 cm from the eyes", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Screen position: Slightly below eye level (10–20° below horizontal), reducing palpebral aperture and minimising ocular surface exposure", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Reduce glare: Use anti-glare screen protectors, close blinds, adjust ambient lighting", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Increase text size: Avoids excessive accommodation demand", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 160 }, children: [new TextRun({ text: "•  Ambient humidity: Humidifiers may reduce evaporative dry eye symptoms", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "7.4 Artificial Tears and Ocular Surface Therapy", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Artificial tear preparations remain a cornerstone of symptomatic management. The TFOS 2023 review identified secretagogues and warm compress/humidity goggles/ambient humidifiers as promising strategies. Omega-3 fatty acid supplementation (45 days to 3 months) has shown low-certainty evidence of benefit for dry eye symptoms associated with screen use (Singh et al., 2022). Preservative-free formulations are preferred for patients requiring frequent dosing.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "7.5 Blue-Light Blocking Lenses — Evidence Assessment", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Despite widespread commercial marketing, blue-light blocking spectacles have not been shown to reduce visual fatigue symptoms in high-quality trials. A systematic review and meta-analysis (Singh et al., 2022, Ophthalmology) found that blue-blocking spectacles did not improve visual fatigue, with evidence judged of low certainty. The TFOS 2023 report similarly concluded that \"blue-light blocking interventions do not appear to be an effective management strategy\" for DES. Optometrists should counsel patients accordingly, avoiding endorsement of these lenses as primary DES therapy.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "7.6 Nutritional Supplements", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Oral carotenoid supplementation (lutein and zeaxanthin) has been shown to improve critical flicker-fusion frequency (CFF) in screen users, a potential marker of visual processing efficiency, though clinical significance remains uncertain. Berry extract (anthocyanin) supplementation did not significantly improve visual fatigue or dry eye in meta-analytic data. Omega-3 supplementation shows the most consistent evidence benefit for the ocular surface component.",
              font: "Times New Roman", size: 24
            })
          ]
        }),

        // ─── 8. SPECIAL CONSIDERATIONS ────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "8. SPECIAL CONSIDERATIONS IN OPTOMETRIC PRACTICE", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "8.1 Children and Adolescents", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Children are particularly vulnerable due to greater accommodative amplitude (meaning they can sustain near focus easily, masking strain), combined with rapidly increasing screen time for education and entertainment. Blue light exposure at night is especially concerning for melatonin suppression and sleep quality in developing children. Optometrists should screen for DES symptoms in paediatric populations and counsel caregivers about screen time limits and bedtime device restriction.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "8.2 Contact Lens Wearers", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Contact lens wear further compromises tear film stability and blink dynamics. Daily disposable lenses with high water content and silicone hydrogel materials offering superior oxygen transmissibility are preferred. Contact lens rewetting drops and scheduled wear removal should be considered. In symptomatic lens wearers, temporary frame spectacle use during prolonged screen sessions may be advisable.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ spacing: { after: 60 }, children: [new TextRun({ text: "8.3 Presbyopic Patients", bold: true, font: "Times New Roman", size: 26, color: "2E75B6" })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "In presbyopic individuals, the inability to accommodate for near and intermediate distances forces awkward postures (head tilting, screen moving) to find the optimal zone of a progressive addition lens. Occupational progressive lenses or dedicated near/intermediate single-vision lenses for screen use are recommended over standard progressives in office and screen-intensive environments.",
              font: "Times New Roman", size: 24
            })
          ]
        }),

        // ─── 9. PREVENTION ────────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "9. PREVENTION AND PUBLIC HEALTH PERSPECTIVE", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "DES is largely preventable with appropriate behavioural and environmental modifications. Optometrists are uniquely positioned as primary care eye health professionals to:",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Screen all patients for DES using validated questionnaires at routine eye examinations", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Correct all refractive errors optimally, including those below traditional prescribing thresholds if symptoms are present", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Educate patients on the 20-20-20 rule, blinking exercises, and ergonomic screen setup", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Counsel on the evidence (or lack thereof) for blue-light blocking interventions", font: "Times New Roman", size: 24 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 80 }, children: [new TextRun({ text: "•  Advocate for workplace ergonomic assessments and screen hygiene policies", font: "Times New Roman", size: 24 })] }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { before: 120, after: 160 },
          children: [
            new TextRun({
              text: "From a public health perspective, the high prevalence of DES, its impact on occupational productivity, and its role in worsening dry eye disease make it a significant healthcare burden warranting structured clinical protocols and population-level awareness.",
              font: "Times New Roman", size: 24
            })
          ]
        }),

        // ─── 10. CONCLUSION ───────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "10. CONCLUSION", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Digital Eye Strain is a highly prevalent, multifactorial condition driven by the convergence of accommodative demand, ocular surface disruption, and environmental stressors associated with screen-based work and recreation. Its symptom burden is broad — spanning visual, ocular surface, photosensitivity, musculoskeletal, and sleep dimensions — and significantly impacts quality of life and occupational performance.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "Evidence-based management centres on accurate refractive correction, behavioural strategies (particularly regular breaks and blinking exercises), ergonomic optimisation, and targeted ocular surface therapy. Despite their commercial popularity, blue-light blocking lenses lack robust clinical evidence and should not be routinely recommended as primary DES treatment. Omega-3 supplementation shows the most consistent evidence for the ocular surface component.",
              font: "Times New Roman", size: 24
            })
          ]
        }),
        new Paragraph({
          alignment: AlignmentType.JUSTIFIED,
          spacing: { after: 160 },
          children: [
            new TextRun({
              text: "As eye care professionals, optometrists bear a critical responsibility in identifying, counselling, and managing patients with DES — combining clinical assessment skills with evidence-informed patient education to mitigate the growing ocular health burden of the digital age.",
              font: "Times New Roman", size: 24
            })
          ]
        }),

        // ─── REFERENCES ───────────────────────────────────────────────────────────
        new Paragraph({
          heading: HeadingLevel.HEADING_1,
          spacing: { before: 300, after: 100 },
          children: [
            new TextRun({ text: "REFERENCES", bold: true, font: "Times New Roman", size: 28, color: "1F4E79", allCaps: true })
          ]
        }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 120 }, children: [new TextRun({ text: "1. Singh S, McGuinness MB, Anderson AJ, Downie LE. Interventions for the Management of Computer Vision Syndrome: A Systematic Review and Meta-analysis. Ophthalmology. 2022 Oct;129(10):1093–1109. doi: 10.1016/j.ophtha.2022.05.009. PMID: 35597519.", font: "Times New Roman", size: 22 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 120 }, children: [new TextRun({ text: "2. Wolffsohn JS, Lingham G, Downie LE, et al. TFOS Lifestyle: Impact of the digital environment on the ocular surface. Ocul Surf. 2023 Apr;28:213–252. doi: 10.1016/j.jtos.2023.04.004. PMID: 37062428.", font: "Times New Roman", size: 22 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 120 }, children: [new TextRun({ text: "3. Pucker AD, Kerr AM, Sanderson J, Lievens C. Digital Eye Strain: Updated Perspectives. Clin Optom (Auckl). 2024;16:49–62. doi: 10.2147/OPTO.S412382. PMID: 39308959.", font: "Times New Roman", size: 22 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 120 }, children: [new TextRun({ text: "4. Mylona I, Glynatsis MN, Floros GD, Kandarakis S. Spotlight on Digital Eye Strain. Clin Optom (Auckl). 2023;15:25–34. doi: 10.2147/OPTO.S389114. PMID: 36875935.", font: "Times New Roman", size: 22 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 120 }, children: [new TextRun({ text: "5. Pavel IA, Bogdanici CM, Donica VC, et al. Computer Vision Syndrome: An Ophthalmic Pathology of the Modern Era. Medicina (Kaunas). 2023 Feb 20;59(3):470. doi: 10.3390/medicina59030470. PMID: 36837613.", font: "Times New Roman", size: 22 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 120 }, children: [new TextRun({ text: "6. Auffret É, Gomart G, Bourcier T, et al. Digital eye strain: Symptoms, prevalence, pathophysiology, and management. J Fr Ophtalmol. 2021 Dec;44(10):1605–1610. doi: 10.1016/j.jfo.2021.07.006. PMID: 34657757.", font: "Times New Roman", size: 22 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 120 }, children: [new TextRun({ text: "7. Kahal F, Al Darra A, Torbey A, et al. Computer vision syndrome: a comprehensive literature review. Future Sci OA. 2025;11(1):FSO983. PMID: 40055942.", font: "Times New Roman", size: 22 })] }),
        new Paragraph({ alignment: AlignmentType.JUSTIFIED, spacing: { after: 200 }, children: [new TextRun({ text: "8. Adams and Victor's Principles of Neurology, 12th Edition. McGraw-Hill Education. (Visual fatigue/asthenopia reference.)", font: "Times New Roman", size: 22 })] }),

      ]
    }
  ]
});

Packer.toBuffer(doc).then(buffer => {
  fs.writeFileSync('/home/daytona/workspace/sabiya-article/Eye_Strain_and_Screen_Exposure_Sabiya.docx', buffer);
  console.log('Document created successfully!');
}).catch(err => {
  console.error('Error:', err);
  process.exit(1);
});
Running Command

cd /home/daytona/workspace/sabiya-article && node create_article.js

Running Command

ls -lh /home/daytona/workspace/sabiya-article/ && python3 /home/daytona/skills/docx/scripts/office/validate.py /home/daytona/workspace/sabiya-article/Eye_Strain_and_Screen_Exposure_Sabiya.docx

Running Command

cd /home/daytona/workspace/sabiya-article && python3 -c "import zipfile; zf = zipfile.ZipFile('Eye_Strain_and_Screen_Exposure_Sabiya.docx'); print('Valid ZIP. Files:', zf.namelist()[:10])"

Your article is ready for download:

Eye Strain and Screen Exposure Sabiya

Word Document · DOCX


Article Overview

Title: Eye Strain and Screen Exposure: Pathophysiology, Clinical Manifestations, and Evidence-Based Management Author: Sabiya | 6th Semester, B.Sc. Optometry | Submission Date: April 28, 2026

What's Inside (10 Sections)

SectionContent
AbstractConcise summary with keywords
1. IntroductionDigital revolution, DES definition, prevalence context
2. EpidemiologyWorldwide prevalence (8.2–97%), high-risk groups, validated questionnaires (CVS-Q, CVSS17)
3. Aetiology & Risk FactorsVisual, ocular surface, environmental, and ergonomic factors
4. PathophysiologyAccommodative-vergence fatigue, tear film disruption, blue light & circadian effects
5. Clinical FeaturesColour-coded table of asthenopic, ocular surface, photosensitivity, musculoskeletal, and sleep symptoms
6. DiagnosisHistory, questionnaires, full optometric examination protocol
7. ManagementRefractive correction, 20-20-20 rule, ergonomics, artificial tears, blue-light lens evidence critique, nutrition
8. Special ConsiderationsChildren, contact lens wearers, presbyopes
9. Prevention & Public HealthRole of the optometrist in screening and education
10. ConclusionClinical synthesis
References8 citations (7 peer-reviewed, including 2 systematic reviews from Ophthalmology and Ocular Surface)

Key Evidence Highlights

  • Singh et al., 2022 (Ophthalmology, PMID 35597519) — Systematic review: blue-light blocking lenses show no benefit; omega-3 has low-certainty evidence for dry eye
  • TFOS Wolffsohn et al., 2023 (Ocular Surface, PMID 37062428) — Prevalence up to 97%; secretagogues and omega-3 are promising; blue-light blocking not recommended
  • Pucker et al., 2024 (Clinical Optometry, PMID 39308959) — Updated perspectives; most common symptoms and treatment approaches
This is a shared conversation. Sign in to Orris to start your own chat.