招牌配方
Pink Glow Gradient Block
Full-bleed gradient section with a radiating pink glow that makes content feel like it's lit from behind.
.gradient-block {
background: linear-gradient(135deg, #FF1493 0%, #FFA552 100%);
position: relative;
overflow: hidden;
}
.gradient-block::after {
content: '';
position: absolute;
inset: -50%;
background: radial-gradient(circle at 30% 40%, rgba(255, 20, 147, 0.4) 0%, transparent 60%);
pointer-events: none;
}
Sticker Badge Element
White-bordered floating element with a soft drop shadow, mimicking Instagram sticker aesthetics.
.sticker-badge {
display: inline-flex;
align-items: center;
padding: 8px 20px;
background: #000000;
color: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 9999px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.05em;
transform: rotate(-3deg);
}
Stat Number Counter
Massive viewport-filling stat numbers with subtle noise texture and tight tracking.
.stat-number {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(4rem, 15vw, 10rem);
line-height: 0.9;
letter-spacing: -0.02em;
color: #FFFFFF;
text-align: center;
position: relative;
}
.stat-number::after {
content: '';
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
mix-blend-mode: overlay;
pointer-events: none;
}