.ripple-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    cursor: none;
}

.ripple-canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.ripple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}

.ripple-title {
    margin: 0 0 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    line-height: 1.15;
}

.ripple-subtitle {
    margin: 0;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
    max-width: 600px;
}

@media (max-width: 768px) {
    .ripple-title   { font-size: 2rem; }
    .ripple-subtitle { font-size: 1rem; }
}
