/* ===== GLOBAL ===== */
body {
    margin: 0;
    height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    font-family: Arial, sans-serif;
}

/* ===== MATRIX CANVAS ===== */
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.35;
    pointer-events: none;
}

/* ===== TEXT GRADIENT ===== */
.name, .domain {
    background: linear-gradient(45deg, #00ff55, #009944);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 6px #00ff55);
    z-index: 10;
}

/* Tamaños responsivos */
.name {
    margin-top: 25px;
    font-size: clamp(28px, 4.5vw, 70px);
    font-weight: 600;
}

.domain {
    margin-top: 5px;
    font-size: clamp(18px, 2.8vw, 40px);
    opacity: 0.9;
}
