#head{
    background:#ffffff;
}


[data-reader-unique-id],
iframe#next-page-container {
    display: none !important;
}

.terminal-text {
    color: #0f0; /* Green text for terminal effect */
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 1rem;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.6;
}

/* Blinking cursor effect */
.blinking-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Typing animation for each line */
.line {
    opacity: 0;
    animation: fade-in 1s ease-in-out forwards;
}

.line:nth-child(1) {
    animation-delay: 0.5s;
}

.line:nth-child(2) {
    animation-delay: 1.5s;
}

.line:nth-child(3) {
    animation-delay: 2.5s;
}

.line:nth-child(4) {
    animation-delay: 3.5s;
}

.line:nth-child(5) {
    animation-delay: 4.5s;
}



@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



strong {
    font-weight: bold !important;
}

