.fun-404-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 70vh;
}

/* Сцена с ботом */
.scene {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
}

.fainted-bot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(20deg);
    animation: faintIn 0.8s ease-out forwards, floatRotate 3s ease-in-out infinite;
}

.bot-body {
    width: 130px;
    height: 130px;
    background: linear-gradient(145deg, #D63384, #E91E63);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 15px 30px rgba(214, 51, 132, 0.4);
}

.bot-eyes {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.eye {
    font-size: 1.8rem;
    color: white;
    font-weight: 900;
    animation: blink 1.5s infinite;
}

.right-eye { animation-delay: 0.3s; }

.bot-mouth {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

/* Искорки */
.bot-sparkles {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.sparkle {
    font-size: 1.2rem;
    color: #FFD700;
    animation: sparkleFloat 1s ease-out forwards;
    opacity: 0;
}

.sparkle:nth-child(1) { animation-delay: 0.2s; }
.sparkle:nth-child(2) { animation-delay: 0.5s; font-size: 0.8rem; }
.sparkle:nth-child(3) { animation-delay: 0.8s; font-size: 1rem; }

/* Анимации */
@keyframes faintIn {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(20deg); }
}

@keyframes floatRotate {
    0%, 100% { transform: translateX(-50%) rotate(20deg); }
    50% { transform: translateX(-50%) rotate(25deg); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes sparkleFloat {
    0% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-40px); }
}

/* Текст */
.fun-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #D63384, #E91E63, #9C27B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titlePulse 2s ease-in-out infinite;
}

.fun-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 32px;
    line-height: 1.5;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Кнопки */
.fun-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accent,
.btn-accent-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-accent {
    background: linear-gradient(135deg, #D63384, #E91E63);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.4);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.6);
}

.btn-accent-outline {
    background: transparent;
    border: 2px solid #D63384;
    color: #D63384;
}
.btn-accent-outline:hover {
    background: #D63384;
    color: white;
    transform: translateY(-2px);
}

/* Бот реагирует на наведение кнопок */
.fun-actions:hover ~ .scene .fainted-bot,
.fun-actions:hover .fainted-bot {
    animation: faintIn 0.8s ease-out forwards, floatRotate 0.5s ease-in-out infinite;
}