/* Estilo Visual - O Guru de Taubaté (Overlay com Transição Imagem <-> Vídeo MP4 9:16) */

:root {
    --bg-dark: #090614;
    --gold: #ffdf00;
    --gold-glow: rgba(255, 223, 0, 0.6);
    --neon-purple: #b026ff;
    --neon-cyan: #00f0ff;
    --parchment: #fcf4dd;
    --parchment-border: #b8860b;
    --text-dark: #2c1d11;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

html, body {
    width: 100vw;
    height: 100vh;
    background-color: #030108;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Banner de Desbloqueio de Áudio */
.audio-unlock-banner {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff0055, #ff5500);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.8);
    cursor: pointer;
    animation: pulseCta 1.5s infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Container Responsivo Vertical com Preenchimento Total no Celular */
.stream-container {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    width: 100vw;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: max(1.5vh, env(safe-area-inset-top)) 3vw max(1.5vh, env(safe-area-inset-bottom)) 3vw;
    background: radial-gradient(circle at 50% 30%, #1f0d3d 0%, #0d061c 60%, #05020a 100%);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.95);
    overflow: hidden;
    transition: transform 0.3s ease;
}


/* Modos de Inversão e Espelhamento para Câmeras do TikTok */
.stream-container.mirrored {
    transform: scaleX(-1);
}
.stream-container.rotate-90 {
    transform: rotate(90deg);
}
.stream-container.rotate-180 {
    transform: rotate(180deg);
}
.stream-container.rotate-270 {
    transform: rotate(270deg);
}
.stream-container.mirrored.rotate-180 {
    transform: scaleX(-1) rotate(180deg);
}



#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.flash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    transition: opacity 0.1s ease;
}

/* ================= 1. HEADER SECTION ================= */
.header-section {
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4vh;
    flex-shrink: 0;
}

.guru-title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    background: linear-gradient(90deg, rgba(176, 38, 255, 0.2), rgba(255, 223, 0, 0.3), rgba(176, 38, 255, 0.2));
    padding: 0.4vh 1.8vh;
    border-radius: 50px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.mistic-icon {
    font-size: clamp(1rem, 2vh, 1.6rem);
    animation: rotateIcon 6s linear infinite;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2.2vh, 1.8rem);
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #ffffff 0%, var(--gold) 60%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 223, 0, 0.5);
    white-space: nowrap;
}

.subtitle {
    font-size: clamp(0.55rem, 0.95vh, 0.8rem);
    letter-spacing: 2px;
    color: var(--neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
}

.tiers-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5vh;
    width: 100%;
    margin-top: 0.2vh;
}

.tier-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.3vh 0.2vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4vh;
    backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.tier-card.active {
    transform: scale(1.04);
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
    background: rgba(255, 223, 0, 0.2);
}

.tier-1 { border-color: #ff69b4; }
.tier-2 { border-color: #f39c12; }
.tier-3 { border-color: #00f0ff; }
.tier-4 { border-color: #e056fd; }

.tier-icon { font-size: clamp(0.85rem, 1.5vh, 1.2rem); }
.tier-info { display: flex; flex-direction: column; text-align: left; }
.tier-name { font-size: clamp(0.5rem, 0.9vh, 0.7rem); font-weight: 800; color: #ffffff; line-height: 1; }
.tier-desc { font-size: clamp(0.45rem, 0.75vh, 0.6rem); color: #e0e0e0; line-height: 1; }

.call-to-action-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8vh;
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.35), rgba(176, 38, 255, 0.4), rgba(255, 0, 85, 0.35));
    border: 2px solid #ff007f;
    padding: 0.6vh 1.4vh;
    border-radius: 25px;
    font-weight: 800;
    font-size: clamp(0.65rem, 1.25vh, 1rem);
    letter-spacing: 0.5px;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: pulseCta 2.5s infinite ease-in-out;
    width: 100%;
    margin-top: 0.5vh;
}

.cta-text {
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff88;
    flex-shrink: 0;
    animation: blinkDot 1.2s infinite alternate;
}

@keyframes blinkDot {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #00ff88; }
}


/* ================= 2. GURU STAGE (CENTRO: IMAGEM / VÍDEO) ================= */
.guru-stage {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    margin: 0.2vh 0;
}

.astral-rings {
    position: absolute;
    width: 44vh;
    height: 44vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 240, 255, 0.35);
}

.ring-outer {
    width: 100%;
    height: 100%;
    border-color: rgba(176, 38, 255, 0.4);
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.3);
    animation: rotateRings 20s linear infinite;
}

.ring-inner {
    width: 78%;
    height: 78%;
    border-color: rgba(255, 223, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 223, 0, 0.3);
    animation: rotateRingsReverse 15s linear infinite;
}

.aura-glow {
    position: absolute;
    width: 40vh;
    height: 40vh;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.5) 0%, rgba(0, 240, 255, 0.25) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: pulseAura 4s ease-in-out infinite alternate;
}

.guru-3d-card {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatGuru3D 4s ease-in-out infinite alternate;
}

.third-eye-portal {
    position: absolute;
    top: -24px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eye-symbol {
    font-size: 2.4rem;
    filter: drop-shadow(0 0 10px #00f0ff);
    animation: eyePulse 2s infinite alternate;
}

.eye-glow {
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.9) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseAura 1.5s infinite alternate;
}

/* Moldura Visual Híbrida (Imagem / Vídeo) */
.character-image-wrapper {
    position: relative;
    width: clamp(210px, 30vh, 320px);
    height: clamp(210px, 30vh, 320px);
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--gold) 0%, #b026ff 50%, #00f0ff 100%);
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.8), 0 0 20px rgba(255, 223, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: borderGlowRainbow 6s infinite alternate;
}

/* Elementos de Mídia (Imagem Estática e Vídeo Animado) */
.guru-media-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    transform: scale(1.02);
    z-index: 1;
}

.guru-media-element.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
}

