.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    line-height: 1;
}

.error-message {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.error-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

.easter-egg {
    position: fixed;
    bottom: 20px;
    left: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 100;
}

.easter-egg:hover {
    transform: scale(1.05);
}

.easter-egg img {
    width: 60px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
}

.easter-egg img:hover {
    opacity: 1;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
}

.error-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.error-btn.primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
}

.error-btn.primary:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
}

.redirect-timer {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    color: white;
}

@media (max-width: 768px) {
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .easter-egg img {
        width: 120px;
    }
}