:root {
    --bg-color: #111111;
    --text-color: #FAFAFA;
    --accent-color: #555555;
    --glow-color: rgba(255, 255, 255, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
    font-family: 'Space Mono', monospace;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

.container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.text-wrapper {
    width: 100%;
    max-width: 800px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    padding: 40px;
    transition: all 0.3s ease;
}

.text-wrapper:hover {
    transform: scale(1.02);
}

.text {
    font-weight: 400;
    font-size: clamp(16px, 4vw, 32px);
    color: var(--text-color);
    line-height: 1.5;
    transition: all 0.2s ease;
}

.dud {
    color: var(--accent-color);
    opacity: 0.7;
}

.text-wrapper:hover .text {
    text-shadow: 0 0 15px var(--glow-color);
}

.animating {
    pointer-events: none;
}

@media (max-width: 768px) {
    .text-wrapper {
        padding: 20px;
    }
    .text {
        font-size: clamp(14px, 5vw, 24px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
}