body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    font-family: 'Poppins', sans-serif;
}

.container {
    text-align: center;
    overflow: hidden;
    user-select: none; /* Prevent text selection */
    cursor: default;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(90deg, #ffffff, #f39c12, #ffffff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s infinite;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}
