/* Narrator Section: Fullscreen with Parallax Background */
.narrator-section {
    height: 100vh;
    background: url('images/narrator-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 40px;
    overflow: hidden;
}

/* Main Content */
.narrator-content {
    position: relative;
    z-index: 2;
}

/* Ghost Hallucination Text (Bigger & Shadowed) */
.ghost-text {
    position: absolute;
    font-size: 2.8rem; /* Slightly smaller for balance */
    font-weight: bold;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    white-space: nowrap;
    z-index: 1;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7); /* Shadow effect */
}

/* Different starting positions for floating effect */
.ghost-text:nth-child(1) { left: -120px; top: 20%; transform: rotate(-5deg); }
.ghost-text:nth-child(2) { right: -120px; top: 50%; transform: rotate(8deg); }
.ghost-text:nth-child(3) { left: 50%; top: 10%; transform: translateX(-50%) rotate(-10deg); }
.ghost-text:nth-child(4) { left: 30%; bottom: -120px; transform: rotate(5deg); }
.ghost-text:nth-child(5) { left: 60%; top: -100px; transform: rotate(3deg); }
.ghost-text:nth-child(6) { right: -100px; top: 30%; transform: rotate(-4deg); }
.ghost-text:nth-child(7) { left: 20%; bottom: -150px; transform: rotate(6deg); }
.ghost-text:nth-child(8) { right: 50px; bottom: -120px; transform: rotate(-8deg); }
.ghost-text:nth-child(9) { left: 50%; bottom: -100px; transform: translateX(-50%) rotate(2deg); }
.ghost-text:nth-child(10) { right: 80px; top: -150px; transform: rotate(-6deg); }
