/* Digital Revenue Leak Component - Abstract Breach */
.leak-wrapper {
    position: relative;
    width: 300px;
    height: 380px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: transparent;
}

.breach-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
}

/* The Rift / Source of Leak */
.digital-breach {
    position: absolute;
    top: 0px;
    /* Moved up from 40px */
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    /* Scaled up 1.3x (was 120px) */
    height: 14px;
    /* Scaled height slightly */
    z-index: 10;
}

/* The Core Fracture */
.breach-core {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 0 10px #fff,
        0 0 20px #ec4899,
        0 0 40px #ec4899;
    opacity: 0.9;
    animation: breach-pulse 2s infinite ease-in-out;
}

/* Atmospheric Glow */
.breach-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
    mix-blend-mode: screen;
    animation: glow-flicker 4s infinite alternate;
}

@keyframes breach-pulse {
    0% {
        transform: scaleX(0.95) scaleY(0.8);
        opacity: 0.8;
    }

    50% {
        transform: scaleX(1.1) scaleY(1.2);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.95) scaleY(0.8);
        opacity: 0.8;
    }
}

@keyframes glow-flicker {
    0% {
        opacity: 0.5;
        filter: hue-rotate(0deg);
    }

    100% {
        opacity: 0.8;
        filter: hue-rotate(10deg);
    }
}

/* Particles - High Contrast, Readable */
.particle {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fbbf24;
    /* Amber */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    /* Subtle neon shadow */
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
    will-change: transform, opacity;
}

.particle.email {
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Interaction */
.cursor-disruptor {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 20;
    transition: opacity 0.2s;
    opacity: 0;
}

.leak-wrapper:hover .cursor-disruptor {
    opacity: 1;
}