:root {
    --gold: #f0c040;
    --gold-light: #fde98a;
    --gold-dark: #b8860b;
    --cream: #fdf6e3;
    --deep: #0d0a0b;
    --wine: #5c1a2e;
    --rose: #e8607a;
    --text-light: #f9f0d8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--deep);
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: default;
}

/* ── Canvas ── */
#canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ── Noise overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* ── Sections ── */
section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

/* ── HERO ── */
#hero {
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(92,26,46,0.55) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 80% 80%, rgba(240,192,64,0.12) 0%, transparent 60%),
                var(--deep);
    text-align: center;
    gap: 0;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(12px, 1.5vw, 16px);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-name {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(64px, 14vw, 160px);
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 70%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(240,192,64,0.35));
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
    margin: 16px 0 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text-light);
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--rose);
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 36px auto;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    color: rgba(249,240,216,0.6);
    letter-spacing: 0.08em;
    max-width: 420px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}

.scroll-cta {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s ease 1.8s forwards;
    cursor: pointer;
}

.scroll-cta span {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    animation: bounce 2s ease infinite;
    opacity: 0.6;
}

/* ── COUNTDOWN ── */
#countdown {
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(240,192,64,0.06) 0%, transparent 70%), var(--deep);
    gap: 48px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    text-align: center;
    line-height: 1.2;
}

.clock-grid {
    display: flex;
    gap: clamp(16px, 4vw, 40px);
    flex-wrap: wrap;
    justify-content: center;
}

.clock-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.clock-box {
    width: clamp(72px, 14vw, 110px);
    height: clamp(72px, 14vw, 110px);
    border: 1px solid rgba(240,192,64,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240,192,64,0.05);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.clock-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240,192,64,0.6), transparent);
}

.clock-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.clock-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(249,240,216,0.4);
}

.birthday-msg {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 4vw, 36px);
    text-align: center;
    color: var(--gold);
    letter-spacing: 0.05em;
    animation: pulse-glow 2s ease infinite;
    display: none;
}

/* ── WISHES ── */
#wishes {
    background: linear-gradient(180deg, var(--deep) 0%, #150c10 50%, var(--deep) 100%);
    gap: 64px;
}

.wishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    width: 100%;
}

.wish-card {
    border: 1px solid rgba(240,192,64,0.15);
    border-radius: 16px;
    padding: 36px 32px;
    background: rgba(240,192,64,0.03);
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.wish-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.wish-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,192,64,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(240,192,64,0.08);
}

.wish-card:hover::before { transform: scaleX(1); }

.wish-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.wish-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.wish-text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(249,240,216,0.6);
    font-weight: 300;
}

/* ── MESSAGE ── */
#message {
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(92,26,46,0.3) 0%, transparent 70%), var(--deep);
    gap: 40px;
}

.letter-wrap {
    max-width: 640px;
    width: 100%;
    border: 1px solid rgba(240,192,64,0.2);
    border-radius: 24px;
    padding: clamp(32px, 6vw, 64px);
    background: rgba(13,10,11,0.8);
    backdrop-filter: blur(12px);
    position: relative;
}

.letter-wrap::before {
    content: '"';
    position: absolute;
    top: 16px; left: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(240,192,64,0.15);
    line-height: 1;
}

.letter-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 2;
    font-style: italic;
    color: rgba(249,240,216,0.85);
    text-align: center;
}

.letter-sig {
    margin-top: 32px;
    text-align: right;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(20px, 3vw, 28px);
    color: var(--gold);
}

/* ── GALLERY ── */
#gallery {
    background: var(--deep);
    gap: 48px;
}

.emoji-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 680px;
}

.emoji-item {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(240,192,64,0.08);
    border: 1px solid rgba(240,192,64,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), background 0.25s;
}

.emoji-item:hover {
    transform: scale(1.3) rotate(-5deg);
    background: rgba(240,192,64,0.15);
}

/* ── CAKE ── */
#cake-section {
    background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(232,96,122,0.12) 0%, transparent 60%), var(--deep);
    gap: 40px;
    text-align: center;
}

