招牌配方
Holographic edge gradient
A subtle holographic shimmer on card borders that evokes the Army Bomb's prismatic surface.
.card-holographic {
position: relative;
background: #F8F6F2;
border-radius: 12px;
overflow: hidden;
}
.card-holographic::before {
content: '';
position: absolute;
inset: 0;
border-radius: 12px;
padding: 1px;
background: linear-gradient(135deg, #C6A8FF, #8A4FFF, #B27AE0, #D9B14A);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0.6;
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card-holographic:hover::before {
opacity: 1;
}
Concert-haze glow
A purple atmospheric glow behind hero elements, simulating stage lighting through haze.
.concert-haze {
position: relative;
}
.concert-haze::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 120%;
height: 120%;
background: radial-gradient(ellipse at center, rgba(138, 79, 255, 0.25) 0%, rgba(198, 168, 255, 0.08) 50%, transparent 70%);
pointer-events: none;
z-index: -1;
}
Lyric-card handwritten overlay
Fan-made lyric card styling with Caveat handwriting over pearl surface.
.lyric-card {
background: #F8F6F2;
border-radius: 12px;
padding: 48px 32px;
aspect-ratio: 1 / 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
box-shadow: 0 4px 20px rgba(138, 79, 255, 0.30);
}
.lyric-card blockquote {
font-family: 'Caveat', cursive;
font-size: 1.5rem;
line-height: 1.8;
color: #3F1F66;
margin: 0;
}
.lyric-card cite {
font-family: 'Pretendard', sans-serif;
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.05em;
color: #8A4FFF;
margin-top: 24px;
text-transform: uppercase;
}