/* CSS específico para web - propriedades não suportadas no React Native */

.metallic-text {
    background: linear-gradient(to bottom, #ffffff 20%, #9ca3af 50%, #ffffff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.glass-input {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.glow-red-icon {
    filter: drop-shadow(0 0 8px rgba(223, 32, 32, 0.6));
}

.mascot-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40rem;
    color: rgba(223, 32, 32, 0.03);
    user-select: none;
    pointer-events: none;
    z-index: -1;
    filter: blur(2px);
}
