
/** ADD YOUR AWESOME CODES HERE **/

/* Fixed text overlay - stays in middle of screen */
#fixed-text-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(20px, 4vw, 48px);
    font-weight: bold;
    color: #ffffff;
    background-color: #F7941D;
    padding: 15px 30px;
    text-align: center;
    z-index: 9999;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-family: "LiGothic", "FangSong", Arial, serif;
    letter-spacing: 2px;
    opacity: 0.95;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    max-width: 95vw;
    overflow: hidden;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    #fixed-text-overlay {
        padding: 12px 20px;
        font-size: clamp(18px, 5vw, 32px);
    }
}

@media only screen and (max-width: 480px) {
    #fixed-text-overlay {
        padding: 10px 15px;
        font-size: clamp(16px, 6vw, 24px);
    }
}