.guru-static-img.active {
    animation: breathGuruStatic 3s ease-in-out infinite alternate;
}

.guru-3d-card.talking .character-image-wrapper {
    animation: guruTalkingBounce 0.4s infinite alternate;
    box-shadow: 0 0 45px rgba(0, 240, 255, 0.9), 0 0 25px rgba(255, 223, 0, 1);
}

/* Ondas Sonoras */
.sound-wave-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guru-3d-card.talking .sound-wave-rings {
    opacity: 1;
}

.sound-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 240, 255, 0.7);
}

.wave-1 { animation: wavePulse 1.2s infinite ease-out; }
.wave-2 { animation: wavePulse 1.2s infinite ease-out 0.4s; }
.wave-3 { animation: wavePulse 1.2s infinite ease-out 0.8s; }

/* Faíscas */
.typing-sparks {
    position: absolute;
    bottom: 15px;
    width: 80%;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.guru-3d-card.typing .typing-sparks {
    opacity: 1;
}

.spark {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px #ffdf00);
}

.s1 { animation: sparkPop 0.3s infinite alternate; }
.s2 { animation: sparkPop 0.25s infinite alternate 0.1s; }
.s3 { animation: sparkPop 0.35s infinite alternate 0.15s; }

.guru-status {
    margin-top: 0.4vh;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3vh 1.4vh;
    border-radius: 20px;
    font-size: clamp(0.62rem, 1.05vh, 0.88rem);
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.8vh;
    z-index: 10;
}

/* ================= 3. PROPHECY SECTION (BASE: PERGAMINHO EXPANDIDO) ================= */
.prophecy-section {
    z-index: 10;
    width: 100%;
    flex-shrink: 0;
}

.parchment-box {
    position: relative;
    background: var(--parchment);
    border: 3.5px solid var(--parchment-border);
    border-radius: 14px;
    padding: 1vh 1.4vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9), inset 0 0 25px rgba(184, 134, 11, 0.3);
    height: 33vh;
    max-height: 33vh;
    min-height: 29vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    overflow: hidden;
}

.parchment-box.tier-2 {
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.4);
}

.parchment-box.tier-3 {
    border-color: #00f0ff;
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.8), inset 0 0 20px rgba(0, 240, 255, 0.5);
    animation: borderGlow 2s infinite alternate;
}

.parchment-box.tier-4 {
    border-color: #e056fd;
    box-shadow: 0 0 45px rgba(224, 86, 253, 0.9), inset 0 0 25px rgba(224, 86, 253, 0.6);
    animation: borderGlowRainbow 1.5s infinite alternate;
}

.donor-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 8px;
    padding: 0.4vh 1vh;
    border: 1.2px solid var(--gold);
    flex-shrink: 0;
}

