.angie-ripple-container {
    position: relative;
    width: 100%;
    height: 400px; /* Default fallback */
    overflow: hidden;
    cursor: pointer;
}

.angie-ripple-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.angie-ripple-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    pointer-events: none; /* Let clicks pass through to canvas if needed */
    width: 100%;
    padding: 20px;
}

.angie-ripple-title {
    margin: 0;
    padding: 0;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.angie-ripple-subtitle {
    margin: 10px 0 0;
    padding: 0;
    font-size: 18px;
    font-weight: normal;
    color: #f0f0f0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.angie-ripple-container,
.angie-ripple-container *,
.angie-ripple-canvas,
.angie-ripple-canvas canvas {
  -webkit-tap-highlight-color: transparent;
  outline: none !important;
  box-shadow: none !important;
}

.angie-ripple-container:focus,
.angie-ripple-container:active,
.angie-ripple-container *:focus,
.angie-ripple-container *:active {
  outline: none !important;
  box-shadow: none !important;
}