.ew-matrix-rain-effect {
    position: relative;
    width: 100%;
}

.ew-matrix-rain-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Default height */
    overflow: hidden;
    background-color: #000;
}

.ew-matrix-canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none; /* clicks pass through unless we explicitly want to intercept */
}

.ew-matrix-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    color: #fff;
    cursor: default;
    user-select: none;
    outline: none;
}

.ew-matrix-overlay:focus {
    box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.12);
    border-radius: 6px;
}

.ew-matrix-overlay-title {
    margin: 0 0 15px 0;
    padding: 0;
}

.ew-matrix-overlay-description {
    margin: 0;
    padding: 0;
}

/* Small responsive tweak */
@media (max-width: 480px) {
    .ew-matrix-overlay { width: 95%; }
}
