* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: -999;
    object-fit: cover;
    background: black;
}

.typing-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    border-right: 2px solid white;
    white-space: pre-line;
    overflow: hidden;
    max-width: 800px;
    line-height: 1.5;
    margin: 150px auto;
    text-align: center;
    word-break: break-word;
}

@media (max-width: 768px) {
    .typing-container {
        max-width: 90%;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .typing-container {
        max-width: 95%;
        font-size: 0.9rem;
    }
}