.donor-avatar { font-size: clamp(0.95rem, 1.5vh, 1.35rem); }
.donor-text { display: flex; flex-direction: column; flex-grow: 1; margin: 0 0.8vh; text-align: left; }
.donor-name { font-size: clamp(0.72rem, 1.15vh, 0.92rem); font-weight: 800; color: var(--gold); letter-spacing: 0.3px; }
.gift-detail { font-size: clamp(0.58rem, 0.9vh, 0.78rem); color: #ffffff; font-weight: 600; }

.tier-indicator {
    background: linear-gradient(135deg, #ff0055, #ff5500);
    padding: 0.25vh 0.8vh;
    border-radius: 12px;
    font-weight: 800;
    font-size: clamp(0.52rem, 0.82vh, 0.72rem);
    color: white;
    letter-spacing: 0.5px;
}

.question-container {
    background: rgba(184, 134, 11, 0.18);
    border-left: 3.5px solid #8b4513;
    padding: 0.35vh 0.8vh;
    border-radius: 0 8px 8px 0;
    margin: 0.3vh 0;
    text-align: left;
    flex-shrink: 0;
}

.q-label {
    font-weight: 900;
    color: #7a3a0e;
    font-size: clamp(0.55rem, 0.88vh, 0.75rem);
    display: inline-block;
    margin-right: 4px;
    letter-spacing: 0.3px;
}

.q-text {
    font-style: italic;
    font-weight: 700;
    color: #1a1108;
    font-size: clamp(0.62rem, 1vh, 0.88rem);
    word-break: break-word;
}

.prophecy-text-container {
    flex-grow: 1;
    margin: 0.3vh 0;
    text-align: left;
    overflow-y: auto;
    max-height: 14vh;
    scrollbar-width: thin;
    display: flex;
    flex-direction: column;
}

.prophecy-label {
    display: block;
    font-size: clamp(0.52rem, 0.82vh, 0.7rem);
    font-weight: 900;
    color: #8b0000;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.prophecy-content {
    font-family: 'Special Elite', cursive;
    font-size: clamp(0.72rem, 1.22vh, 1.02rem);
    line-height: 1.32;
    color: var(--text-dark);
    font-weight: bold;
    display: inline;
}

.typewriter-cursor {
    font-family: 'Special Elite', cursive;
    font-size: clamp(0.8rem, 1.3vh, 1.1rem);
    color: #8b0000;
    font-weight: bold;
    animation: blinkCursor 0.6s infinite;
}

.parchment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1.5px dashed rgba(184, 134, 11, 0.45);
    padding-top: 0.3vh;
    margin-top: 0.2vh;
    flex-shrink: 0;
}

.parchment-waiting-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(184, 134, 11, 0.16);
    border: 1px solid rgba(184, 134, 11, 0.4);
    padding: 0.2vh 0.8vh;
    border-radius: 12px;
}

.waiting-dot {
    width: 7px;
    height: 7px;
    background-color: #00bb55;
    border-radius: 50%;
    box-shadow: 0 0 6px #00bb55;
    animation: blinkWaitingDot 1.2s infinite alternate;
}

.waiting-dot.active-answering {
    background-color: #ff0055;
    box-shadow: 0 0 8px #ff0055;
}

.waiting-text {
    font-size: clamp(0.52rem, 0.82vh, 0.72rem);
    font-weight: 800;
    color: #7a3a0e;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.seal-icon {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.52rem, 0.82vh, 0.72rem);
    color: #8b4513;
    font-weight: 800;
}

@keyframes blinkWaitingDot {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px #00bb55; }
}

