/* === TEXT MODE PAGE === */
.text-page {
    align-items: center;
}

.text-header {
    text-align: center;
    margin-bottom: 30px;
}

.text-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00C9FF, #92FE9D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-container {
    background: linear-gradient(135deg, #2a2a3a, #1a1a2a);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.input-group input[type="text"] {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.2s;
}

.input-group input[type="text"]:focus {
    border-color: #00C9FF;
    box-shadow: 0 0 10px rgba(0, 201, 255, 0.2);
}

.color-select-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.color-select-wrapper input[type="color"] {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: none;
}

#textColorValue {
    font-family: monospace;
    font-size: 1rem;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #444;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #00C9FF;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 201, 255, 0.5);
}