:root {
    --primary-orange: #ff7e5f;
    --text-dark: #1c1c1e;
    --glass: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: #fdfaf5;
    /* Change 'hidden' to 'auto' or 'visible' */
    overflow-x: hidden; /* Prevents side-to-side shaking */
    overflow-y: auto;   /* Allows normal up and down scrolling */
    min-height: 100vh;
}

.pulse-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 50px 50px;
    z-index: -1;
}

.fw-800 { font-weight: 800; }

.text-gradient {
    background: linear-gradient(90deg, #ff7e5f, #6c5ce7);
    -webkit-background-clip: text; /* Clips the background to the text shape */
    background-clip: text;         /* Standard version for modern browsers */
    -webkit-text-fill-color: transparent; /* Makes the font color see-through */
    color: transparent;            /* Fallback */
}

.badge-pill {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.persona-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 40px;
    padding: 50px 40px;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
}

.icon-circle {
    width: 80px; height: 80px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.status-dot {
    width: 8px; height: 8px;
    background: #00d2d3;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d2d3;
    animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Glow Following Effect */
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,126,95,0.15), transparent 70%);
    pointer-events: none;
    border-radius: 40px;
}