/* ================= ANIMAÇÕES ================= */
@keyframes rotateIcon { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateRings { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateRingsReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes pulseCta {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }
    50% { transform: scale(1.02); box-shadow: 0 0 18px rgba(255, 0, 85, 0.8); }
}
@keyframes pulseAura { 0% { transform: scale(0.9); opacity: 0.6; } 100% { transform: scale(1.1); opacity: 0.95; } }
@keyframes floatGuru3D { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }
@keyframes breathGuruStatic { 0% { transform: scale(1.02); } 100% { transform: scale(1.06); } }
@keyframes eyePulse { 0% { transform: scale(1) translateY(0); } 100% { transform: scale(1.15) translateY(-3px); } }
@keyframes guruTalkingBounce { 0% { transform: scale(1); } 100% { transform: scale(1.04); } }
@keyframes wavePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}
@keyframes sparkPop { 0% { transform: scale(0.8) translateY(0); opacity: 0.3; } 100% { transform: scale(1.3) translateY(-6px); opacity: 1; } }
@keyframes blinkCursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes borderGlow { from { box-shadow: 0 0 20px rgba(0, 240, 255, 0.6); } to { box-shadow: 0 0 40px rgba(0, 240, 255, 1); } }
@keyframes borderGlowRainbow {
    0% { border-color: #ff0055; box-shadow: 0 0 30px #ff0055; }
    50% { border-color: #00f0ff; box-shadow: 0 0 35px #00f0ff; }
    100% { border-color: #ffdf00; box-shadow: 0 0 45px #ffdf00; }
}

/* ================= NOVO BALÃO PULSANTE (SEGREDO QUÂNTICO E MOTORES A DIESEL) ================= */
.sub-balloon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8vh;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.3), rgba(255, 105, 180, 0.4), rgba(255, 215, 0, 0.3));
    border: 2px solid #ffd700;
    padding: 0.6vh 1.4vh;
    border-radius: 25px;
    font-weight: 800;
    font-size: clamp(0.68rem, 1.25vh, 1.02rem);
    letter-spacing: 0.3px;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
    margin-top: 0.5vh;
    width: 100%;
    text-align: center;
    line-height: 1.25;
    animation: pulseSubBalloon 2.8s infinite ease-in-out;
}

.sub-balloon-text {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.9), 0 0 4px rgba(0, 0, 0, 0.8);
    font-style: normal;
    text-transform: uppercase;
}

.balloon-sparkle {
    font-size: clamp(0.7rem, 1.1vh, 0.9rem);
    animation: sparkleBlink 1.4s infinite alternate;
}

@keyframes pulseSubBalloon {
    0%, 100% { transform: scale(0.98); box-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 16px rgba(255, 105, 180, 0.8), 0 0 22px rgba(255, 215, 0, 0.6); }
}

@keyframes sparkleBlink {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.7; }
    100% { transform: scale(1.3) rotate(20deg); opacity: 1; filter: drop-shadow(0 0 6px #ffd700); }
}

/* ================= MODO VIP / DOADOR NO PERGAMINHO (FLORES E ÍCONES PISCANDO) ================= */
.vip-flowers-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.parchment-box.parchment-donor-vip {
    border: 3.5px solid #ff1493 !important;
    background: linear-gradient(135deg, #fff4f8, #fdf5e6, #fff0f5) !important;
    box-shadow: 0 0 35px rgba(255, 20, 147, 0.85), inset 0 0 25px rgba(255, 105, 180, 0.4) !important;
    animation: vipParchmentPulse 1.8s infinite alternate !important;
}

.parchment-box.parchment-donor-vip .vip-flowers-container {
    display: block;
}

.vip-flower {
    position: absolute;
    font-size: clamp(1rem, 2vh, 1.6rem);
    filter: drop-shadow(0 0 6px rgba(255, 20, 147, 0.8));
    animation: flowerBlinkFloat 1.2s infinite alternate ease-in-out;
}

.vip-flower.f1 { top: -8px; left: 8px; animation-delay: 0s; }
.vip-flower.f2 { top: -8px; right: 8px; animation-delay: 0.3s; }
.vip-flower.f3 { bottom: -6px; left: 12px; animation-delay: 0.6s; }
.vip-flower.f4 { bottom: -6px; right: 12px; animation-delay: 0.9s; }
.vip-flower.f5 { top: 40%; left: -6px; animation-delay: 0.4s; }
.vip-flower.f6 { top: 40%; right: -6px; animation-delay: 0.7s; }

@keyframes vipParchmentPulse {
    0% { border-color: #ff1493; box-shadow: 0 0 25px rgba(255, 20, 147, 0.7); }
    50% { border-color: #ffd700; box-shadow: 0 0 40px rgba(255, 215, 0, 0.9); }
    100% { border-color: #ff69b4; box-shadow: 0 0 35px rgba(255, 105, 180, 0.8); }
}

@keyframes flowerBlinkFloat {
    0% { transform: scale(0.9) translateY(0); opacity: 0.75; }
    100% { transform: scale(1.35) translateY(-5px) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 10px #ffd700); }
}