.cake-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.cake-emoji {
    font-size: clamp(80px, 18vw, 160px);
    transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
    filter: drop-shadow(0 0 20px rgba(232,96,122,0.3));
}

.cake-emoji:hover { transform: scale(1.08); }

.cake-hint {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(240,192,64,0.5);
    margin-top: 16px;
}

.confetti-burst {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px 60px;
    border-top: 1px solid rgba(240,192,64,0.1);
}

.footer-text {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(249,240,216,0.3);
}

.footer-heart {
    color: var(--rose);
    animation: heartbeat 1.4s ease infinite;
    display: inline-block;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(6px); }
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(240,192,64,0.4); }
    50%       { text-shadow: 0 0 60px rgba(240,192,64,0.8); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%       { transform: scale(1.3); }
    28%       { transform: scale(1); }
    42%       { transform: scale(1.2); }
    70%       { transform: scale(1); }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════
    PRESENT BOX
══════════════════════════════════════════ */
#present-section {
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(92,26,46,0.25) 0%, transparent 70%), var(--deep);
    gap: 32px;
}

.present-wrap {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.present-box {
    width: 160px;
    position: relative;
    filter: drop-shadow(0 16px 40px rgba(232,96,122,0.35));
    transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}

.present-wrap:hover .present-box { transform: translateY(-8px) rotate(-2deg); }

/* LID */
.present-lid {
    width: 170px;
    height: 54px;
    background: linear-gradient(135deg, #e8607a 0%, #c0364f 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    left: -5px;
    z-index: 2;
    box-shadow: inset 0 -4px 10px rgba(0,0,0,0.2), 0 4px 15px rgba(232,96,122,0.4);
    transform-origin: center bottom;
    transition: transform 0.7s cubic-bezier(.34,1.56,.64,1), opacity 0.5s ease;
}

.present-lid.open {
    transform: translateY(-120px) rotate(-25deg) scale(0.85);
    opacity: 0;
}

.ribbon-top-h {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 14px;
    background: linear-gradient(90deg, #fde98a, #f0c040, #fde98a);
    transform: translateY(-50%);
}

.ribbon-top-v {
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 14px;
    background: linear-gradient(180deg, #fde98a, #f0c040, #fde98a);
    transform: translateX(-50%);
}

/* BOW */
.bow {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 44px;
}

.bow-left, .bow-right {
    position: absolute;
    width: 28px; height: 28px;
    border-radius: 50% 0 50% 0;
    background: linear-gradient(135deg, #fde98a, #f0c040);
    top: 0;
}

.bow-left  { left: 0;  transform: rotate(-30deg); }
.bow-right { right: 0; transform: rotate(30deg) scaleX(-1); }

.bow-center {
    position: absolute;
    width: 14px; height: 14px;
    background: #f0c040;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(240,192,64,0.6);
    z-index: 2;
}

/* BODY */
.present-body {
    width: 160px;
    height: 140px;
    background: linear-gradient(135deg, #c0364f 0%, #8b1a2e 100%);
    border-radius: 0 0 10px 10px;
    position: relative;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.2), 0 8px 30px rgba(139,26,46,0.5);
}

.ribbon-body-h {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 18px;
    background: linear-gradient(90deg, #fde98a, #f0c040, #fde98a);
    transform: translateY(-50%);
}

.ribbon-body-v {
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 18px;
    background: linear-gradient(180deg, #fde98a, #f0c040, #fde98a);
    transform: translateX(-50%);
}

/* Shimmer on body */
.present-body::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.present-hint {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240,192,64,0.6);
    animation: pulse-glow 2s ease infinite;
}

/* Stars burst on open */
.star-burst {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    animation: starFly 0.8s ease forwards;
    z-index: 10;
}

@keyframes starFly {
    from { opacity: 1; transform: translate(0,0) scale(1); }
    to   { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* Body shake when hovered */
@keyframes boxShake {
    0%,100% { transform: rotate(0deg); }
    20% { transform: rotate(-3deg); }
    40% { transform: rotate(3deg); }
    60% { transform: rotate(-2deg); }
    80% { transform: rotate(2deg); }
}

.present-box.shake {
    animation: boxShake 0.5s ease;
}

/* ══════════════════════════════════════════
    WHEEL MODAL OVERLAY
══════════════════════════════════════════ */
.wheel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(12px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.wheel-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.wheel-modal {
    background: linear-gradient(160deg, #18080f 0%, #0d0a0b 100%);
    border: 1px solid rgba(240,192,64,0.25);
    border-radius: 28px;
    padding: clamp(28px, 5vw, 52px) clamp(24px, 5vw, 48px);
    max-width: 480px;
    width: 92%;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 60px rgba(240,192,64,0.08);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
    max-height: 92vh;
    overflow-y: auto;
}

.wheel-overlay.active .wheel-modal {
    transform: scale(1) translateY(0);
}

.wheel-close {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(240,192,64,0.1);
    border: 1px solid rgba(240,192,64,0.2);
    color: var(--gold);
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.wheel-close:hover { background: rgba(240,192,64,0.25); }

.wheel-eyebrow {
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 8px;
}

.wheel-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 5vw, 38px);
    color: var(--text-light);
    margin-bottom: 28px;
}

.wheel-stage {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(240,192,64,0.2), 0 8px 40px rgba(0,0,0,0.5);
    display: block;
    max-width: 100%;
    width: min(340px, 80vw);
    height: min(340px, 80vw);
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: var(--gold);
    filter: drop-shadow(0 0 8px rgba(240,192,64,0.8));
    z-index: 5;
    line-height: 1;
}

.spin-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0d0a0b;
    border: none;
    border-radius: 100px;
    padding: 16px 48px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(240,192,64,0.4);
}

.spin-btn:hover:not(:disabled) {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(240,192,64,0.5);
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Result */
.wheel-result {
    margin-top: 28px;
    padding: 28px 24px;
    border: 1px solid rgba(240,192,64,0.25);
    border-radius: 20px;
    background: rgba(240,192,64,0.05);
    display: none;
}

.wheel-result.show { display: block; animation: fadeUp 0.6s ease forwards; }

.result-emoji { font-size: 52px; margin-bottom: 8px; }

.result-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 4vw, 28px);
    color: var(--gold-light);
    margin-bottom: 8px;
}

.result-sub {
    font-size: 14px;
    color: rgba(249,240,216,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.spin-again-btn {
    background: transparent;
    border: 1px solid rgba(240,192,64,0.3);
    color: var(--gold);
    border-radius: 100px;
    padding: 10px 28px;
    font-size: 13px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.spin-again-btn:hover {
    background: rgba(240,192,64,0.1);
    border-color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    .clock-grid { gap: 12px; }
    .wishes-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
    MET ULAH PIN (COMMENT SECTION)
═════════════════════════════════════════ */
#ultah-pin {
    background: linear-gradient(180deg, var(--deep) 0%, #150c10 50%, var(--deep) 100%);
    gap: 48px;
}

.comment-wrap {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#comment-input {
    width: 100%;
    padding: 18px 22px;
    border: 1px solid rgba(240,192,64,0.25);
    border-radius: 16px;
    background: rgba(13,10,11,0.8);
    backdrop-filter: blur(8px);
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

#comment-input::placeholder {
    color: rgba(249,240,216,0.35);
}

#comment-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240,192,64,0.12);
}

.comment-submit {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0d0a0b;
    border: none;
    border-radius: 100px;
    padding: 14px 36px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(240,192,64,0.35);
}

.comment-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(240,192,64,0.5);
}

.comment-list {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comment-empty {
    text-align: center;
    font-size: 14px;
    color: rgba(249,240,216,0.35);
    font-style: italic;
    padding: 24px;
}

.comment-card {
    border: 1px solid rgba(240,192,64,0.2);
    border-radius: 16px;
    padding: 18px 22px;
    background: rgba(240,192,64,0.04);
    backdrop-filter: blur(8px);
    animation: fadeUp 0.5s ease forwards;
}

.comment-card .comment-author {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 700;
}

.comment-card .comment-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(249,240,216,0.85);
    font-weight: 300;
}

.comment-card .comment-time {
    font-size: 11px;
    color: rgba(249,240,216,0.25);
    margin-top: 8px;
    letter-spacing: 0.05em;
}