| 1 |
/* ── mouse-trail block ─────────────────────────────────────────── */ |
| 2 |
|
| 3 |
.bkbg-mt-section { |
| 4 |
position: relative; |
| 5 |
overflow: hidden; |
| 6 |
display: flex; |
| 7 |
align-items: center; |
| 8 |
justify-content: center; |
| 9 |
cursor: none; |
| 10 |
width: 100%; |
| 11 |
box-sizing: border-box; |
| 12 |
} |
| 13 |
|
| 14 |
.bkbg-mt-label { |
| 15 |
color: rgba(255,255,255,0.8); |
| 16 |
font-size: 16px; |
| 17 |
font-weight: 600; |
| 18 |
text-align: center; |
| 19 |
letter-spacing: 0.04em; |
| 20 |
pointer-events: none; |
| 21 |
user-select: none; |
| 22 |
z-index: 1; |
| 23 |
padding: 0 20px; |
| 24 |
} |
| 25 |
|
| 26 |
/* ── Canvas overlay (global or scoped) ─────────────────────────── */ |
| 27 |
.bkbg-mt-canvas { |
| 28 |
position: fixed; |
| 29 |
top: 0; left: 0; |
| 30 |
width: 100vw; |
| 31 |
height: 100vh; |
| 32 |
pointer-events: none; |
| 33 |
z-index: 9999; |
| 34 |
} |
| 35 |
|
| 36 |
.bkbg-mt-canvas-scoped { |
| 37 |
position: absolute; |
| 38 |
top: 0; left: 0; |
| 39 |
width: 100%; |
| 40 |
height: 100%; |
| 41 |
pointer-events: none; |
| 42 |
z-index: 2; |
| 43 |
} |
| 44 |
|
| 45 |
/* ── Custom cursor dot ─────────────────────────────────────────── */ |
| 46 |
.bkbg-mt-cursor { |
| 47 |
position: fixed; |
| 48 |
width: 10px; |
| 49 |
height: 10px; |
| 50 |
border-radius: 50%; |
| 51 |
pointer-events: none; |
| 52 |
z-index: 10000; |
| 53 |
transform: translate(-50%, -50%); |
| 54 |
mix-blend-mode: difference; |
| 55 |
transition: transform 0.08s; |
| 56 |
background: #fff; |
| 57 |
} |
| 58 |
|