/* Additional Subliminal Elements */
.subliminal-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.05s ease;
}

.subliminal-message-text {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(212, 175, 55, 0.9);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    text-align: center;
    transform: scale(1.2);
}

.subliminal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="rgba(212,175,55,0.1)" stroke-width="1" fill="none"/><circle cx="50" cy="50" r="30" stroke="rgba(212,175,55,0.1)" stroke-width="1" fill="none"/><circle cx="50" cy="50" r="20" stroke="rgba(212,175,55,0.1)" stroke-width="1" fill="none"/></svg>');
    background-size: 200px 200px;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

.hidden-symbol {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
    font-size: 3rem;
    color: var(--primary-color);
}

.pulse-animation {
    animation: pulse-intense 1s ease;
}

@keyframes pulse-intense {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.subliminal-flash-intense {
    animation: subliminal-flash-intense 0.1s ease;
}

@keyframes subliminal-flash-intense {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
