/* Reset بسيط */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    display: grid;
    place-items: center;
    background: #0b0f14;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* الحاوية */
body > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* النص */
.word {
    font-size: 44px;
    font-weight: 800;
    color: #e8eef7;
}

/* الدائرة النابضة */
.dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulse 1.3s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.65);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}