html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fffbf5;
    color: #000;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.banner {
    color: black;
    margin-top: 3rem;
    font-family: "Press Start 2P", system-ui;
    font-size: 1.5rem;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100vw;
    height: 2rem;
}

.banner-text {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 100%;
    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

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

.clickable {
    animation: blink 1s infinite;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    cursor: pointer;
    pointer-events: auto;
}

.title h1 {
    font-size: 2rem;
    font-family: "Press Start 2P", system-ui;
    font-weight: bold;
    margin: 2rem 0.625rem;
    text-align: center;
}

.author {
    display: inline-block;
    margin-top: 0rem;
    margin-left: 3rem;
    margin-bottom: 1rem;
    font-size: 0.6rem;
    color: black;
    text-align: left;
    font-family: "Press Start 2P", system-ui;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid black;
    animation: typing 5s steps(30) infinite; 
}

@keyframes typing {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
}

.author.typing {
    animation: typewriter 3s steps(30, end) 1 forwards, blinkCursor 0.7s step-end infinite;
}

.knowledge1, .knowledge2, .knowledge3, .truth1, .truth2, .truth3 {
    max-width: 85rem;
    text-align: left;
}

.key {
    font-family: Arial, Helvetica, sans-serif;
    color: #0000ff;
    font-weight: bold;
    font-size: 9rem;
}

section, h4 {
    opacity: 1 !important;
    transition: none !important;
}

h4 {
    margin-top: 15rem;
    margin-bottom: 0;
    margin-left: 2rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 8rem;
    word-break: break-word;
    max-width: 100vw;
    overflow-wrap: break-word;
}


h3{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4.3rem;
    margin-top: 1.7rem;
    margin-bottom: 1rem;
    margin-left: 2.5rem;
    overflow: hidden;
    position: relative;
}

.floating-image {
    position: fixed;  
    top: 50px; 
    left: 50px;  
    width: 250px;
    height: auto;
    z-index: 9999;  
    cursor: grab;
    user-select: none;
    touch-action: none;
    -webkit-user-drag: none;
    box-shadow: 7px 7px 14px rgb(82, 82, 82);
}

.draggable-img {
    pointer-events: auto;
    user-select: none;
}

p {
    position: relative;
    opacity: 0.85;
    margin-bottom: 0.5rem;
    margin-left: 3rem;
    font-size: 4.3rem;
    margin-top: 1rem;
}

p, h3 {
    filter: blur(10px);
    transition: filter 0.4s ease, opacity 0.4s ease;
    opacity: 0.6;
    animation: floatText 6s ease-in-out infinite;
}

p:hover, h3:hover {
    filter: blur(0px);
    opacity: 1;
}

.left-corner {
    position: fixed;
    top: 70px;
    left: 10px;
    font-size: 1.7rem;
    color: rgba(220, 2, 2, 0.923);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    cursor: pointer;
    margin-left: 0.5rem;
    margin-top: 0.3rem;
}

#refreshWord {
    position: fixed;
    top: 75px;
    right: 20px; 
    font-size: 1.5rem; 
    font-weight: bold;
    color: #ff0000; 
    font-family: Arial, Helvetica, sans-serif; 
    cursor: pointer;
    visibility: visible; 
    transition: visibility 0.3s;
    z-index: 9999;
    display: block !important;
    visibility: visible !important;
}

.clickable {
    animation: blink 1s infinite;
}

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

.bubble {
    position: fixed;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-family: Arial, Helvetica, sans-serif; 
    font-weight: bold;
    color: #fffbf5;
    z-index: 1500;
    pointer-events: none;
    animation: float 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: #000000;
    backdrop-filter: blur(4px);
    user-select: none;
}
  