/* ========================================================
   PPC SERVICES PAGE STYLES (CURRENCY DASHBOARD THEME)
   ======================================================== */

.ppc-page {
    background: linear-gradient(135deg, #0f0204 0%, #1a0308 50%, #0d0103 100%);
    color: #ffffff;
    font-family: 'Inter', 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.ppc-hero {
    padding-top: 160px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.ppc-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* ========================================================
   SPEED STREAKS & REVENUE DASHBOARD ANIMATION LOGIC
   ======================================================== */

/* Speed Streaks */
.speed-streaks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    transform: skewY(-5deg);
}

.streak {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF0055, transparent);
    width: 200px;
    opacity: 0;
    animation: streak-dash 3s infinite linear;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.8);
}

.streak-1 {
    top: 20%;
    left: -200px;
    animation-duration: 2s;
    animation-delay: 0.5s;
}

.streak-2 {
    top: 40%;
    left: -200px;
    animation-duration: 2.5s;
    width: 300px;
    animation-delay: 1.2s;
}

.streak-3 {
    top: 70%;
    left: -200px;
    animation-duration: 1.8s;
    width: 150px;
    animation-delay: 0.1s;
}

.streak-4 {
    top: 85%;
    left: -200px;
    animation-duration: 3.2s;
    width: 250px;
    animation-delay: 2s;
}

@keyframes streak-dash {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(120vw);
        opacity: 0;
    }
}

/* Conversion Bursts */
.conversion-bursts {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.burst {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FF0055;
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(255, 0, 85, 0.4);
    animation: burst-pulse 4s infinite ease-out;
    opacity: 0;
    transform: scale(0);
}

.burst-1 {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.burst-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.burst-3 {
    bottom: 25%;
    left: 35%;
    animation-delay: 3s;
}

@keyframes burst-pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    50% {
        transform: scale(4);
        opacity: 0;
        box-shadow: 0 0 40px 20px rgba(255, 0, 85, 0);
    }

    100% {
        transform: scale(5);
        opacity: 0;
    }
}

/* Floating ROAS Graph Elements */
.roas-graph-overlay {
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 300px;
    height: 150px;
    border-bottom: 2px solid rgba(255, 0, 85, 0.3);
    border-left: 2px solid rgba(255, 0, 85, 0.3);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.graph-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 150" fill="none"><path d="M0,150 Q50,130 100,100 T200,50 T300,10" stroke="%23FF0055" stroke-width="3" stroke-linecap="round"/><circle cx="100" cy="100" r="4" fill="%23fff" stroke="%23FF0055" stroke-width="2"/><circle cx="200" cy="50" r="4" fill="%23fff" stroke="%23FF0055" stroke-width="2"/><circle cx="300" cy="10" r="4" fill="%23fff" stroke="%23FF0055" stroke-width="2"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
    animation: graph-reveal 5s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes graph-reveal {
    0% {
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
    }

    30% {
        clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
    }

    80% {
        clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
        opacity: 1;
    }

    100% {
        clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
        opacity: 0;
    }
}

.ppc-red {
    background: linear-gradient(90deg, #FF0055, #FF5588);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-video-wrapper {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 85, 0.15);
    border: 1px solid rgba(255, 0, 85, 0.3);
}

.hero-image-board {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Base structural overrides for the grid reused from about */
.diff-card {
    border: 1px solid rgba(255, 0, 85, 0.2);
}

.diff-card:hover {
    box-shadow: 0 10px 40px rgba(255, 0, 85, 0.1);
    border-color: #FF0055;
}

.data-vis-section {
    padding: 80px 20px;
}

.ppc-kpis {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.ppc-kpis .stat {
    background: rgba(255, 0, 85, 0.05);
    border: 1px solid rgba(255, 0, 85, 0.2);
    padding: 30px;
    border-radius: 16px;
    min-width: 200px;
    backdrop-filter: blur(5px);
}

.ppc-kpis .counter {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #FF0055;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
}

.cross-link-banner {
    padding: 40px 20px 80px;
}

.mt-5 {
    margin-top: 50px;
}